I'm using this code with python and opencv for displaying about 100 images. But imshow function throws an error.
Here is my code:
nn=[]
for j in range (187) :
nn.append(j+63)
images =[]
for i in nn:
path = "02291G0AR\\"
n1=cv2.imread(path +"Bi000{}".format(i))
images.append(n1)
cv2.imshow(images)
And here is the error:
imshow() missing required argument 'mat' (pos 2)
imshow()can display only one image - to display many images you have to useimshow()many times OR you can concatenate all images into one image and then display it. But it would be big image so you would have to resize it to make it smaller.