You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 20, 2023. It is now read-only.
@@ -92,7 +92,7 @@ class SOLAROPENCV_EXPORT_API SolARDescriptorMatcherKNNOpencv : public org::bcom:
92
92
/// @param[in] frame The frame contains descriptors to match.
93
93
/// @param[out] matches A vector of matches representing pairs of indices relatively to the first and second set of descriptors.
94
94
/// @return DesciptorMatcher::DESCRIPTORS_MATCHER_OK if matching succeeds, DesciptorMatcher::DESCRIPTORS_DONT_MATCH if the types of descriptors are different, DesciptorMatcher::DESCRIPTOR_TYPE_UNDEFINED if one of the descriptors set is unknown, or DesciptorMatcher::DESCRIPTOR_EMPTY if one of the set is empty.
@@ -101,6 +101,21 @@ class SOLAROPENCV_EXPORT_API SolARDescriptorMatcherKNNOpencv : public org::bcom:
101
101
constfloat matchingDistanceMax = 0.f
102
102
) override;
103
103
104
+
/// @brief Match each descriptor input with descriptors of a frame in a region. The searching space is a circle which is defined by a 2D center and a radius
105
+
/// @param[in] currentFrame the current frame.
106
+
/// @param[in] lastFrame the last frame.
107
+
/// @param[out] matches a vector of matches between two frames representing pairs of keypoint indices relatively.
108
+
/// @param[in] radius the radius of search region around each keypoint of the last frame.
109
+
/// @param[in] matchingDistanceMax the maximum distance to valid a match.
110
+
/// @return DesciptorMatcher::DESCRIPTORS_MATCHER_OK if matching succeeds, DesciptorMatcher::DESCRIPTORS_DONT_MATCH if the types of descriptors are different, DesciptorMatcher::DESCRIPTOR_TYPE_UNDEFINED if one of the descriptors set is unknown, or DesciptorMatcher::DESCRIPTOR_EMPTY if one of the set is empty.
0 commit comments