Replies: 1 comment 1 reply
-
|
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.
-
import glob
import cv2 as cv
path = glob.glob('C:/Users/DELL/Desktop/Documents/Ritesh Sir/Pulses_Images/*.jpg')
cv_img = []
for img in path:
n = cv.imread(img)
cv_img.append(n)
cv.imshow(cv_img)
cv2.waitKey(0)
cv2.destroyAllWindows()
cv_img
Beta Was this translation helpful? Give feedback.
All reactions