FaceInvokeDrawFacemarks Method |
http://www.emgu.com
Utility to draw the detected facial landmark points.
Namespace:
Emgu.CV.Face
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void DrawFacemarks(
IInputOutputArray image,
IInputArray points,
MCvScalar color
)
Public Shared Sub DrawFacemarks (
image As IInputOutputArray,
points As IInputArray,
color As MCvScalar
)
public:
static void DrawFacemarks(
IInputOutputArray^ image,
IInputArray^ points,
MCvScalar color
)
static member DrawFacemarks :
image : IInputOutputArray *
points : IInputArray *
color : MCvScalar -> unit
Parameters
- image
- Type: Emgu.CVIInputOutputArray
The input image to be processed. - points
- Type: Emgu.CVIInputArray
Contains the data of points which will be drawn. - color
- Type: Emgu.CV.StructureMCvScalar
The color of points in BGR format
See Also