HomeSort by relevance Sort by last modified time
    Searched refs:keypoints (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
keypoint_detector.h 43 // Finds a new set of keypoints for the current frame, picked from the current
44 // set of keypoints and also from a set discovered via a keypoint detector.
45 // Special attention is applied to make sure that keypoints are distributed
57 // Adds a grid of candidate keypoints to the given box, up to
62 Keypoint* const keypoints) const;
64 // Scan the frame for potential keypoints using the FAST keypoint detector.
66 // which to detect keypoints.
69 const int max_num_keypoints, Keypoint* const keypoints);
73 Keypoint* const keypoints);
75 // Score a bunch of candidate keypoints. Assigns the scores to the inpu
    [all...]
keypoint_detector.cc 47 // Score all the keypoints.
60 // Score all the keypoints.
76 // Quicksorts detected keypoints by score.
110 // This is the distance within which keypoints may be placed to each other
115 // First, mark keypoints that already happen to be inside this region. Ignore
116 // keypoints that are outside it, however close they might be.
128 // Now, go through and check which keypoints will still fit in the box.
158 // Now select all the interesting keypoints that fall insider our boxes.
164 // Count up keypoints that have already been selected, and fall within our
188 LOGV("Selected %d keypoints!", curr_change->number_of_keypoints_)
    [all...]
object_tracker_jni.cc 362 jfloatArray keypoints = local
364 if (keypoints == NULL) {
368 env->SetFloatArrayRegion(keypoints, 0, number_of_keypoints * kKeypointStep,
371 return keypoints;
386 jbyteArray keypoints = local
389 if (keypoints == NULL) {
395 keypoints, 0, number_of_keypoints * bytes_per_keypoint, keypoint_arr);
397 return keypoints;
  /external/libxcam/modules/ocl/
cv_feature_match.cpp 67 std::vector<cv::KeyPoint> keypoints; local
68 detector->detect (image, keypoints);
69 corners.reserve (corners.size () + keypoints.size ());
70 for (size_t i = 0; i < keypoints.size (); ++i) {
71 cv::KeyPoint &kp = keypoints[i];
  /external/autotest/server/site_tests/audiovideo_AVSync/
audiovideo_AVSync.py 48 """Compute audio keypoints. Audio keypoints are the starting times of
55 keypoints = []
62 keypoints.append(sample_no / float(self.AUDIO_CAPTURE_RATE))
65 return keypoints
69 """Compute video keypoints. Video keypoints are the times when the
  /external/libxcam/modules/soft/
cv_capi_feature_match.cpp 69 std::vector<CvPoint2D32f> keypoints; local
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
layers_test.py     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 271 milliseconds