mirror of
https://github.com/opencv/opencv.git
synced 2025-06-08 01:53:19 +08:00
Merge pull request #21180 from tezz-io:4.x
Added CV_PROP_RW macro to keypoints * Added CV_PROP_RW macro to keypoints As outlined in the feature request in the issue https://github.com/opencv/opencv/issues/21171 : the keypoints field has been made parsable by the bindings. * Added test for keypoints Added test to check if the CV_PROP_RW macro added in the previous commit makes keypoints public and accessible through the python API.
This commit is contained in:
parent
73318fd514
commit
676a724491
@ -59,7 +59,7 @@ struct CV_EXPORTS_W_SIMPLE ImageFeatures
|
||||
{
|
||||
CV_PROP_RW int img_idx;
|
||||
CV_PROP_RW Size img_size;
|
||||
std::vector<KeyPoint> keypoints;
|
||||
CV_PROP_RW std::vector<KeyPoint> keypoints;
|
||||
CV_PROP_RW UMat descriptors;
|
||||
CV_WRAP std::vector<KeyPoint> getKeypoints() { return keypoints; };
|
||||
};
|
||||
|
@ -28,6 +28,9 @@ class stitching_detail_test(NewOpenCVTests):
|
||||
imgFea = cv.detail.computeImageFeatures2(finder,img)
|
||||
self.assertIsNotNone(imgFea)
|
||||
|
||||
# Added Test for PR #21180
|
||||
self.assertIsNotNone(imgFea.keypoints)
|
||||
|
||||
matcher = cv.detail_BestOf2NearestMatcher(False, 0.3)
|
||||
self.assertIsNotNone(matcher)
|
||||
matcher = cv.detail_AffineBestOf2NearestMatcher(False, False, 0.3)
|
||||
|
Loading…
Reference in New Issue
Block a user