Method DetectMarkersWithConfidence
- Namespace
- OpenCvSharp.Aruco
- Assembly
- OpenCvSharp.dll
DetectMarkersWithConfidence(InputArray, out Point2f[][], out int[], out float[], out Point2f[][])
Marker detection with confidence computation.
public void DetectMarkersWithConfidence(InputArray image, out Point2f[][] corners, out int[] ids, out float[] markersConfidence, out Point2f[][] rejectedImgPoints)
Parameters
imageInputArrayinput image
cornersPoint2f[][]vector of detected marker corners. For each marker, its four corners are provided.
idsint[]vector of identifiers of the detected markers.
markersConfidencefloat[]contains the normalized confidence [0;1] of the markers' detection.
rejectedImgPointsPoint2f[][]contains the imgPoints of those squares whose inner code has not a correct codification.