Searched refs:kpt (Results 1 - 11 of 11) sorted by relevance

/external/opencv3/modules/features2d/src/kaze/
H A DAKAZEFeatures.cpp477 void Get_SURF_Descriptor_Upright_64(const KeyPoint& kpt, float* desc) const;
504 void Get_SURF_Descriptor_64(const KeyPoint& kpt, float* desc) const;
530 void Get_MSURF_Upright_Descriptor_64(const KeyPoint& kpt, float* desc) const;
557 void Get_MSURF_Descriptor_64(const KeyPoint& kpt, float* desc) const;
584 void Get_Upright_MLDB_Full_Descriptor(const KeyPoint& kpt, unsigned char* desc) const;
619 void Get_Upright_MLDB_Descriptor_Subset(const KeyPoint& kpt, unsigned char* desc) const;
651 void Get_MLDB_Full_Descriptor(const KeyPoint& kpt, unsigned char* desc) const;
691 void Get_MLDB_Descriptor_Subset(const KeyPoint& kpt, unsigned char* desc) const;
765 * @param kpt Input keypoint
769 void AKAZEFeatures::Compute_Main_Orientation(KeyPoint& kpt, cons argument
857 Get_MSURF_Upright_Descriptor_64(const KeyPoint& kpt, float *desc) const argument
980 Get_MSURF_Descriptor_64(const KeyPoint& kpt, float *desc) const argument
1104 Get_Upright_MLDB_Full_Descriptor(const KeyPoint& kpt, unsigned char *desc) const argument
1398 Get_MLDB_Full_Descriptor(const KeyPoint& kpt, unsigned char *desc) const argument
1431 Get_MLDB_Descriptor_Subset(const KeyPoint& kpt, unsigned char *desc) const argument
1525 Get_Upright_MLDB_Descriptor_Subset(const KeyPoint& kpt, unsigned char *desc) const argument
[all...]
H A DKAZEFeatures.cpp535 void Get_KAZE_Upright_Descriptor_64(const KeyPoint& kpt, float* desc) const;
536 void Get_KAZE_Descriptor_64(const KeyPoint& kpt, float* desc) const;
537 void Get_KAZE_Upright_Descriptor_128(const KeyPoint& kpt, float* desc) const;
538 void Get_KAZE_Descriptor_128(const KeyPoint& kpt, float *desc) const;
573 * @param kpt Input keypoint
577 void KAZEFeatures::Compute_Main_Orientation(KeyPoint &kpt, const std::vector<TEvolution>& evolution_, const KAZEOptions& options) argument
587 xf = kpt.pt.x;
588 yf = kpt.pt.y;
589 level = kpt.class_id;
590 s = fRound(kpt
656 Get_KAZE_Upright_Descriptor_64(const KeyPoint &kpt, float *desc) const argument
784 Get_KAZE_Descriptor_64(const KeyPoint &kpt, float *desc) const argument
913 Get_KAZE_Upright_Descriptor_128(const KeyPoint &kpt, float *desc) const argument
1065 Get_KAZE_Descriptor_128(const KeyPoint &kpt, float *desc) const argument
[all...]
H A DAKAZEFeatures.h56 static void Compute_Main_Orientation(cv::KeyPoint& kpt, const std::vector<TEvolution>& evolution_);
H A DKAZEFeatures.h52 static void Compute_Main_Orientation(cv::KeyPoint& kpt, const std::vector<TEvolution>& evolution_, const KAZEOptions& options);
/external/opencv3/modules/features2d/src/
H A Dkeypoint.cpp53 inline bool operator()(const KeyPoint& kpt) const
55 return kpt.response >= value;
H A Dblobdetector.cpp363 KeyPoint kpt(sumPoint, (float)(centers[i][centers[i].size() / 2].radius) * 2.0f);
364 keypoints.push_back(kpt);
H A Dorb.cpp223 const KeyPoint& kpt = keypoints[j]; local
224 const Rect& layer = layerInfo[kpt.octave];
225 float scale = 1.f/layerScale[kpt.octave];
226 float angle = kpt.angle;
231 const uchar* center = &imagePyramid.at<uchar>(cvRound(kpt.pt.y*scale) + layer.y,
232 cvRound(kpt.pt.x*scale) + layer.x);
H A Dagast.cpp7536 std::vector<KeyPoint>::iterator kpt; local
7537 for(kpt = keypoints.begin(); kpt != keypoints.end(); kpt++)
7541 kpt->response = (float)agast_cornerScore<AgastFeatureDetector::AGAST_5_8>
7542 (&img.at<uchar>((int)kpt->pt.y, (int)kpt->pt.x), pixel_, threshold);
7545 kpt->response = (float)agast_cornerScore<AgastFeatureDetector::AGAST_7_12d>
7546 (&img.at<uchar>((int)kpt->pt.y, (int)kpt
[all...]
/external/opencv3/modules/python/test/
H A Dtest.py113 for kpt in keypoints:
114 self.assertNotEqual(kpt.response, 0)
/external/opencv3/modules/core/src/
H A Dpersistence.cpp5573 const KeyPoint& kpt = keypoints[i]; local
5574 cv::write(fs, kpt.pt.x);
5575 cv::write(fs, kpt.pt.y);
5576 cv::write(fs, kpt.size);
5577 cv::write(fs, kpt.angle);
5578 cv::write(fs, kpt.response);
5579 cv::write(fs, kpt.octave);
5580 cv::write(fs, kpt.class_id);
5591 KeyPoint kpt; local
5592 it >> kpt
[all...]
/external/opencv3/modules/calib3d/src/
H A Dcirclesgrid.cpp886 Point2f kpt = Point2f(pt);
887 keypoints.push_back(kpt);

Completed in 152 milliseconds