how to remove artifacts in mri scan images
2 ビュー (過去 30 日間)
古いコメントを表示
I have an MRI image in which it contains artifacts and white labels,kindly tell how to remove these labels and artifacts,I have uploaded the image
回答 (1 件)
Image Analyst
2014 年 3 月 29 日
You can do this:
pureWhitePixels = grayImage == 255;
grayImage(pureWhitePixels) = 0;
How good is that algorithm? OK but not super robust. If there are any pixels inside the head, then is will blacken those too. Better is to first identify the head, then to blacken everything outside that. Even that will have a problem if there is some annotation that overlaps the head, because those white pixels would remain. To get rid of that you need to determine if it's annotation or part of the head.
Best is to not even use the annotated image and to use the image itself, without any annotation. Why is that not available? Or is it? If you have a dicom or proprietary format image file, the image pixel data alone should be available.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!