프로퍼티 | 타입 | 설명 | |
---|---|---|---|
extended | int | ||
hessianThreshold | double | ||
nOctaveLayers | int | ||
nOctaves | int |
메소드 | 설명 | |
---|---|---|
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
|
|
SurfDetector ( double hessianThresh, bool extendedFlag ) : System |
Create a MCvSURFParams using the specific values
|
메소드 | 설명 | |
---|---|---|
CvSURFDetectorComputeDescriptors ( |
||
CvSURFDetectorDetectFeature ( |
||
CvSURFDetectorDetectKeyPoints ( |
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 SurfDetector ( double hessianThresh, bool extendedFlag ) : System | ||
hessianThresh | double | /// Only features with keypoint.hessian larger than that are extracted. /// good default value is ~300-500 (can depend on the average local contrast and sharpness of the image). /// user can further filter out some features based on their hessian values and other characteristics /// |
extendedFlag | bool | /// false means basic descriptors (64 elements each), /// true means extended descriptors (128 elements each) /// |
리턴 | System |