Raspberry Pi - Camera Module
Given the following Python code snippet on Raspberry Pi, what will be printed if the image contains a QR code with data 'Hello123'?
from pyzbar.pyzbar import decode
import cv2
image = cv2.imread('qrcode.png')
decoded_objects = decode(image)
for obj in decoded_objects:
print(obj.data.decode('utf-8'))