Click or drag to resize

QRCodeDetectorDecode Method

http://www.emgu.com
Decodes QR code in image once it's found by the detect() method.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public string Decode(
	IInputArray image,
	IInputArray points,
	IOutputArray straightQrcode = null
)

Parameters

image
Type: Emgu.CVIInputArray
grayscale or color (BGR) image containing QR code.
points
Type: Emgu.CVIInputArray
Quadrangle vertices found by detect() method (or some other algorithm).
straightQrcode (Optional)
Type: Emgu.CVIOutputArray
The optional output image containing rectified and binarized QR code

Return Value

Type: String
UTF8-encoded output string or empty string if the code cannot be decoded.
See Also