/mhe-analysis

Primary LanguageJupyter Notebook

MHE Analysis

This project is for the analysis of CT data obtained by Yeager et al. at Los Alamos National Lab (LANL). This CT data consists of 2D image slices showing idox crystals within a binder material. The goal of this analysis is to develop a procedure for segmenting the IDOX crystals from each other and from the binder material.

Questions should be directed to C. Gus Becker (GitHub/GitLab: @cgusb).

Procedure description

Segmentation procedure operates on the 2D slices. Current approach will be to adapt the procedure published by Wälhby et al. 2004* as follows:

  • (A) Smooth image.
  • (B) Calculate gradient magnitude of A.
  • (C) Calculate foreground seeds found by extended h-maxima transformation.
  • (D) Calculate background seeds found by extended h-maxima transformation of the gradient magnitude image followed by removal of small components.
  • (E) Calculate seeded watershed segmentation.
  • (F) Merge seeded objects based on edge strength. Poorly focused objects are also removed in this step.
  • (G) Calculate distance transform of the objects in the segmented image. The brighter the intensity the further the pixel is from the background or a neighbouring object.
  • (H) Calculate watershed segmentation of the distance transform before merging.
  • (I) Combine segmentation results based on intensity, edge and shape information.
* Wälhby, C., Sintorn, I. M., Erlandsson, F., Borgefors, G., & Bengtsson, E. (2004). Combining intensity, edge and shape information for 2D and 3D segmentation of cell nuclei in tissue sections. Journal of Microscopy, 215(1), 67–76. https://doi.org/10.1111/J.0022-2720.2004.01338.X

Change log

2024-05-08

  • Add NB 44 for creating frames of a slice-through animation of a sample.
  • Add Change Log to README