ArucoInvokeDrawDetectedCornersCharuco Method |
http://www.emgu.com
Draws a set of Charuco corners
Namespace:
Emgu.CV.Aruco
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void DrawDetectedCornersCharuco(
IInputOutputArray image,
IInputArray charucoCorners,
IInputArray charucoIds,
MCvScalar cornerColor
)
Public Shared Sub DrawDetectedCornersCharuco (
image As IInputOutputArray,
charucoCorners As IInputArray,
charucoIds As IInputArray,
cornerColor As MCvScalar
)
public:
static void DrawDetectedCornersCharuco(
IInputOutputArray^ image,
IInputArray^ charucoCorners,
IInputArray^ charucoIds,
MCvScalar cornerColor
)
static member DrawDetectedCornersCharuco :
image : IInputOutputArray *
charucoCorners : IInputArray *
charucoIds : IInputArray *
cornerColor : MCvScalar -> unit
Parameters
- image
- Type: Emgu.CVIInputOutputArray
image input/output image. It must have 1 or 3 channels. The number of channels is not altered. - charucoCorners
- Type: Emgu.CVIInputArray
vector of detected charuco corners - charucoIds
- Type: Emgu.CVIInputArray
list of identifiers for each corner in charucoCorners - cornerColor
- Type: Emgu.CV.StructureMCvScalar
color of the square surrounding each corner
See Also