Class BriefDescriptorExtractor
- Namespace
- OpenCvSharp.XFeatures2D
- Assembly
- OpenCvSharp.dll
BRIEF Descriptor
public class BriefDescriptorExtractor : Feature2D, IDisposable
- Inheritance
-
BriefDescriptorExtractor
- Implements
- Inherited Members
Fields
KERNEL_SIZE
public const int KERNEL_SIZE = 9
Field Value
PATCH_SIZE
public const int PATCH_SIZE = 48
Field Value
Properties
DescriptorSize
Length of the descriptor in bytes. Valid values are: 16, 32 (default) or 64.
public int DescriptorSize { get; set; }
Property Value
UseOrientation
Sample patterns using keypoints orientation. Disabled by default.
public bool UseOrientation { get; set; }
Property Value
Methods
Create(int, bool)
bytes is a length of descriptor in bytes. It can be equal 16, 32 or 64 bytes.
public static BriefDescriptorExtractor Create(int bytes = 32, bool useOrientation = false)