Teeth Segmentation from a given X-ray image
显示 更早的评论
from a given dental X-ray image, how to seperate the upper and lower jaws? Additionally, how to segment each tooth?
2 个评论
Image Analyst
2014-4-24
How about posting an image?
christy tom
2015-6-24
编辑:christy tom
2015-6-24

xray image to be segmented...
回答(1 个)
Rushikesh Tade
2015-6-25
Try this code ,
clc;
clear all;
close all;
image_name='10.gif.jpg'; %%Change this if you have diff name
teeth_image=imread(image_name);
subplot(1,2,1)
imshow(teeth_image)
grayscale_teeth=rgb2gray(teeth_image);
segmented_teeth=im2bw(grayscale_teeth,0.4);
subplot(1,2,2)
imshow(segmented_teeth);

类别
在 帮助中心 和 File Exchange 中查找有关 Image Segmentation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!