Question 3/5 fast.ai v4 lecture 6

In Computer Vision, how are the dimensions of an image given? Does the first dimension correspond to width or height?

Answer

In Computer Vision, they do it the other way around to numpy and pytorch. The first dimension is width and the second height (where in numpy we have rows by columns). Hence Full HD is 1920x1080, but the screens are wider than they are tall.

Relevant part of lecture