Greetings everyone,
Before moving forward with a larger dataset, I would greatly appreciate expert feedback on my approach to the automated pipeline I’m developing for visceral fascia segmentation from abdominal CT scans.
Background: The visceral fascia, which is the fascial border enclosing internal organs and visceral fat in the abdominal cavity, needs to be automatically recognized and segmented. The objective is accurate (Dice >0.75) and quick (<2 min per patient) segmentation for clinical research.
Present Methodology: After segmenting the CT scan into different tissue types (skeletal muscle, visceral fat/organs, subcutaneous fat, and background), my pipeline extracts the visceral fascia boundary in the manner described below:
Separate the organ/visceral fat area (Label 3).
To slightly reduce the area, use binary erosion with two iterations.
Deduct the original mask from the eroded one: Visceral_region - eroded_region = fascia_boundary
This creates a thin boundary layer around the internal organs
Analysis Objectives:
The main goal is to analyze fascial volume and morphology in a population of young adults by automatically extracting and quantifying the visceral fascia boundary from abdominal CT scans.
Particular Data to Be Extracted:
Each patient’s visceral fascia boundary volume (cm³).
Measurements of the thickness and surface area of the face.
Fascia’s spatial distribution surrounding particular organ areas.
Variability in fascial anatomy between patients.
Final Outcome:
A fully automated, validated pipeline that produces CT scans with clinically acceptable accuracy (Dice >0.75) in less than two minutes per patient
Visceral fascia 3D segmentation masks
Quantitative measurements (surface area, volume)
Visual depictions (2D slices, 3D surface renderings)
Expert Questions:
-
Anatomical correctness: Is this definition of “visceral fascia” suitable for studies involving medical imaging? Is there another fascial layer I should be focusing on?
-
Methodology: Would edge detection algorithms (Sobel, Canny) or morphological gradient operators be better suited for boundary extraction, or is binary erosion (2 iterations) a better option?
-
Validation criteria: For fascia segmentation, what Dice coefficient threshold is deemed clinically acceptable? Should I be looking at any other metrics?
-
Clinical relevance: Should I be aware of any published literature references or established medical imaging standards for automated fascia segmentation?
Challenges:
What I’ve attempted:
used binary erosion (2 iterations) for boundary extraction after testing several fascia definitions (subcutaneous, deep, and visceral) and deciding on visceral fascia. successfully represented with accurate anatomical proportions in 3D Slicer.
What Prevents Advancement:
Anatomical uncertainty: Expert confirmation is required to determine whether the visceral fat boundary accurately depicts “visceral fascia” in a clinical setting.
Data problems: only one patient processes successfully, while 19/20 patients fail with DICOM orientation errors.
Lack of validation metrics: No ground truth for calculating the dice coefficient; unclear of acceptable alternatives
Methodology question: Should I use different algorithms or is binary erosion the standard for medical fascia extraction?
