  | CvBlobLibWriteContourPolygonSvg Method (CvContourPolygon, String, Scalar, Scalar) | 
 
            Write a contour to a SVG file.
            
 
    Namespace: 
   OpenCvSharp.Blob
    Assembly:
   OpenCvSharp.Blob (in OpenCvSharp.Blob.dll) Version: 1.0.0
Syntaxpublic static void WriteContourPolygonSvg(
	CvContourPolygon polygon,
	string fileName,
	Scalar stroke,
	Scalar fill
)
Public Shared Sub WriteContourPolygonSvg ( 
	polygon As CvContourPolygon,
	fileName As String,
	stroke As Scalar,
	fill As Scalar
)
public:
static void WriteContourPolygonSvg(
	CvContourPolygon^ polygon, 
	String^ fileName, 
	Scalar stroke, 
	Scalar fill
)
static member WriteContourPolygonSvg : 
        polygon : CvContourPolygon * 
        fileName : string * 
        stroke : Scalar * 
        fill : Scalar -> unit 
Parameters
- polygon
 - Type: OpenCvSharp.BlobCvContourPolygon
Polygon contour. - fileName
 - Type: SystemString
File name. - stroke
 - Type: OpenCvSharpScalar
Stroke color (black by default). - fill
 - Type: OpenCvSharpScalar
Fill color (white by default). 
See Also