Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Image to Matrix (various size boxes)

Status
Not open for further replies.

danneh

Computer
Joined
Feb 18, 2009
Messages
1
Location
GB
Hi all,

As my first post on the forums, I'd like to say Hi to all and thank you for your suggestions. I need to write a program which reads in an image (say bacteria) as a matrix, convert it to black and white and then sum up all the 1's (white pixels). Currently, Ive managed to do this, but what is also required is different size boxes (matrix cells) for analysis purposes (quite like a box-counting method). When I imread('surface0_2um.bmp') I have cropped off the unnecessary pixels I do not require. Therefore MATLAB saves it as a 600x400 matrix, where each pixel represents a cell. How can I make it so each cell is, say, 10x10 or 25x25 therefore the number of cells will change. My code at the moment is:

[I,map]=imread('surface0_2um.bmp');
I2=imcrop(I,[0 0 600 400]);
I=I2;
background=imopen(I,strel('disk',40));
I2=imsubtract(I,background);
I3=imadjust(I2);
level=graythresh(I3);
bw=im2bw(I3,level);
bw=not(bw);
imshow(bw)
whos
sum(sum(bw))

Kind regards,

Danny
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top