Raspberry Pi - Camera Module
What is the error in the following Raspberry Pi Python code for reading a QR code?
from pyzbar.pyzbar import decode
import cv2
image = cv2.imread('qrcode.png')
result = decode('qrcode.png')
print(result)