Grain Model how to remove smaller grains
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a grain model which consists of lots of tiny grains and clusters of of larger grains. I am wondering how it is possible to separate the smaller grains from the larger grains like the example below
I plot my grains by reading in rectilinear coordinates via reading in an Amira file to Matlab. This lets me plot my material matrix but I have no idea how to go about separating the grains. Has anyone done something similar before? I would be more than happy to share my files if anyone can point me in the right direction.
Thanks :)
댓글 수: 0
답변 (3개)
Constantino Carlos Reyes-Aldasoro
2022년 6월 8일
A bit difficult to help more without the data but I think that your problem can be fixed by selecting your grains by the properties using ismember
Have a look and let us know if this solves your problem or not
Image Analyst
2022년 6월 8일
If you have a binary image of the grains, you can use bwareaopen or bwareafilt to extract grains of a certain size.
댓글 수: 2
Image Analyst
2022년 6월 8일
Do you have a labeled image? Or indexed image? It looks like you do because you have separate colors for them. If you do, you can do it.
Constantino Carlos Reyes-Aldasoro
2022년 6월 8일
Ok, I think now I understand your problem. I thought you had information on the grains themselves, but if you are starting with a grainy image, what you need to do is to filter the image. Take your original image (this one includes the title and labels as it is the one you sent)
Use a median filter like this
imagesc(medfilt3(MatGrid,[5 5 1]))
And that removes the small grains from the image.
참고 항목
카테고리
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!