Say I have a picture titled sunset.jpg stored at the following URL on google cloud storage gs://example-bucket/testing_data
so the full URL for the image is:
gs://example-bucket/testing_data/sunset.jpg
If I then do something like:
image = cv2.imread('gs://example-bucket/testing_data/sunset.jpg')
But while this doesn't crash or fail no image is loaded. How do I access/provide the right URL to cv2.imread to do this??