CudaSURFComputeDescriptorsRaw Method |
http://www.emgu.com
Compute the descriptor given the image and the point location
Namespace: Emgu.CV.XFeatures2DAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic GpuMat ComputeDescriptorsRaw(
GpuMat image,
GpuMat mask,
GpuMat keyPoints
)
Public Function ComputeDescriptorsRaw (
image As GpuMat,
mask As GpuMat,
keyPoints As GpuMat
) As GpuMat
public:
GpuMat^ ComputeDescriptorsRaw(
GpuMat^ image,
GpuMat^ mask,
GpuMat^ keyPoints
)
member ComputeDescriptorsRaw :
image : GpuMat *
mask : GpuMat *
keyPoints : GpuMat -> GpuMat
Parameters
- image
- Type: Emgu.CV.CudaGpuMat
The image where the descriptor will be computed from - mask
- Type: Emgu.CV.CudaGpuMat
The optional mask, can be null if not needed - keyPoints
- Type: Emgu.CV.CudaGpuMat
The keypoint where the descriptor will be computed from. The order of the keypoints might be changed unless the GPU_SURF detector is UP-RIGHT.
Return Value
Type:
GpuMatThe image features founded on the keypoint location
See Also