@Namespace(value="cv::cuda") public static class opencv_cudaimgproc.CornersDetector extends opencv_core.Algorithm
| Constructor and Description |
|---|
CornersDetector(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
detect(opencv_core.GpuMat image,
opencv_core.GpuMat corners) |
void |
detect(opencv_core.GpuMat image,
opencv_core.GpuMat corners,
opencv_core.GpuMat mask,
opencv_core.Stream stream) |
void |
detect(opencv_core.Mat image,
opencv_core.Mat corners) |
void |
detect(opencv_core.Mat image,
opencv_core.Mat corners,
opencv_core.Mat mask,
opencv_core.Stream stream)
\brief Determines strong corners on an image.
|
void |
detect(opencv_core.UMat image,
opencv_core.UMat corners) |
void |
detect(opencv_core.UMat image,
opencv_core.UMat corners,
opencv_core.UMat mask,
opencv_core.Stream stream) |
clear, empty, getDefaultName, position, read, save, save, write, write, writeaddress, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic CornersDetector(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void detect(@ByVal
opencv_core.Mat image,
@ByVal
opencv_core.Mat corners,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.Mat mask,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
image - Input 8-bit or floating-point 32-bit, single-channel image.corners - Output vector of detected corners (1-row matrix with CV_32FC2 type with corners
positions).mask - Optional region of interest. If the image is not empty (it needs to have the type
CV_8UC1 and the same size as image ), it specifies the region in which the corners are detected.stream - Stream for the asynchronous version.public void detect(@ByVal
opencv_core.Mat image,
@ByVal
opencv_core.Mat corners)
public void detect(@ByVal
opencv_core.UMat image,
@ByVal
opencv_core.UMat corners,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.UMat mask,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
public void detect(@ByVal
opencv_core.UMat image,
@ByVal
opencv_core.UMat corners)
public void detect(@ByVal
opencv_core.GpuMat image,
@ByVal
opencv_core.GpuMat corners,
@ByVal(nullValue="cv::InputArray(cv::noArray())")
opencv_core.GpuMat mask,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
public void detect(@ByVal
opencv_core.GpuMat image,
@ByVal
opencv_core.GpuMat corners)
Copyright © 2018. All rights reserved.