RGB images 3 dimensional??

18 views (last 30 days)
ABTJ
ABTJ on 3 May 2020
Commented: Stephen23 on 3 May 2020
What is the dimension size of RGB image matrix? Are they three dimensional or two dimensional?

Accepted Answer

KSSV
KSSV on 3 May 2020
RGB image will be a 3D matrix.....it will be of size m*n*3. It has three color channels. You can seperate them using:
I = imread("MyColorImage") ;
[m,n,p] = size(I) ; % note p = 3
R = I(:,:,1) ; % Red
G = I(:,:,2) ; % Green
B = I(:,:,3) ; % Blue

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Products


Release

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!