Searched refs:keypoints (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | keypoint_detector.h | 62 Keypoint* const keypoints) const; 69 const int max_num_keypoints, Keypoint* const keypoints); 73 Keypoint* const keypoints);
|
D | object_tracker_jni.cc | 362 jfloatArray keypoints = in OBJECT_TRACKER_METHOD() local 364 if (keypoints == NULL) { in OBJECT_TRACKER_METHOD() 368 env->SetFloatArrayRegion(keypoints, 0, number_of_keypoints * kKeypointStep, in OBJECT_TRACKER_METHOD() 371 return keypoints; in OBJECT_TRACKER_METHOD() 386 jbyteArray keypoints = in OBJECT_TRACKER_METHOD() local 389 if (keypoints == NULL) { in OBJECT_TRACKER_METHOD() 395 keypoints, 0, number_of_keypoints * bytes_per_keypoint, keypoint_arr); in OBJECT_TRACKER_METHOD() 397 return keypoints; in OBJECT_TRACKER_METHOD()
|
D | keypoint_detector.cc | 300 Keypoint* const keypoints) const { in AddExtraCandidatesForBoxes() 314 Keypoint& curr_keypoint = keypoints[num_keypoints_added++]; in AddExtraCandidatesForBoxes() 409 Keypoint* const keypoints) { in FindFastKeypoints() argument 506 Keypoint* const keypoint = keypoints + num_keypoints; in FindFastKeypoints() 529 Keypoint* const keypoints) { in FindFastKeypoints() argument 538 downsample_factor, max_num_keypoints, keypoints + num_found); in FindFastKeypoints()
|
/external/libxcam/modules/ocl/ |
D | cv_feature_match.cpp | 67 std::vector<cv::KeyPoint> keypoints; in add_detected_data() local 68 detector->detect (image, keypoints); in add_detected_data() 69 corners.reserve (corners.size () + keypoints.size ()); in add_detected_data() 70 for (size_t i = 0; i < keypoints.size (); ++i) { in add_detected_data() 71 cv::KeyPoint &kp = keypoints[i]; in add_detected_data()
|
/external/autotest/server/site_tests/audiovideo_AVSync/ |
D | audiovideo_AVSync.py | 55 keypoints = [] 62 keypoints.append(sample_no / float(self.AUDIO_CAPTURE_RATE)) 65 return keypoints
|
/external/libxcam/modules/soft/ |
D | cv_capi_feature_match.cpp | 69 std::vector<CvPoint2D32f> keypoints; in add_detected_data() local
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | layers_test.py | 3601 keypoints = sess.run(spatial_softmax, feed_dict) 3602 self.assertAllEqual(keypoints.shape, (batch_shape[0], batch_shape[3] * 2)) 3612 keypoints = sess.run(spatial_softmax, feed_dict) 3613 self.assertAllEqual(keypoints.shape, (batch_shape[0], batch_shape[1] * 2)) 3639 keypoints = sess.run(spatial_softmax, feed_dict) 3640 self.assertAllClose(keypoints, np_keypoints) 3663 keypoints = sess.run(spatial_softmax, feed_dict) 3664 self.assertAllClose(keypoints, np_keypoints) 3722 keypoints = sess.run(spatial_softmax, feed_dict) 3723 self.assertAllClose(keypoints, np_keypoints) [all …]
|