how can i delete special shape in image?
2 ビュー (過去 30 日間)
古いコメントを表示
I have some mammography images and I want to delete rectangular shape in image, some of this images are attached here, can you help me or suggest any solution? thanks in advance.
0 件のコメント
採用された回答
その他の回答 (2 件)
Image Analyst
2016 年 10 月 18 日
First threshold to find super white things. Then use bwareafilt() to extract things larger than a certain size that you know to be the minimum. Then use imfill() to fill the holes, Finally use the binary image to zero out those pixels. Something like
binaryImage = grayImage > 240;
binaryImage = bwareafilt(binaryImage, [10000, inf]);
binaryImage = imfill(binaryImage, 'holes');
newGrayImage = grayImage; % Initialize output image.
newGrayImage(binaryImage) = 0; % Zero out pixels
If you need to keep the big white triangle, then change inf to something smaller, or see if the blob touches the top and bottom border or something like that. If you end up with blobs inside the breast, then try changing the 240 threshold or the 10000 minimum size. If all that does not work, then you'll need to examine each blob for how many vertices it has, which could be tricky. I've attached a shape recognition demo for "perfect" shapes, but with noise and "real" shapes, it's not clear if a rectangular shape will really have 4 vertices, so you may have to do more sophisticated shape analysis, such as smoothing the shape outlines (demo attached) before examining for the number of vertices.
4 件のコメント
Image Analyst
2016 年 10 月 19 日
Then do what I said and simply erase it without erasing any of the breast or cropping it. Have you tried what I said yet??
Chaya N
2016 年 10 月 18 日
Before you write a (somewhat complicated) piece of code to remove these rectangular areas, the question I would ask is this: Do these areas appear in the same spot on all your images?
Radiological images are usually automatically numbered and generally they appear in the same location on most images (one of the corners). If so, the simplest way of removing them would be to look at the relevant pixels and simply change them to zeros by brute force. All this requires is a very small and very simple script! If not, the previous answer should help. Good luck!
2 件のコメント
Chaya N
2016 年 10 月 18 日
If the tags/numbers are in the top right or top left corners, you could flip them so all the images either have tags in the top right or the top left corner. This also helps to have uniform images if you have to process them further later on.
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!