메소드 | 설명 | |
---|---|---|
ComputeDescriptors ( Byte>.Image |
Compute the descriptor given the image and the point location
|
|
ComputeDescriptors ( byte>.Image |
Compute the ImageFeature on the image from the given keypoint locations.
|
|
DetectFeatures ( Byte>.Image |
Detect image features from the given image
|
|
DetectKeyPoints ( Byte>.Image |
Detect the SURF keypoints from the image
|
|
DetectKeyPoints ( byte>.Image |
Detect the keypoints in the image
|
|
SIFTDetector ( ) : System |
Create a SIFT detector with the default parameters
|
|
SIFTDetector ( int nOctaves, int nOctaveLayers, int firstOctave, AngleMode angleMode, double threshold, double edgeThreshold, double magnification, bool isNormalize, bool recalculateAngles ) : System |
Create a SIFTDetector using the specific values
|
메소드 | 설명 | |
---|---|---|
DisposeObject ( ) : void |
Release the unmanaged resources associated with this object
|
메소드 | 설명 | |
---|---|---|
CvSIFTDetectorComputeDescriptors ( |
||
CvSIFTDetectorCreate ( int nOctaves, int nOctaveLayers, int firstOctave, AngleMode angleMode, double threshold, double edgeThreshold, double magnification, [ isNormalize, [ recalculateAngles ) : |
||
CvSIFTDetectorDetectFeature ( |
||
CvSIFTDetectorDetectKeyPoints ( |
||
CvSIFTDetectorGetDescriptorSize ( |
||
CvSIFTDetectorRelease ( |
public ComputeDescriptors ( Byte>.Image |
||
image | Byte>.Image | The image where the descriptor will be computed from |
mask | byte>.Image | The optional mask, can be null if not needed |
keyPoints | The keypoint where the descriptor will be computed from | |
리턴 | Emgu.CV.Features2D.ImageFeature[] |
public ComputeDescriptors ( byte>.Image |
||
image | byte>.Image | The image to compute descriptors from |
keyPoints | The keypoints where the descriptor computation is perfromed | |
리턴 | Emgu.CV.Features2D.ImageFeature[] |
public DetectFeatures ( Byte>.Image |
||
image | Byte>.Image | The image to detect features from |
mask | byte>.Image | The optional mask, can be null if not needed |
리턴 | Emgu.CV.Features2D.ImageFeature[] |
public DetectKeyPoints ( Byte>.Image |
||
image | Byte>.Image | The image to extract SURF features from |
mask | byte>.Image | The optional mask, can be null if not needed |
리턴 | Emgu.CV.Structure.MKeyPoint[] |
public DetectKeyPoints ( byte>.Image |
||
image | byte>.Image | The image from which the key point will be detected from |
리턴 | Emgu.CV.Structure.MKeyPoint[] |
public SIFTDetector ( int nOctaves, int nOctaveLayers, int firstOctave, AngleMode angleMode, double threshold, double edgeThreshold, double magnification, bool isNormalize, bool recalculateAngles ) : System | ||
nOctaves | int | The number of octaves. Use 4 for default |
nOctaveLayers | int | The number of octaves layers. Use 3 for default |
firstOctave | int | Use -1 for default |
angleMode | AngleMode | Angle mode |
threshold | double | Detector parameter. Use 0.04 / nOctavesLayers / 2.0 as default |
edgeThreshold | double | Detector parameter. Use 10.0 as default |
magnification | double | Descriptor parameter. Use 3.0 as default |
isNormalize | bool | Descriptor parameter. Use true as default |
recalculateAngles | bool | Descriptor parameter. Use true as default |
리턴 | System |