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

How about posting an image?
christy tom
christy tom 2015년 6월 24일
편집: christy tom 2015년 6월 24일
xray image to be segmented...

댓글을 달려면 로그인하십시오.

답변 (1개)

Rushikesh Tade
Rushikesh Tade 2015년 6월 25일

0 개 추천

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);

질문:

2014년 4월 24일

답변:

2015년 6월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by