Count the no of Black pixels in the image .

21 views (last 30 days)
MJ Thangaraj
MJ Thangaraj on 23 Apr 2016
Commented: Walter Roberson on 23 Apr 2016
I get the Image after processing using the code below. Now i have to find the black pixels that are cracks
%%Load Image
i=imread('coor.jpg');
imshow(i);
%Image Adjust
adj=imadjust(i,stretchlim(i));
imshow(adj);
%%Convert RGB to Gray
gry=rgb2gray(adj);
imshow(gry,[]);
%%Image segementation by thresholding
level=0.09;
thres=im2bw(gry,level);
imshow(thres);
% Image morphological operation
bw=bwmorph(thres,'clean',20);
imshow(bw);
%%End

Answers (1)

Walter Roberson
Walter Roberson on 23 Apr 2016
sum(bw(:) == 0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!