Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ docs/_build
**/test_data
**/testing_data
**/sample_data
**/ct_scan_paths
**/test_results

# Ignore images
Expand Down
14 changes: 7 additions & 7 deletions bin/C2C
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
### AAA Pipeline

def AAAPipelineBuilder(path, args):
pipeline = InferencePipeline(
[
AxialCropperPipelineBuilder(path, args),
# build the “crop” pipeline and pull out its step‐classes
crop_pipeline = AxialCropperPipelineBuilder(path, args)
# now concatenate its classes with the AAA steps
classes = crop_pipeline.inference_classes + [
aaa.AortaSegmentation(),
aaa.AortaDiameter(),
aaa.AortaMetricsSaver()
]
)
return pipeline
aaa.AortaMetricsSaver(),
]
return InferencePipeline(classes)

def MuscleAdiposeTissuePipelineBuilder(args):
pipeline = InferencePipeline(
Expand Down
Loading