Click or drag to resize

CvInvokeDrawMarker Method

http://www.emgu.com
Draws a marker on a predefined position in an image.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void DrawMarker(
	IInputOutputArray img,
	Point position,
	MCvScalar color,
	MarkerTypes markerType,
	int markerSize = 20,
	int thickness = 1,
	LineType lineType = LineType.EightConnected
)

Parameters

img
Type: Emgu.CVIInputOutputArray
Image.
position
Type: System.DrawingPoint
The point where the crosshair is positioned.
color
Type: Emgu.CV.StructureMCvScalar
Line color.
markerType
Type: Emgu.CV.CvEnumMarkerTypes
The specific type of marker you want to use
markerSize (Optional)
Type: SystemInt32
The length of the marker axis [default = 20 pixels]
thickness (Optional)
Type: SystemInt32
Line thickness.
lineType (Optional)
Type: Emgu.CV.CvEnumLineType
Type of the line
See Also