Viewing one layer of a pyramid image Python -
i'm trying view second largest layer pyramid image has been created. finding lots of tutorials on how create pyramid images, not info on how view layers of pre-made image. trying use cv2 , matplotlib view image, getting distortion 1 of image edges. distortion looks white noise on tv screen.
this code using try , view image:
import matplotlib.pyplot plt import cv2 img = cv2.imread('test.tif') plt.imshow(img) plt.show() the largest image layer 5367 (width) 3339 (height) pixels. suggestions on how go viewing these images appreciated!
Comments
Post a Comment