Is PIL\'s image coordinate indexing reversed? Is it indexed as image[column, row]?
I have an image which I open using PIL (pillow)
img = Image.open(\
PIL indexes images in Cartesian co-ordinates. So it is indexed as img[col, row].
img[col, row]