0

I'm trying to separate every single teeth in radiograph image. First, at upper jaw, I want to separate every single teeth.

I have the image of upper jaw. And then I make it into binary(thresholding) image, and I make the plot of the image matrix(m n) which I make the mean of the colomns : this the plot coding :

[m1, n1]=size(maxila); %maxila is the name of upper jaw image
Po1=0:1:n1-1;
Vmean1=mean(maxila,1);
Figure
plot(Po1,vmean1);

Okay, after that the plot show up, and I want to get the every mean point which mean go to zero(0) and plot it, and that will be the plot to separate the teeth.. Some help please... Sincerely

4

1 回答 1

0

怎么样

sep = find( mean( maxila, 1 ) == 0 ); % gives you the column indices of seperations
于 2013-01-28T18:49:58.930 回答