| QRCodeDetectorDetect Method |
Detects QR code in image and returns the quadrangle containing the code.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public bool Detect(
InputArray img,
out Point2f[] points
)
Public Function Detect (
img As InputArray,
<OutAttribute> ByRef points As Point2f()
) As Boolean
public:
bool Detect(
InputArray^ img,
[OutAttribute] array<Point2f>^% points
)
member Detect :
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 code.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:OpenCvSharp.QRCodeDetector.Detect(OpenCvSharp.InputArray,OpenCvSharp.Point2f[]@)"]
See Also