| QRCodeDetectorDetectMulti Method |
Detects QR codes in image and returns the quadrangles containing the codes.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public bool DetectMulti(
InputArray img,
out Point2f[] points
)
Public Function DetectMulti (
img As InputArray,
<OutAttribute> ByRef points As Point2f()
) As Boolean
public:
bool DetectMulti(
InputArray^ img,
[OutAttribute] array<Point2f>^% points
)
member DetectMulti :
img : InputArray *
points : Point2f[] byref -> bool
Parameters
- img
- Type: OpenCvSharpInputArray
grayscale or color (BGR) image containing (or not) QR code. - points
- Type: OpenCvSharpPoint2f
Output vector of vertices of the minimum-area quadrangle containing the codes.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:OpenCvSharp.QRCodeDetector.DetectMulti(OpenCvSharp.InputArray,OpenCvSharp.Point2f[]@)"]
See Also