Monthly Archives: July 2010

Activity 5 – Image Enhancement Through Histogram Manipulation

The histogram of a certain image reports the frequency of pixel units having these certain range of values over the entire span of the image. It is basically a summary of how the color values are distributed throughout the entire … Continue reading

Posted in Uncategorized | Leave a comment

Activity4- Area Estimation

The general code which i made for getting the area of an arbitrary figure is: Img = imread(‘E:\186_activities\<filename>’); Img = im2bw(Img,0.8); //Countor detection [x,y] = follow(Img); row = size(Img,’r’) – y; col = x; //Finding the location of the object’s … Continue reading

Posted in Uncategorized | Leave a comment