What are the 3 dimensions of an RGB image in MATLAB?
Posted
by Runner
on Stack Overflow
See other posts from Stack Overflow
or by Runner
Published on 2010-04-10T03:22:18Z
Indexed on
2010/04/10
4:03 UTC
Read the original article
Hit count: 294
[r,c,d] = size(rgbImage); %# Get the image dimensions
What does r,c,d
stand for here?
© Stack Overflow or respective owner