Replies: 1 comment 1 reply
-
Instead of passing the complete list to the imshow function....iterate thru the list and pass the individual images to display. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
import glob
import cv2 as cv
path = glob.glob("C:/Users/DELL/Desktop/Documents/Ritesh Sir/Pulses_Images/.")
cv_img = []
for img in path:
n = cv.imread(img)
cv_img.append(n)
cv.imshow( cv_img)
cv2.waitKey(0)
cv2.destroyAllWindows()
Beta Was this translation helpful? Give feedback.
All reactions