@Namespace(value="cv::cuda") public static class opencv_cudaimgproc.TemplateMatching extends opencv_core.Algorithm
| Constructor and Description |
|---|
TemplateMatching(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
match(opencv_core.GpuMat image,
opencv_core.GpuMat templ,
opencv_core.GpuMat result) |
void |
match(opencv_core.GpuMat image,
opencv_core.GpuMat templ,
opencv_core.GpuMat result,
opencv_core.Stream stream) |
void |
match(opencv_core.Mat image,
opencv_core.Mat templ,
opencv_core.Mat result) |
void |
match(opencv_core.Mat image,
opencv_core.Mat templ,
opencv_core.Mat result,
opencv_core.Stream stream)
\brief Computes a proximity map for a raster template and an image where the template is searched for.
|
void |
match(opencv_core.UMat image,
opencv_core.UMat templ,
opencv_core.UMat result) |
void |
match(opencv_core.UMat image,
opencv_core.UMat templ,
opencv_core.UMat result,
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 TemplateMatching(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void match(@ByVal
opencv_core.Mat image,
@ByVal
opencv_core.Mat templ,
@ByVal
opencv_core.Mat result,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
image - Source image.templ - Template image with the size and type the same as image .result - Map containing comparison results ( CV_32FC1 ). If image is *W x H* and templ is *w
x h*, then result must be *W-w+1 x H-h+1*.stream - Stream for the asynchronous version.public void match(@ByVal
opencv_core.Mat image,
@ByVal
opencv_core.Mat templ,
@ByVal
opencv_core.Mat result)
public void match(@ByVal
opencv_core.UMat image,
@ByVal
opencv_core.UMat templ,
@ByVal
opencv_core.UMat result,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
public void match(@ByVal
opencv_core.UMat image,
@ByVal
opencv_core.UMat templ,
@ByVal
opencv_core.UMat result)
public void match(@ByVal
opencv_core.GpuMat image,
@ByVal
opencv_core.GpuMat templ,
@ByVal
opencv_core.GpuMat result,
@ByRef(nullValue="cv::cuda::Stream::Null()")
opencv_core.Stream stream)
public void match(@ByVal
opencv_core.GpuMat image,
@ByVal
opencv_core.GpuMat templ,
@ByVal
opencv_core.GpuMat result)
Copyright © 2018. All rights reserved.