Teeth Segmentation from a given X-ray image

9 vues (au cours des 30 derniers jours)
Prashit Mehta
Prashit Mehta le 24 Avr 2014
from a given dental X-ray image, how to seperate the upper and lower jaws? Additionally, how to segment each tooth?
  2 commentaires
Image Analyst
Image Analyst le 24 Avr 2014
How about posting an image?
christy tom
christy tom le 24 Juin 2015
Modifié(e) : christy tom le 24 Juin 2015
xray image to be segmented...

Connectez-vous pour commenter.

Réponses (1)

Rushikesh Tade
Rushikesh Tade le 25 Juin 2015
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);

Catégories

En savoir plus sur Biomedical Imaging dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by