Teeth Segmentation from a given X-ray image
조회 수: 5 (최근 30일)
이전 댓글 표시
from a given dental X-ray image, how to seperate the upper and lower jaws? Additionally, how to segment each tooth?
댓글 수: 2
답변 (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);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/177507/image.jpeg)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Biomedical Imaging에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!