CS7321 Winter 1998

PS0 Solution by George Magiros



 
Input Image Operations Output Image
mug.rgb  (color)
(saved using capture from SGI)
 Converted to TIFF using dmconvert on SGI mug.gif
ian.rgb  (color)
(saved from web)
 Converted to TIFF using dmconvert on SGI ian.gif
mug.gif  Convert form TIFF to GRAYSCALE image using MATLAB function rbg2gray mugbw.gif
ian.gif  Convert form TIFF to GRAYSCALE image using MATLAB function rbg2gray ianbw.gif
mugbw.gif  MATLAB function:
E = B(25:220,130:320)
mugb.gif
ianbw.gif  MATLAB function:
F = D(5:119,80:192)
ianb.gif
 Other Play
example1.m
A = imread('ianbw.tiff');
imhist(A);
example2.m
B = imread('mugbw.tiff');
image(B);
B = imread('mugbw.tiff');
bwmorph(B,'thicken',1);