Searched refs:estimation (Results 1 - 13 of 13) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DEstimationProblem.java18 package org.apache.commons.math.estimation;
21 * This interface represents an estimation problem.
23 * <p>This interface should be implemented by all real estimation
27 * <p>An estimation problem, as seen by a solver is a set of
29 * during the estimation through the {@link #getUnboundParameters
43 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
51 * Get the measurements of an estimation problem.
H A DEstimator.java18 package org.apache.commons.math.estimation;
21 * This interface represents solvers for estimation problems.
23 * <p>The classes which are devoted to solve estimation problems
35 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
43 * Solve an estimation problem.
52 * @param problem estimation problem to solve
67 * @param problem estimation problem
74 * @param problem estimation problem
84 * @param problem estimation problem
H A DEstimationException.java18 package org.apache.commons.math.estimation;
25 * This class represents exceptions thrown by the estimation solvers.
29 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
H A DWeightedMeasurement.java18 package org.apache.commons.math.estimation;
23 * This class represents measurements in estimation problems.
43 * steps of the estimation.</p>
49 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
H A DEstimatedParameter.java18 package org.apache.commons.math.estimation;
22 /** This class represents the estimated parameters of an estimation problem.
24 * <p>The parameters of an estimation problem have a name, a value and
32 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
H A DSimpleEstimationProblem.java18 package org.apache.commons.math.estimation;
40 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
89 * Get the measurements of an estimation problem.
H A DGaussNewtonEstimator.java18 package org.apache.commons.math.estimation;
32 * This class implements a solver for estimation problems.
34 * <p>This class solves estimation problems using a weighted least
40 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
138 * Solve an estimation problem using a least squares criterion.
154 * @param problem estimation problem to solve
H A DAbstractEstimator.java18 package org.apache.commons.math.estimation;
32 * settings, jacobian and error estimation.</p>
35 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
179 * @param problem estimation problem
194 * @param problem estimation problem
209 * @param problem estimation problem
250 * @param problem estimation problem
275 * Initialization of the common parts of the estimation.
279 * @param problem estimation problem to solve
302 * Solve an estimation proble
[all...]
H A DLevenbergMarquardtEstimator.java17 package org.apache.commons.math.estimation;
102 * @deprecated as of 2.0, everything in package org.apache.commons.math.estimation has
220 * Solve an estimation problem using the Levenberg-Marquardt algorithm.
238 * @param problem estimation problem to solve
/external/opencv3/modules/photo/src/
H A Dfast_nlmeans_denoising_invoker_commons.hpp318 static inline void f(IT* estimation, IT* weights_sum, WT weight, T p) argument
320 estimation[0] += (IT)weight * p;
327 static inline void f(IT* estimation, IT* weights_sum, WT weight, Vec<ET, 2> p) argument
329 estimation[0] += (IT)weight * p[0];
330 estimation[1] += (IT)weight * p[1];
337 static inline void f(IT* estimation, IT* weights_sum, WT weight, Vec<ET, 3> p) argument
339 estimation[0] += (IT)weight * p[0];
340 estimation[1] += (IT)weight * p[1];
341 estimation[2] += (IT)weight * p[2];
348 static inline void f(IT* estimation, I argument
360 f(IT* estimation, IT* weights_sum, Vec<EW, 2> weight, Vec<ET, 2> p) argument
371 f(IT* estimation, IT* weights_sum, Vec<EW, 3> weight, Vec<ET, 3> p) argument
384 f(IT* estimation, IT* weights_sum, Vec<EW, 4> weight, Vec<ET, 4> p) argument
398 incWithWeight(IT* estimation, IT* weights_sum, WT weight, T p) argument
410 f(IT* estimation, IT* weights_sum) argument
418 f(IT* estimation, IT* weights_sum) argument
427 f(IT* estimation, IT* weights_sum) argument
435 divByWeightsSum(IT* estimation, IT* weights_sum) argument
442 f(IT* estimation) argument
450 f(IT* estimation) argument
461 f(IT* estimation) argument
473 f(IT* estimation) argument
484 saturateCastFromArray(IT* estimation) argument
[all...]
H A Dfast_nlmeans_denoising_invoker.hpp226 IT estimation[pixelInfo<T>::channels], weights_sum[pixelInfo<WT>::channels]; local
228 estimation[channel_num] = 0;
241 incWithWeight<T, IT, WT>(estimation, weights_sum, weight, p);
245 divByWeightsSum<IT, UIT, pixelInfo<T>::channels, pixelInfo<WT>::channels>(estimation,
247 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation);
H A Dfast_nlmeans_multi_denoising_invoker.hpp246 IT estimation[pixelInfo<T>::channels], weights_sum[pixelInfo<WT>::channels]; local
248 estimation[channel_num] = 0;
267 incWithWeight<T, IT, WT>(estimation, weights_sum, weight, p);
272 divByWeightsSum<IT, UIT, pixelInfo<T>::channels, pixelInfo<WT>::channels>(estimation,
274 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation);
/external/libavc/encoder/arm/
H A Dime_distortion_metrics_a9q.s542 @* @brief computes distortion (SAD) for sub-pel motion estimation

Completed in 123 milliseconds