Open large size image

Hello. I wanted to open an image from GoPro using opencv in python. why does the image not showing the actual image from the GoPro.

how can I use the large size of an image in opencv. Thank you.

…and would you share with us, how did you try to open the image? In what mode? What were you expecting and what did you get?

import cv2

image = cv2.imread(‘image/image.jpg’)
cv2.imshow(‘result’, image)
cv2.waitKey(0)

i’m using this command. i’m expecting the original .jpg image.

what you see is what would be shown by any program that uses libjpeg

we’d like to see the image you expected to see.

and the original image file please. GoPro probably did something funky with it.

the image attached is the expected image that I would like to see. Thank you

I suspect that you’ll need namedWindow("result", cv2.WINDOW_NORMAL)

it’s working! Thank you very much :slight_smile: