@Namespace(value="cv::ximgproc") public static class opencv_ximgproc.StructuredEdgeDetection extends opencv_core.Algorithm
| Constructor and Description |
|---|
StructuredEdgeDetection(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
computeOrientation(opencv_core.GpuMat _src,
opencv_core.GpuMat _dst) |
void |
computeOrientation(opencv_core.Mat _src,
opencv_core.Mat _dst)
\brief The function computes orientation from edge image.
|
void |
computeOrientation(opencv_core.UMat _src,
opencv_core.UMat _dst) |
void |
detectEdges(opencv_core.GpuMat _src,
opencv_core.GpuMat _dst) |
void |
detectEdges(opencv_core.Mat _src,
opencv_core.Mat _dst)
\brief The function detects edges in src and draw them to dst.
|
void |
detectEdges(opencv_core.UMat _src,
opencv_core.UMat _dst) |
void |
edgesNms(opencv_core.GpuMat edge_image,
opencv_core.GpuMat orientation_image,
opencv_core.GpuMat _dst) |
void |
edgesNms(opencv_core.GpuMat edge_image,
opencv_core.GpuMat orientation_image,
opencv_core.GpuMat _dst,
int r,
int s,
float m,
boolean isParallel) |
void |
edgesNms(opencv_core.Mat edge_image,
opencv_core.Mat orientation_image,
opencv_core.Mat _dst) |
void |
edgesNms(opencv_core.Mat edge_image,
opencv_core.Mat orientation_image,
opencv_core.Mat _dst,
int r,
int s,
float m,
boolean isParallel)
\brief The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
void |
edgesNms(opencv_core.UMat edge_image,
opencv_core.UMat orientation_image,
opencv_core.UMat _dst) |
void |
edgesNms(opencv_core.UMat edge_image,
opencv_core.UMat orientation_image,
opencv_core.UMat _dst,
int r,
int s,
float m,
boolean isParallel) |
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 StructuredEdgeDetection(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void detectEdges(@ByVal
opencv_core.Mat _src,
@ByVal
opencv_core.Mat _dst)
The algorithm underlies this function is much more robust to texture presence, than common approaches, e.g. Sobel
_src - source image (RGB, float, in [0;1]) to detect edges_dst - destination image (grayscale, float, in [0;1]) where edges are drawn
\sa Sobel, Cannypublic void detectEdges(@ByVal
opencv_core.UMat _src,
@ByVal
opencv_core.UMat _dst)
public void detectEdges(@ByVal
opencv_core.GpuMat _src,
@ByVal
opencv_core.GpuMat _dst)
public void computeOrientation(@ByVal
opencv_core.Mat _src,
@ByVal
opencv_core.Mat _dst)
_src - edge image._dst - orientation image.public void computeOrientation(@ByVal
opencv_core.UMat _src,
@ByVal
opencv_core.UMat _dst)
public void computeOrientation(@ByVal
opencv_core.GpuMat _src,
@ByVal
opencv_core.GpuMat _dst)
public void edgesNms(@ByVal
opencv_core.Mat edge_image,
@ByVal
opencv_core.Mat orientation_image,
@ByVal
opencv_core.Mat _dst,
int r,
int s,
float m,
@Cast(value="bool")
boolean isParallel)
edge_image - edge image from detectEdges function.orientation_image - orientation image from computeOrientation function._dst - suppressed image (grayscale, float, in [0;1])r - radius for NMS suppression.s - radius for boundary suppression.m - multiplier for conservative suppression.isParallel - enables/disables parallel computing.public void edgesNms(@ByVal
opencv_core.Mat edge_image,
@ByVal
opencv_core.Mat orientation_image,
@ByVal
opencv_core.Mat _dst)
public void edgesNms(@ByVal
opencv_core.UMat edge_image,
@ByVal
opencv_core.UMat orientation_image,
@ByVal
opencv_core.UMat _dst,
int r,
int s,
float m,
@Cast(value="bool")
boolean isParallel)
public void edgesNms(@ByVal
opencv_core.UMat edge_image,
@ByVal
opencv_core.UMat orientation_image,
@ByVal
opencv_core.UMat _dst)
public void edgesNms(@ByVal
opencv_core.GpuMat edge_image,
@ByVal
opencv_core.GpuMat orientation_image,
@ByVal
opencv_core.GpuMat _dst,
int r,
int s,
float m,
@Cast(value="bool")
boolean isParallel)
public void edgesNms(@ByVal
opencv_core.GpuMat edge_image,
@ByVal
opencv_core.GpuMat orientation_image,
@ByVal
opencv_core.GpuMat _dst)
Copyright © 2018. All rights reserved.