1 / 8
Images
80 likes | 265 Vues
Images. Loading an image: a = imread(‘picture.jpg’); imshow(a);. Images. Image (=matrix) size: size(a): 384 512 3. R G B. 384. 512. Images. Color image: 3D Matrix of RGB planes. Images. Show RED plane: a(:,:,2:3) = 0; imshow(a);. Images. Show GREEN plane: a(:,:,[1 3]) = 0;
Télécharger la présentation
Images
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
Images Loading an image: a = imread(‘picture.jpg’); imshow(a);
Images Image (=matrix) size: size(a): 384 512 3 R G B 384 512
Images Color image: 3D Matrix of RGB planes
Images Show RED plane: a(:,:,2:3) = 0; imshow(a);
Images Show GREEN plane: a(:,:,[1 3]) = 0; imshow(a);
Images Show BLUE plane: a(:,:,1:2) = 0; imshow(a);
Images Advanced: Shuffling columns rn = rand(1,512); [rn1,i] = sort(rn); b = a(:,i,:); imshow(b);
More Related