Hi@akhtar,
Yes, you can read your image in your python code. For that you have to use cv2 module in your code. You can use the below given code for that.
import cv2
photo = cv2.imread('img.png')
cv2.imshow('My Photo', photo)
cv2.waitKey()
cv2.destroyAllWindows()
Hope this will help you.
Thank You