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.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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