OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Estimator
(Results
1 - 9
of
9
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
Estimator.java
40
public interface
Estimator
{
62
* criterion that is minimized by the
estimator
as follows: if
AbstractEstimator.java
40
public abstract class AbstractEstimator implements
Estimator
{
56
* Levenberg-Marquardt
estimator
} does this).</p>
70
* Levenberg-Marquardt
estimator
} does this).</p>
87
* Build an abstract
estimator
for least squares problems.
175
* criterion that is minimized by the
estimator
as follows: if
/frameworks/native/include/input/
VelocityTracker.h
37
struct
Estimator
{
40
//
Estimator
time base.
93
// Gets an
estimator
for the recent movements of the specified pointer id.
94
// Returns false and clears the
estimator
if there is no information available
96
bool getEstimator(uint32_t id,
Estimator
* outEstimator) const;
132
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const = 0;
156
// Degree must be no greater than
Estimator
::MAX_DEGREE.
164
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const;
207
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const;
225
void populateEstimator(const State& state, VelocityTracker::
Estimator
* outEstimator) const
[
all
...]
/frameworks/base/core/java/android/view/
VelocityTracker.java
47
private static native boolean nativeGetEstimator(long ptr, int id,
Estimator
outEstimator);
199
* Get an
estimator
for the movements of a pointer using past movements of the
206
* @param outEstimator The
estimator
to populate.
207
* @return True if an
estimator
was obtained, false if there is no information
212
public boolean getEstimator(int id,
Estimator
outEstimator) {
220
* An
estimator
for the movements of a pointer based on a polynomial model.
231
public static final class
Estimator
{
232
// Must match VelocityTracker::
Estimator
::MAX_DEGREE
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
motion_estimators.hpp
57
/** @brief Rotation
estimator
base class.
65
class CV_EXPORTS
Estimator
68
virtual ~
Estimator
() {}
84
detail::
Estimator
::operator()_ work.
96
/** @brief Homography based rotation
estimator
.
98
class CV_EXPORTS HomographyBasedEstimator : public
Estimator
114
class CV_EXPORTS BundleAdjusterBase : public
Estimator
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
54
bool getEstimator(int32_t id, VelocityTracker::
Estimator
* outEstimator);
135
bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::
Estimator
* outEstimator) {
198
VelocityTracker::
Estimator
estimator
;
local
199
bool result = state->getEstimator(id, &
estimator
);
206
env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::
Estimator
::MAX_DEGREE + 1,
207
estimator
.xCoeff);
208
env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::
Estimator
::MAX_DEGREE + 1,
209
estimator
.yCoeff);
210
env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree,
estimator
.degree)
[
all
...]
/frameworks/native/libs/input/
VelocityTracker.cpp
253
Estimator
estimator
;
local
254
getEstimator(id, &
estimator
);
256
"
estimator
(degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
258
int(
estimator
.degree),
259
vectorToString(
estimator
.xCoeff,
estimator
.degree + 1).string(),
260
vectorToString(
estimator
.yCoeff,
estimator
.degree + 1).string(),
261
estimator
.confidence)
338
Estimator
estimator
;
local
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java
74
// Position
estimator
.
75
private VelocityTracker.
Estimator
mEstimator = new VelocityTracker.
Estimator
();
76
private VelocityTracker.
Estimator
mAltEstimator = new VelocityTracker.
Estimator
();
[
all
...]
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 664 milliseconds