|
OpenCV for Unity 3.0.0
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.12.0/index.html ) for the details of the argument of the method.
|
Class implementing EdgeBoxes algorithm from [ZitnickECCV14edgeBoxes] : More...
Public Member Functions | |
| float | getAlpha () |
| Returns the step size of sliding window search. | |
| float | getBeta () |
| Returns the nms threshold for object proposals. | |
| void | getBoundingBoxes (Mat edge_map, Mat orientation_map, MatOfRect boxes) |
| Returns array containing proposal boxes. | |
| void | getBoundingBoxes (Mat edge_map, Mat orientation_map, MatOfRect boxes, Mat scores) |
| Returns array containing proposal boxes. | |
| float | getClusterMinMag () |
| Returns the cluster min magnitude. | |
| float | getEdgeMergeThr () |
| Returns the edge merge threshold. | |
| float | getEdgeMinMag () |
| Returns the edge min magnitude. | |
| float | getEta () |
| Returns adaptation rate for nms threshold. | |
| float | getGamma () |
| Returns the affinity sensitivity. | |
| float | getKappa () |
| Returns the scale sensitivity. | |
| float | getMaxAspectRatio () |
| Returns the max aspect ratio of boxes. | |
| int | getMaxBoxes () |
| Returns the max number of boxes to detect. | |
| float | getMinBoxArea () |
| Returns the minimum area of boxes. | |
| float | getMinScore () |
| Returns the min score of boxes to detect. | |
| void | setAlpha (float value) |
| Sets the step size of sliding window search. | |
| void | setBeta (float value) |
| Sets the nms threshold for object proposals. | |
| void | setClusterMinMag (float value) |
| Sets the cluster min magnitude. | |
| void | setEdgeMergeThr (float value) |
| Sets the edge merge threshold. | |
| void | setEdgeMinMag (float value) |
| Sets the edge min magnitude. | |
| void | setEta (float value) |
| Sets the adaptation rate for nms threshold. | |
| void | setGamma (float value) |
| Sets the affinity sensitivity. | |
| void | setKappa (float value) |
| Sets the scale sensitivity. | |
| void | setMaxAspectRatio (float value) |
| Sets the max aspect ratio of boxes. | |
| void | setMaxBoxes (int value) |
| Sets max number of boxes to detect. | |
| void | setMinBoxArea (float value) |
| Sets the minimum area of boxes. | |
| void | setMinScore (float value) |
| Sets the min score of boxes to detect. | |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
| 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) |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
| void | Dispose () |
| void | ThrowIfDisposed () |
Static Public Member Functions | |
| static new EdgeBoxes | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
| static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
| static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Protected Member Functions | |
| override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
| DisposableOpenCVObject () | |
| DisposableOpenCVObject (bool isEnabledDispose) | |
| DisposableOpenCVObject (IntPtr ptr) | |
| DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
| DisposableObject () | |
| DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Package Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Package Attributes inherited from OpenCVForUnity.DisposableOpenCVObject | |
Properties inherited from OpenCVForUnity.DisposableObject | |
| bool | IsDisposed [get, protected set] |
| bool | IsEnabledDispose [get, set] |
Class implementing EdgeBoxes algorithm from [ZitnickECCV14edgeBoxes] :
|
static |
|
protectedvirtual |
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getAlpha | ( | ) |
Returns the step size of sliding window search.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getBeta | ( | ) |
Returns the nms threshold for object proposals.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.getBoundingBoxes | ( | Mat | edge_map, |
| Mat | orientation_map, | ||
| MatOfRect | boxes ) |
Returns array containing proposal boxes.
| edge_map | edge image. |
| orientation_map | orientation map. |
| boxes | proposal boxes. |
| scores | of the proposal boxes, provided a vector of float types. |
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.getBoundingBoxes | ( | Mat | edge_map, |
| Mat | orientation_map, | ||
| MatOfRect | boxes, | ||
| Mat | scores ) |
Returns array containing proposal boxes.
| edge_map | edge image. |
| orientation_map | orientation map. |
| boxes | proposal boxes. |
| scores | of the proposal boxes, provided a vector of float types. |
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getClusterMinMag | ( | ) |
Returns the cluster min magnitude.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getEdgeMergeThr | ( | ) |
Returns the edge merge threshold.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getEdgeMinMag | ( | ) |
Returns the edge min magnitude.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getEta | ( | ) |
Returns adaptation rate for nms threshold.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getGamma | ( | ) |
Returns the affinity sensitivity.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getKappa | ( | ) |
Returns the scale sensitivity.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getMaxAspectRatio | ( | ) |
Returns the max aspect ratio of boxes.
| int OpenCVForUnity.XimgprocModule.EdgeBoxes.getMaxBoxes | ( | ) |
Returns the max number of boxes to detect.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getMinBoxArea | ( | ) |
Returns the minimum area of boxes.
| float OpenCVForUnity.XimgprocModule.EdgeBoxes.getMinScore | ( | ) |
Returns the min score of boxes to detect.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setAlpha | ( | float | value | ) |
Sets the step size of sliding window search.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setBeta | ( | float | value | ) |
Sets the nms threshold for object proposals.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setClusterMinMag | ( | float | value | ) |
Sets the cluster min magnitude.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setEdgeMergeThr | ( | float | value | ) |
Sets the edge merge threshold.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setEdgeMinMag | ( | float | value | ) |
Sets the edge min magnitude.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setEta | ( | float | value | ) |
Sets the adaptation rate for nms threshold.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setGamma | ( | float | value | ) |
Sets the affinity sensitivity.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setKappa | ( | float | value | ) |
Sets the scale sensitivity.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setMaxAspectRatio | ( | float | value | ) |
Sets the max aspect ratio of boxes.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setMaxBoxes | ( | int | value | ) |
Sets max number of boxes to detect.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setMinBoxArea | ( | float | value | ) |
Sets the minimum area of boxes.
| void OpenCVForUnity.XimgprocModule.EdgeBoxes.setMinScore | ( | float | value | ) |
Sets the min score of boxes to detect.