summaryrefslogtreecommitdiff
path: root/3176/CH6/EX6.7/Ex6_7.sce
blob: 3ddf5f862697960171ba9646d7fd71e18b756b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//Ex6_7 : 
//Computing Color Image Components.

// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods

clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
Color=imread("Ex6_7.tif");
Color=imresize(Color,0.5);
[nr nc]=size(Color);

figure,ShowColorImage(Color,'Gray Image');
title('Original Image');


Slice_Image=[];

for i=1:nr
    for j=1:nc                   
           Slice_Image(i,j,1)=255-Color(i,j,1);
           Slice_Image(i,j,2)=255-Color(i,j,2);
           Slice_Image(i,j,3)=255-Color(i,j,3);         
   end
end

ShowColorImage(Slice_Image,'RGB Image');;
title('RGB Mapped image');