I have a TIFF stack representing 3-D grayscale imaging data of biomass char particles with support material. There are a total of 2016 2-D images, where each image slice is 2006 pixels by 2006 pixels. When you look at the full 3-D volumetric data, you will see elliptical particles (I want to keep them) and spherical support material (I want to remove them). I have attached a sample slice from the middle of the volumetric stack (i.e., Slice 1008 in the x-y plane, namely the top view).
I have tried numerous morphological operations (e.g., Otsu's Method, Opening, and Recursive Gaussian Filtering) and other tools (e.g., Hough Transform) to remove the undesired support material, but I notice that the tools remove regions from the desired elliptical particles. I have tried to apply both Machine Learning (e.g, Support Vector Machines) and Deep Learning (e.g., Convolutional Neural Networks) techniques by training and testing on the same image, which should correctly detect the undesired support material and allow me to subsequently remove it as a post-processing step. Unfortunately, I have not been able to remove only and all of the undesired support material and save the desired elliptical particles.
As you can see from the sample slice, there are a lot of issues with detecting and eventually removing the undesired spherical support material:
* Particles and support material are not exactly elliptical (particles) and spherical (support material) in shape.
* No well-defined edges on both the elliptical particles and spherical support material.
* Elliptical particles and spherical support material are not solid inside their structures.
* No overlap but touching between the elliptical particles and spherical support material.
* Elliptical particles and spherical support material appear and disappear as you move through all 2016 2-D slices of the 3-D volumetric data.
What are my options on automatically detecting and removing the spherical support material but keeping the elliptical particles?
I appreciate any feedback from the community.