Approximates Freeman chain(s) with polygonal curve
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public CvSeq<CvPoint> ApproxChains( CvMemStorage storage, ContourChain method, double parameter, int minimalPerimeter )
Parameters
- storage
- Type: OpenCvSharpCvMemStorage
Storage location for the resulting polylines. - method
- Type: OpenCvSharpContourChain
Approximation method. - parameter
- Type: SystemDouble
Method parameter (not used now). - minimalPerimeter
- Type: SystemInt32
Approximates only those contours whose perimeters are not less than minimal_perimeter. Other chains are removed from the resulting structure.
Return Value
Type: CvSeqCvPoint[Missing <returns> documentation for "M:OpenCvSharp.CvChain.ApproxChains(OpenCvSharp.CvMemStorage,OpenCvSharp.ContourChain,System.Double,System.Int32)"]
See Also