OpenCV for Unity  2.6.0
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.9.0/index.html ) for the details of the argument of the method.
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
OpenCVForUnity.XimgprocModule.ContourFitting Class Reference

Class for ContourFitting algorithms. ContourFitting match two contours \($ z_a \)$ and \($ z_b \)$ minimizing distance

\[ d(z_a,z_b)=\sum (a_n - s b_n e^{j(n \alpha +\phi )})^2 \]

where \($ a_n \)$ and \($ b_n \)$ are Fourier descriptors of \($ z_a \)$ and \($ z_b \)$ and s is a scaling factor and \($ \phi \)$ is angle rotation and \($ \alpha \)$ is starting point factor adjustement. More...

Inheritance diagram for OpenCVForUnity.XimgprocModule.ContourFitting:
OpenCVForUnity.CoreModule.Algorithm OpenCVForUnity.DisposableOpenCVObject OpenCVForUnity.DisposableObject

Public Member Functions

void estimateTransformation (Mat src, Mat dst, Mat alphaPhiST, double[] dist, bool fdContour)
 Fit two closed curves using fourier descriptors. More details in [PersoonFu1977] and [BergerRaghunathan1998]. More...
 
void estimateTransformation (Mat src, Mat dst, Mat alphaPhiST, double[] dist)
 Fit two closed curves using fourier descriptors. More details in [PersoonFu1977] and [BergerRaghunathan1998]. More...
 
void setCtrSize (int n)
 set number of Fourier descriptors used in estimateTransformation More...
 
void setFDSize (int n)
 set number of Fourier descriptors when estimateTransformation used vector<Point> More...
 
int getCtrSize ()
 
int getFDSize ()
 
- Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm
IntPtr getNativeObjAddr ()
 
virtual void clear ()
 Clears the algorithm state. More...
 
virtual bool empty ()
 Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. More...
 
void save (string filename)
 
virtual string getDefaultName ()
 
- Public Member Functions inherited from OpenCVForUnity.DisposableObject
void Dispose ()
 
void ThrowIfDisposed ()
 

Static Public Member Functions

static new ContourFitting __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.DisposableOpenCVObject
 DisposableOpenCVObject ()
 
 DisposableOpenCVObject (IntPtr ptr)
 
 DisposableOpenCVObject (bool isEnabledDispose)
 
 DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose)
 
- Protected Member Functions inherited from OpenCVForUnity.DisposableObject
 DisposableObject ()
 
 DisposableObject (bool isEnabledDispose)
 

Additional Inherited Members

- Properties inherited from OpenCVForUnity.DisposableObject
bool IsDisposed [get, protected set]
 
bool IsEnabledDispose [get, set]
 

Detailed Description

Class for ContourFitting algorithms. ContourFitting match two contours \($ z_a \)$ and \($ z_b \)$ minimizing distance

\[ d(z_a,z_b)=\sum (a_n - s b_n e^{j(n \alpha +\phi )})^2 \]

where \($ a_n \)$ and \($ b_n \)$ are Fourier descriptors of \($ z_a \)$ and \($ z_b \)$ and s is a scaling factor and \($ \phi \)$ is angle rotation and \($ \alpha \)$ is starting point factor adjustement.

Member Function Documentation

◆ __fromPtr__()

static new ContourFitting OpenCVForUnity.XimgprocModule.ContourFitting.__fromPtr__ ( IntPtr  addr)
static

◆ Dispose()

override void OpenCVForUnity.XimgprocModule.ContourFitting.Dispose ( bool  disposing)
protectedvirtual

◆ estimateTransformation() [1/2]

void OpenCVForUnity.XimgprocModule.ContourFitting.estimateTransformation ( Mat  src,
Mat  dst,
Mat  alphaPhiST,
double []  dist,
bool  fdContour 
)

Fit two closed curves using fourier descriptors. More details in [PersoonFu1977] and [BergerRaghunathan1998].

Parameters
srcContour defining first shape.
dstContour defining second shape (Target).
alphaPhiST: \( \alpha \)=alphaPhiST(0,0), \( \phi \)=alphaPhiST(0,1) (in radian), s=alphaPhiST(0,2), Tx=alphaPhiST(0,3), Ty=alphaPhiST(0,4) rotation center
distdistance between src and dst after matching.
fdContourfalse then src and dst are contours and true src and dst are fourier descriptors.

◆ estimateTransformation() [2/2]

void OpenCVForUnity.XimgprocModule.ContourFitting.estimateTransformation ( Mat  src,
Mat  dst,
Mat  alphaPhiST,
double []  dist 
)

Fit two closed curves using fourier descriptors. More details in [PersoonFu1977] and [BergerRaghunathan1998].

Parameters
srcContour defining first shape.
dstContour defining second shape (Target).
alphaPhiST: \( \alpha \)=alphaPhiST(0,0), \( \phi \)=alphaPhiST(0,1) (in radian), s=alphaPhiST(0,2), Tx=alphaPhiST(0,3), Ty=alphaPhiST(0,4) rotation center
distdistance between src and dst after matching.
fdContourfalse then src and dst are contours and true src and dst are fourier descriptors.

◆ getCtrSize()

int OpenCVForUnity.XimgprocModule.ContourFitting.getCtrSize ( )
Returns
number of fourier descriptors

◆ getFDSize()

int OpenCVForUnity.XimgprocModule.ContourFitting.getFDSize ( )
Returns
number of fourier descriptors used for optimal curve matching

◆ setCtrSize()

void OpenCVForUnity.XimgprocModule.ContourFitting.setCtrSize ( int  n)

set number of Fourier descriptors used in estimateTransformation

Parameters
nnumber of Fourier descriptors equal to number of contour points after resampling.

◆ setFDSize()

void OpenCVForUnity.XimgprocModule.ContourFitting.setFDSize ( int  n)

set number of Fourier descriptors when estimateTransformation used vector<Point>

Parameters
nnumber of fourier descriptors used for optimal curve matching.

The documentation for this class was generated from the following file: