Class implementing edge detection algorithm from [Dollar2013] :
More...
|
void | computeOrientation (Mat src, Mat dst) |
| The function computes orientation from edge image.
|
|
void | detectEdges (Mat src, Mat dst) |
| The function detects edges in src and draw them to dst.
|
|
void | edgesNms (Mat edge_image, Mat orientation_image, Mat dst) |
| The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
|
void | edgesNms (Mat edge_image, Mat orientation_image, Mat dst, int r) |
| The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
|
void | edgesNms (Mat edge_image, Mat orientation_image, Mat dst, int r, int s) |
| The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
|
void | edgesNms (Mat edge_image, Mat orientation_image, Mat dst, int r, int s, float m) |
| The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
|
void | edgesNms (Mat edge_image, Mat orientation_image, Mat dst, int r, int s, float m, bool isParallel) |
| The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
|
|
virtual void | clear () |
| Clears the algorithm state.
|
|
virtual bool | empty () |
| Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read.
|
|
virtual string | getDefaultName () |
|
IntPtr | getNativeObjAddr () |
|
void | save (string filename) |
|
void | Dispose () |
|
void | ThrowIfDisposed () |
|
Class implementing edge detection algorithm from [Dollar2013] :
◆ __fromPtr__()
static new StructuredEdgeDetection OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.__fromPtr__ |
( |
IntPtr | addr | ) |
|
|
static |
◆ computeOrientation()
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.computeOrientation |
( |
Mat | src, |
|
|
Mat | dst ) |
The function computes orientation from edge image.
- Parameters
-
src | edge image. |
dst | orientation image. |
◆ detectEdges()
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.detectEdges |
( |
Mat | src, |
|
|
Mat | dst ) |
The function detects edges in src and draw them to dst.
The algorithm underlies this function is much more robust to texture presence, than common approaches, e.g. Sobel
- Parameters
-
src | source image (RGB, float, in [0;1]) to detect edges |
dst | destination image (grayscale, float, in [0;1]) where edges are drawn |
Sobel, Canny
◆ Dispose()
override void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.Dispose |
( |
bool | disposing | ) |
|
|
protectedvirtual |
◆ edgesNms() [1/5]
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.edgesNms |
( |
Mat | edge_image, |
|
|
Mat | orientation_image, |
|
|
Mat | dst ) |
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
- Parameters
-
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. |
◆ edgesNms() [2/5]
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.edgesNms |
( |
Mat | edge_image, |
|
|
Mat | orientation_image, |
|
|
Mat | dst, |
|
|
int | r ) |
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
- Parameters
-
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. |
◆ edgesNms() [3/5]
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.edgesNms |
( |
Mat | edge_image, |
|
|
Mat | orientation_image, |
|
|
Mat | dst, |
|
|
int | r, |
|
|
int | s ) |
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
- Parameters
-
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. |
◆ edgesNms() [4/5]
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.edgesNms |
( |
Mat | edge_image, |
|
|
Mat | orientation_image, |
|
|
Mat | dst, |
|
|
int | r, |
|
|
int | s, |
|
|
float | m ) |
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
- Parameters
-
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. |
◆ edgesNms() [5/5]
void OpenCVForUnity.XimgprocModule.StructuredEdgeDetection.edgesNms |
( |
Mat | edge_image, |
|
|
Mat | orientation_image, |
|
|
Mat | dst, |
|
|
int | r, |
|
|
int | s, |
|
|
float | m, |
|
|
bool | isParallel ) |
The function edgenms in edge image and suppress edges where edge is stronger in orthogonal direction.
- Parameters
-
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. |
The documentation for this class was generated from the following file: