Problem in segmenting MRI volumetric data using kmeans.
古いコメントを表示
I have segmented 2D mri images in .jpg format using kmeans, fuzzy C means, region grow, active contour snake. Now i want to segment DICOM image, as these image are 16 bit with 65536 intensities and non of these method is working on 3D volumetric data (28 slices), only multi-threshold value can segment the image, how can i apply the kmeans algorithms on volumetric data, i am adding my code of threshold segmentation.
lb = 5000; % min-threshold
ub = 7500; % max-threshold
mriAdjust1(mriAdjust1<=lb) = 0;
mriAdjust1(mriAdjust1>=ub) = 0;
bw1 = mriAdjust1>0;
4 件のコメント
Image Analyst
2015 年 11 月 29 日
How many features are you using, and what are they? Like blob intensity and blob circularity or whatever.....
Muhammad Shoaib
2015 年 12 月 15 日
Image Analyst
2015 年 12 月 15 日
Have you segmented your image into separate blobs yet? And then you got all their intensities using regionprops()? What have you done so far? How are you defining your blobs?
Muhammad Shoaib
2015 年 12 月 16 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Medical Physics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!