MATLAB: What does imsize = width * height means

#imagesize #height #width #dimension

Does it mean the image size can be obtained by multiplying the height and width? Will it get a matrix and/or a 2D image?
Since the matlab line above this is [height,width,~] = size(im); And the ~ variable means the dimensions of an image. Correct me if I am wrong. Thanks!

Best Answer

imsize = width * height would get you a scalar telling you how many elements there are in a 2D subset of the im array. It will not in itself generate a matrix -- just calculate the memory requirements for a matrix.
Related Question