| """ |
| The following is a simple example algorithm. |
| |
| It is meant to run within a container. |
| |
| To run it locally, you can call the following bash script: |
| |
| ./test_run.sh |
| |
| This will start the inference and reads from ./test/input and outputs to ./test/output |
| |
| To save the container and prep it for upload to Grand-Challenge.org you can call: |
| |
| ./save.sh |
| |
| Any container that shows the same behavior will do, this is purely an example of how one COULD do it. |
| |
| Happy programming! |
| """ |
| from pathlib import Path |
|
|
| from glob import glob |
| from two_stage_inference import inference_one_image |
| import SimpleITK |
| import numpy |
|
|
| INPUT_PATH = Path("/input") |
| OUTPUT_PATH = Path("/output") |
| RESOURCE_PATH = Path("resources") |
|
|
|
|
| def run(): |
| _show_torch_cuda_info() |
| output_path = OUTPUT_PATH / "images/pelvic-fracture-ct-segmentation" |
| inference_one_image(input_dir=load_image_dir(location=INPUT_PATH / "images/pelvic-fracture-ct"), |
| output_dir=output_path) |
|
|
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| return 0 |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| def load_image_dir(*, location): |
| |
| input_files = glob(str(location / "*.mha")) |
| result = input_files[0] |
|
|
| |
| return result |
|
|
|
|
|
|
| def write_array_as_image_file(*, location, array): |
| location.mkdir(parents=True, exist_ok=True) |
|
|
| |
| suffix = ".mha" |
|
|
| image = SimpleITK.GetImageFromArray(array) |
| SimpleITK.WriteImage( |
| image, |
| location / f"output{suffix}", |
| useCompression=True, |
| ) |
|
|
|
|
| def _show_torch_cuda_info(): |
| import torch |
|
|
| print("=+=" * 10) |
| print("Collecting Torch CUDA information") |
| print(f"Torch CUDA is available: {(available := torch.cuda.is_available())}") |
| if available: |
| print(f"\tcuda version: {torch.version.cuda}") |
| print(f"\tnumber of devices: {torch.cuda.device_count()}") |
| print(f"\tcurrent device: { (current_device := torch.cuda.current_device())}") |
| print(f"\tproperties: {torch.cuda.get_device_properties(current_device)}") |
|
|
| print("=+=" * 10) |
|
|
|
|
| if __name__ == "__main__": |
| raise SystemExit(run()) |
|
|