How to find out the dimensions of an image
I am using this python code to read this image file
image = img.imread('/content/drive/My Drive/Colab Notebooks/rusty.png')
How do I determine the dimension of this image array?
I printed out len(image), len(image[0])
and len(image[0][0])
Which probably shows what's the len of each submatrix...
Topic python
Category Data Science