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
/// Extract ORB descriptors from FAST features that hold higher Harris responses. FAST does not
180
+
/// compute orientation, thus, orientation of features is calculated using the intensity centroid.
181
+
/// As FAST is also not multi-scale enabled, a multi-scale pyramid is calculated by downsampling
182
+
/// the input image multiple times followed by FAST feature detection on each scale.
183
+
///
184
+
/// # Parameters
185
+
///
186
+
/// - `input` - the input image Array
187
+
/// - `fast_thr` - FAST threshold for which a pixel of the circle around the central pixel is
188
+
/// considered to be brighter or darker
189
+
/// - `max_feat` - maximum number of features to hold
190
+
/// - `scl_fctr` - factor to downsample the input image, meaning that each level with hold prior
191
+
/// level dimensions divided by `scl_fctr`
192
+
/// - `levels` - number of levels to be computed for the image pyramid
193
+
/// - `blur_img` - blur image with a Gaussian filter with sigma=2 before computing descriptors to
194
+
/// increase robustness against noise if true
195
+
///
196
+
/// # Return Values
197
+
///
198
+
/// This function returns a tuple of [`Features`](./struct.Features.html) and [`Array`](./struct.Array.html). The features objects composed of Arrays for x and y coordinates, score, orientation and size of selected features. The Array object is a two dimensional Array of size Nx8 where N is number of selected features.
/// `template_img` - is the template we are looking for in the image
273
+
/// `mtype` - is metric that should be used to calculate the disparity between window in the image and the template image. It can be one of the values defined by the enum [MatchType](./enum.MatchType.html).
274
+
/// # Return Values
275
+
///
276
+
/// This function returns an Array with disparity values for the window starting at corresponding pixel position.
0 commit comments