├── README.txt ├── VesselEnhancementSegmentation.py ├── auxiliarymodules ├── AreaOfInterest.py ├── BasicOperations.py ├── ManipulationImage.py ├── MorphologicalOperations.py └── StructuringElements.py ├── evaluationmetrics ├── EvaluationMetrics.py └── ReportMetrics.py ├── images ├── inputs │ └── info.txt └── outputs │ └── info.txt ├── segmentation └── ThresholdingImage.py └── vesselenhancement └── TopHatTransform.py /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/README.txt -------------------------------------------------------------------------------- /VesselEnhancementSegmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/VesselEnhancementSegmentation.py -------------------------------------------------------------------------------- /auxiliarymodules/AreaOfInterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/auxiliarymodules/AreaOfInterest.py -------------------------------------------------------------------------------- /auxiliarymodules/BasicOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/auxiliarymodules/BasicOperations.py -------------------------------------------------------------------------------- /auxiliarymodules/ManipulationImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/auxiliarymodules/ManipulationImage.py -------------------------------------------------------------------------------- /auxiliarymodules/MorphologicalOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/auxiliarymodules/MorphologicalOperations.py -------------------------------------------------------------------------------- /auxiliarymodules/StructuringElements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/auxiliarymodules/StructuringElements.py -------------------------------------------------------------------------------- /evaluationmetrics/EvaluationMetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/evaluationmetrics/EvaluationMetrics.py -------------------------------------------------------------------------------- /evaluationmetrics/ReportMetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/evaluationmetrics/ReportMetrics.py -------------------------------------------------------------------------------- /images/inputs/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/images/inputs/info.txt -------------------------------------------------------------------------------- /images/outputs/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/images/outputs/info.txt -------------------------------------------------------------------------------- /segmentation/ThresholdingImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/segmentation/ThresholdingImage.py -------------------------------------------------------------------------------- /vesselenhancement/TopHatTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhmg/VesselEnhancementSegmentation/HEAD/vesselenhancement/TopHatTransform.py --------------------------------------------------------------------------------