We know that each pixel i in the input image I has rgb colors. My question is how to store them in a 3-vector Ii. Each color is being represented using a 64-bit floating-point number scaled to between 0 and 1.
Prashant Kumar answered .
2025-11-20
R = reshape(I(:,:,1),[],1); G = reshape(I(:,:,2),[],1); B = reshape(I(:,:,3),[],1);
Now if you want them all together in a 3 column vector:
V3 = reshape(A(:),[],3) % R is first col, G is second col, B is third.