I have an image "felix.png" (280x280).
and I'm converting this image to digital matrix:
from PIL import Image
from numpy import array
img = Image.open('felix.png')
arr = array(img)
the shape of this array is (280,280,3) and I wonder why each pixel is represented with 3 dimensional array?
for example arr[0][0] is [255,255,255]...