├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── publish_docker.yml │ ├── publish_pypi.yml │ ├── test_cli.yml │ ├── tests_development.yml │ └── tests_release.yml ├── .gitignore ├── .readthedocs.yaml ├── CITATION.cff ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── assets │ ├── acr_ghosting.jpg │ └── snr.jpg ├── make.bat └── source │ ├── _static │ ├── ghost.jpg │ └── ibnalhaytham.jpeg │ ├── acquisitionrequirements.html │ ├── acquisitionrequirements.rst │ ├── conf.py │ ├── contributors.rst │ ├── getinvolved.rst │ ├── gettingstarted.rst │ ├── hazenlib.rst │ ├── hazenlib.tasks.acr.rst │ ├── hazenlib.tasks.magnet.rst │ ├── index.rst │ ├── inputrequirements.html │ ├── inputrequirements.rst │ ├── modules.rst │ ├── references.bib │ ├── taskdescriptions.html │ └── taskdescriptions.rst ├── hazen-app ├── hazenlib ├── ACRObject.py ├── HazenTask.py ├── __init__.py ├── _version.py ├── data │ ├── relaxometry │ │ ├── Plate4_T1_signed │ │ ├── Plate4_T2 │ │ ├── Plate5_T1_signed │ │ └── Plate5_T2 │ └── relaxometry_params.py ├── exceptions.py ├── logger.py ├── tasks │ ├── __init__.py │ ├── acr_geometric_accuracy.py │ ├── acr_ghosting.py │ ├── acr_slice_position.py │ ├── acr_slice_thickness.py │ ├── acr_snr.py │ ├── acr_spatial_resolution.py │ ├── acr_uniformity.py │ ├── ghosting.py │ ├── relaxometry.py │ ├── slice_position.py │ ├── slice_width.py │ ├── snr.py │ ├── snr_map.py │ ├── spatial_resolution.py │ └── uniformity.py └── utils.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── tests ├── __init__.py ├── data ├── acr │ ├── GE │ │ ├── 0.dcm │ │ ├── 1.dcm │ │ ├── 10.dcm │ │ ├── 2.dcm │ │ ├── 3.dcm │ │ ├── 4.dcm │ │ ├── 5.dcm │ │ ├── 6.dcm │ │ ├── 7.dcm │ │ ├── 8.dcm │ │ └── 9.dcm │ ├── Siemens │ │ ├── 0.dcm │ │ ├── 1.dcm │ │ ├── 10.dcm │ │ ├── 2.dcm │ │ ├── 3.dcm │ │ ├── 4.dcm │ │ ├── 5.dcm │ │ ├── 6.dcm │ │ ├── 7.dcm │ │ ├── 8.dcm │ │ └── 9.dcm │ ├── Siemens2 │ │ ├── 0.dcm │ │ ├── 1.dcm │ │ ├── 10.dcm │ │ ├── 2.dcm │ │ ├── 3.dcm │ │ ├── 4.dcm │ │ ├── 5.dcm │ │ ├── 6.dcm │ │ ├── 7.dcm │ │ ├── 8.dcm │ │ └── 9.dcm │ └── SiemensMTF │ │ ├── 0.dcm │ │ ├── 1.dcm │ │ ├── 10.dcm │ │ ├── 2.dcm │ │ ├── 3.dcm │ │ ├── 4.dcm │ │ ├── 5.dcm │ │ ├── 6.dcm │ │ ├── 7.dcm │ │ ├── 8.dcm │ │ └── 9.dcm ├── ge │ └── ge_eFilm.dcm ├── ghosting │ ├── GHOSTING │ │ ├── IM_0001.dcm │ │ └── axial_philips_ghosting.dcm │ └── PE_COL_PHANTOM_BOTTOM_RIGHT │ │ └── PE_COL_PHANTOM_BOTTOM_RIGHT.IMA ├── relaxometry │ ├── T1 │ │ ├── Template_plate5_T1_signed │ │ ├── site1_20200218 │ │ │ └── plate5 │ │ │ │ ├── 20530224 │ │ │ │ ├── 20530272 │ │ │ │ ├── 20530320 │ │ │ │ ├── 20530368 │ │ │ │ ├── 20530416 │ │ │ │ └── 20530464 │ │ ├── site2_20180925 │ │ │ └── plate5 │ │ │ │ ├── 77189804 │ │ │ │ ├── 77189870 │ │ │ │ ├── 77189936 │ │ │ │ ├── 77190002 │ │ │ │ ├── 77190068 │ │ │ │ └── 77190134 │ │ ├── site3_ge │ │ │ ├── plate4 │ │ │ │ ├── Z675 │ │ │ │ ├── Z679 │ │ │ │ ├── Z682 │ │ │ │ ├── Z837 │ │ │ │ ├── Z839 │ │ │ │ └── Z842 │ │ │ └── plate5 │ │ │ │ ├── Z677 │ │ │ │ ├── Z678 │ │ │ │ ├── Z683 │ │ │ │ ├── Z838 │ │ │ │ ├── Z840 │ │ │ │ └── Z844 │ │ ├── site4_philips │ │ │ ├── plate4 │ │ │ │ ├── IM_0604 │ │ │ │ ├── IM_0614 │ │ │ │ ├── IM_0624 │ │ │ │ ├── IM_0634 │ │ │ │ ├── IM_0644 │ │ │ │ └── IM_0654 │ │ │ └── plate5 │ │ │ │ ├── IM_0603 │ │ │ │ ├── IM_0613 │ │ │ │ ├── IM_0623 │ │ │ │ ├── IM_0633 │ │ │ │ ├── IM_0643 │ │ │ │ └── IM_0653 │ │ └── site5_philips_3T │ │ │ ├── plate4 │ │ │ ├── IM_0038 │ │ │ ├── IM_0054 │ │ │ ├── IM_0070 │ │ │ ├── IM_0086 │ │ │ ├── IM_0485 │ │ │ └── IM_0599 │ │ │ └── plate5 │ │ │ ├── IM_0037 │ │ │ ├── IM_0053 │ │ │ ├── IM_0069 │ │ │ ├── IM_0085 │ │ │ ├── IM_0484 │ │ │ └── IM_0598 │ └── T2 │ │ ├── Template_plate4_T2 │ │ ├── site1_20200218 │ │ └── plate4 │ │ │ ├── 20528529 │ │ │ ├── 20528577 │ │ │ ├── 20528625 │ │ │ ├── 20528673 │ │ │ ├── 20528721 │ │ │ ├── 20528769 │ │ │ ├── 20530528 │ │ │ ├── 20530576 │ │ │ ├── 20530624 │ │ │ ├── 20530672 │ │ │ ├── 20530720 │ │ │ ├── 20530768 │ │ │ ├── 20530816 │ │ │ ├── 20530864 │ │ │ ├── 20530912 │ │ │ ├── 20530960 │ │ │ ├── 20531008 │ │ │ ├── 20531056 │ │ │ ├── 20531104 │ │ │ ├── 20531152 │ │ │ ├── 20531200 │ │ │ ├── 20531248 │ │ │ ├── 20531296 │ │ │ ├── 20531344 │ │ │ ├── 20531392 │ │ │ ├── 20531440 │ │ │ ├── 20531488 │ │ │ ├── 20531536 │ │ │ ├── 20531584 │ │ │ ├── 20531632 │ │ │ ├── 20531680 │ │ │ └── 20531728 │ │ ├── site3_ge │ │ ├── plate4 │ │ │ ├── Z815 │ │ │ ├── Z816 │ │ │ ├── Z820 │ │ │ ├── Z822 │ │ │ ├── Z826 │ │ │ ├── Z827 │ │ │ ├── Z831 │ │ │ └── Z832 │ │ └── plate5 │ │ │ ├── Z812 │ │ │ ├── Z813 │ │ │ ├── Z814 │ │ │ ├── Z819 │ │ │ ├── Z823 │ │ │ ├── Z825 │ │ │ ├── Z830 │ │ │ └── Z834 │ │ ├── site4_philips │ │ ├── plate4 │ │ │ ├── IM_0439 │ │ │ ├── IM_0440 │ │ │ ├── IM_0441 │ │ │ ├── IM_0442 │ │ │ ├── IM_0443 │ │ │ ├── IM_0444 │ │ │ ├── IM_0445 │ │ │ ├── IM_0446 │ │ │ ├── IM_0447 │ │ │ ├── IM_0448 │ │ │ ├── IM_0449 │ │ │ ├── IM_0450 │ │ │ ├── IM_0451 │ │ │ ├── IM_0452 │ │ │ ├── IM_0453 │ │ │ ├── IM_0454 │ │ │ ├── IM_0455 │ │ │ ├── IM_0456 │ │ │ ├── IM_0457 │ │ │ ├── IM_0458 │ │ │ ├── IM_0459 │ │ │ ├── IM_0460 │ │ │ ├── IM_0461 │ │ │ ├── IM_0462 │ │ │ ├── IM_0463 │ │ │ ├── IM_0464 │ │ │ ├── IM_0465 │ │ │ ├── IM_0466 │ │ │ ├── IM_0467 │ │ │ ├── IM_0468 │ │ │ ├── IM_0469 │ │ │ └── IM_0470 │ │ └── plate5 │ │ │ ├── IM_0407 │ │ │ ├── IM_0408 │ │ │ ├── IM_0409 │ │ │ ├── IM_0410 │ │ │ ├── IM_0411 │ │ │ ├── IM_0412 │ │ │ ├── IM_0413 │ │ │ ├── IM_0414 │ │ │ ├── IM_0415 │ │ │ ├── IM_0416 │ │ │ ├── IM_0417 │ │ │ ├── IM_0418 │ │ │ ├── IM_0419 │ │ │ ├── IM_0420 │ │ │ ├── IM_0421 │ │ │ ├── IM_0422 │ │ │ ├── IM_0423 │ │ │ ├── IM_0424 │ │ │ ├── IM_0425 │ │ │ ├── IM_0426 │ │ │ ├── IM_0427 │ │ │ ├── IM_0428 │ │ │ ├── IM_0429 │ │ │ ├── IM_0430 │ │ │ ├── IM_0431 │ │ │ ├── IM_0432 │ │ │ ├── IM_0433 │ │ │ ├── IM_0434 │ │ │ ├── IM_0435 │ │ │ ├── IM_0436 │ │ │ ├── IM_0437 │ │ │ └── IM_0438 │ │ └── site5_philips_3T │ │ ├── plate4 │ │ ├── IM_0532 │ │ ├── IM_0533 │ │ ├── IM_0534 │ │ ├── IM_0535 │ │ ├── IM_0536 │ │ ├── IM_0537 │ │ ├── IM_0538 │ │ ├── IM_0539 │ │ ├── IM_0540 │ │ ├── IM_0541 │ │ ├── IM_0542 │ │ ├── IM_0543 │ │ ├── IM_0544 │ │ ├── IM_0545 │ │ ├── IM_0546 │ │ ├── IM_0547 │ │ ├── IM_0548 │ │ ├── IM_0549 │ │ ├── IM_0550 │ │ ├── IM_0551 │ │ ├── IM_0552 │ │ ├── IM_0553 │ │ ├── IM_0554 │ │ ├── IM_0555 │ │ ├── IM_0556 │ │ ├── IM_0557 │ │ ├── IM_0558 │ │ ├── IM_0559 │ │ ├── IM_0560 │ │ ├── IM_0561 │ │ ├── IM_0562 │ │ └── IM_0563 │ │ └── plate5 │ │ ├── IM_0500 │ │ ├── IM_0501 │ │ ├── IM_0502 │ │ ├── IM_0503 │ │ ├── IM_0504 │ │ ├── IM_0505 │ │ ├── IM_0506 │ │ ├── IM_0507 │ │ ├── IM_0508 │ │ ├── IM_0509 │ │ ├── IM_0510 │ │ ├── IM_0511 │ │ ├── IM_0512 │ │ ├── IM_0513 │ │ ├── IM_0514 │ │ ├── IM_0515 │ │ ├── IM_0516 │ │ ├── IM_0517 │ │ ├── IM_0518 │ │ ├── IM_0519 │ │ ├── IM_0520 │ │ ├── IM_0521 │ │ ├── IM_0522 │ │ ├── IM_0523 │ │ ├── IM_0524 │ │ ├── IM_0525 │ │ ├── IM_0526 │ │ ├── IM_0527 │ │ ├── IM_0528 │ │ ├── IM_0529 │ │ ├── IM_0530 │ │ └── IM_0531 ├── resolution │ ├── RESOLUTION │ │ └── ax_512_resolution.dcm │ ├── philips │ │ ├── IM-0004-0002.dcm │ │ └── non_dicom_test.jfif │ └── resolution_site01 │ │ └── 256_sag.IMA ├── slicepos │ ├── SLICEPOSITION │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0001.2018.04.12.14.33.12.605640.6030457.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0002.2018.04.12.14.33.12.605640.6030648.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0003.2018.04.12.14.33.12.605640.6030831.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0004.2018.04.12.14.33.12.605640.6031014.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0005.2018.04.12.14.33.12.605640.6031197.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0006.2018.04.12.14.33.12.605640.6031380.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0007.2018.04.12.14.33.12.605640.6030483.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0008.2018.04.12.14.33.12.605640.6030666.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0009.2018.04.12.14.33.12.605640.6030849.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0010.2018.04.12.14.33.12.605640.6031032.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0011.2018.04.12.14.33.12.605640.6031215.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0012.2018.04.12.14.33.12.605640.6031398.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0013.2018.04.12.14.33.12.605640.6030501.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0014.2018.04.12.14.33.12.605640.6030684.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0015.2018.04.12.14.33.12.605640.6030867.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0016.2018.04.12.14.33.12.605640.6031050.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0017.2018.04.12.14.33.12.605640.6031233.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0018.2018.04.12.14.33.12.605640.6031416.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0019.2018.04.12.14.33.12.605640.6030519.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0020.2018.04.12.14.33.12.605640.6030702.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0021.2018.04.12.14.33.12.605640.6030885.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0022.2018.04.12.14.33.12.605640.6031068.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0023.2018.04.12.14.33.12.605640.6031251.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0024.2018.04.12.14.33.12.605640.6031434.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0025.2018.04.12.14.33.12.605640.6030537.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0026.2018.04.12.14.33.12.605640.6030720.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0027.2018.04.12.14.33.12.605640.6030903.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0028.2018.04.12.14.33.12.605640.6031086.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0029.2018.04.12.14.33.12.605640.6031269.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0030.2018.04.12.14.33.12.605640.6031452.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0031.2018.04.12.14.33.12.605640.6030555.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0032.2018.04.12.14.33.12.605640.6030738.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0033.2018.04.12.14.33.12.605640.6030921.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0034.2018.04.12.14.33.12.605640.6031104.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0035.2018.04.12.14.33.12.605640.6031287.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0036.2018.04.12.14.33.12.605640.6031470.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0037.2018.04.12.14.33.12.605640.6030573.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0038.2018.04.12.14.33.12.605640.6030756.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0039.2018.04.12.14.33.12.605640.6030939.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0040.2018.04.12.14.33.12.605640.6031122.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0041.2018.04.12.14.33.12.605640.6031305.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0042.2018.04.12.14.33.12.605640.6031488.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0043.2018.04.12.14.33.12.605640.6030591.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0044.2018.04.12.14.33.12.605640.6030774.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0045.2018.04.12.14.33.12.605640.6030957.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0046.2018.04.12.14.33.12.605640.6031140.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0047.2018.04.12.14.33.12.605640.6031323.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0048.2018.04.12.14.33.12.605640.6031506.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0049.2018.04.12.14.33.12.605640.6030609.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0050.2018.04.12.14.33.12.605640.6030792.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0051.2018.04.12.14.33.12.605640.6030975.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0052.2018.04.12.14.33.12.605640.6031158.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0053.2018.04.12.14.33.12.605640.6031341.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0054.2018.04.12.14.33.12.605640.6031524.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0055.2018.04.12.14.33.12.605640.6030627.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0056.2018.04.12.14.33.12.605640.6030810.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0057.2018.04.12.14.33.12.605640.6030993.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0058.2018.04.12.14.33.12.605640.6031176.IMA │ │ ├── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0059.2018.04.12.14.33.12.605640.6031359.IMA │ │ └── TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0060.2018.04.12.14.33.12.605640.6031542.IMA │ └── canon │ │ ├── A0072 │ │ ├── A0073 │ │ ├── A0074 │ │ ├── A0075 │ │ ├── A0076 │ │ ├── A0077 │ │ ├── A0078 │ │ ├── A0079 │ │ ├── A0080 │ │ ├── A0081 │ │ ├── A0082 │ │ ├── A0083 │ │ ├── A0084 │ │ ├── A0085 │ │ ├── A0086 │ │ ├── A0087 │ │ ├── A0088 │ │ ├── A0089 │ │ ├── A0090 │ │ ├── A0091 │ │ ├── A0092 │ │ ├── A0093 │ │ ├── A0094 │ │ ├── A0095 │ │ ├── A0096 │ │ ├── A0097 │ │ ├── A0098 │ │ ├── A0099 │ │ ├── A0100 │ │ ├── A0101 │ │ ├── A0102 │ │ ├── A0103 │ │ ├── A0104 │ │ ├── A0105 │ │ ├── A0106 │ │ ├── A0107 │ │ ├── A0108 │ │ ├── A0109 │ │ ├── A0110 │ │ ├── A0111 │ │ ├── A0112 │ │ ├── A0113 │ │ ├── A0114 │ │ ├── A0115 │ │ ├── A0116 │ │ ├── A0117 │ │ ├── A0118 │ │ ├── A0119 │ │ ├── A0120 │ │ ├── A0121 │ │ ├── A0122 │ │ ├── A0123 │ │ ├── A0124 │ │ ├── A0125 │ │ ├── A0126 │ │ ├── A0127 │ │ ├── A0128 │ │ ├── A0129 │ │ ├── A0130 │ │ └── A0131 ├── slicewidth │ ├── 512_matrix │ │ └── 512_matrix │ └── SLICEWIDTH │ │ └── ANNUALQA.MR.HEAD_GENERAL.tra.slice_width.IMA ├── snr │ ├── GE │ │ ├── IM-0003-0001.dcm │ │ └── IM-0004-0001.dcm │ ├── Philips │ │ ├── Philips_IM-0011-0005.dcm │ │ └── Philips_IM-0011-0006.dcm │ └── Siemens │ │ ├── tra_250_2meas_1.IMA │ │ └── tra_250_2meas_2.IMA ├── snr_threshold │ └── VIDA │ │ ├── HC_SNR_SAG_1.dcm │ │ └── HC_SNR_SAG_2.dcm ├── tools │ ├── dicom_no.jfif │ └── dicom_yes.dcm ├── toshiba │ └── TOSHIBA_TM_MR_DCM_V3_0.dcm └── uniformity │ ├── axial_oil.IMA │ ├── cor.dcm │ ├── cor2.dcm │ └── sag.dcm ├── test_ACRObject.py ├── test_acr_geometric_accuracy.py ├── test_acr_ghosting.py ├── test_acr_slice_position.py ├── test_acr_slice_thickness.py ├── test_acr_snr.py ├── test_acr_spatial_resolution.py ├── test_acr_uniformity.py ├── test_ghosting.py ├── test_hazenlib.py ├── test_relaxometry.py ├── test_slice_position.py ├── test_slice_width.py ├── test_snr.py ├── test_snr_map.py ├── test_spatial_resolution.py ├── test_uniformity.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | disable_warnings = no-data-collected -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/workflows/publish_docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test_cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/workflows/test_cli.yml -------------------------------------------------------------------------------- /.github/workflows/tests_development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/workflows/tests_development.yml -------------------------------------------------------------------------------- /.github/workflows/tests_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.github/workflows/tests_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/assets/acr_ghosting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/assets/acr_ghosting.jpg -------------------------------------------------------------------------------- /docs/assets/snr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/assets/snr.jpg -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/ghost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/_static/ghost.jpg -------------------------------------------------------------------------------- /docs/source/_static/ibnalhaytham.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/_static/ibnalhaytham.jpeg -------------------------------------------------------------------------------- /docs/source/acquisitionrequirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/acquisitionrequirements.html -------------------------------------------------------------------------------- /docs/source/acquisitionrequirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/acquisitionrequirements.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/contributors.rst -------------------------------------------------------------------------------- /docs/source/getinvolved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/getinvolved.rst -------------------------------------------------------------------------------- /docs/source/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/gettingstarted.rst -------------------------------------------------------------------------------- /docs/source/hazenlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/hazenlib.rst -------------------------------------------------------------------------------- /docs/source/hazenlib.tasks.acr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/hazenlib.tasks.acr.rst -------------------------------------------------------------------------------- /docs/source/hazenlib.tasks.magnet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/hazenlib.tasks.magnet.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/inputrequirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/inputrequirements.html -------------------------------------------------------------------------------- /docs/source/inputrequirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/inputrequirements.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/references.bib -------------------------------------------------------------------------------- /docs/source/taskdescriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/taskdescriptions.html -------------------------------------------------------------------------------- /docs/source/taskdescriptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/docs/source/taskdescriptions.rst -------------------------------------------------------------------------------- /hazen-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazen-app -------------------------------------------------------------------------------- /hazenlib/ACRObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/ACRObject.py -------------------------------------------------------------------------------- /hazenlib/HazenTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/HazenTask.py -------------------------------------------------------------------------------- /hazenlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/__init__.py -------------------------------------------------------------------------------- /hazenlib/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.4' 2 | -------------------------------------------------------------------------------- /hazenlib/data/relaxometry/Plate4_T1_signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/data/relaxometry/Plate4_T1_signed -------------------------------------------------------------------------------- /hazenlib/data/relaxometry/Plate4_T2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/data/relaxometry/Plate4_T2 -------------------------------------------------------------------------------- /hazenlib/data/relaxometry/Plate5_T1_signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/data/relaxometry/Plate5_T1_signed -------------------------------------------------------------------------------- /hazenlib/data/relaxometry/Plate5_T2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/data/relaxometry/Plate5_T2 -------------------------------------------------------------------------------- /hazenlib/data/relaxometry_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/data/relaxometry_params.py -------------------------------------------------------------------------------- /hazenlib/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/exceptions.py -------------------------------------------------------------------------------- /hazenlib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/logger.py -------------------------------------------------------------------------------- /hazenlib/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hazenlib/tasks/acr_geometric_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_geometric_accuracy.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_ghosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_ghosting.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_slice_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_slice_position.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_slice_thickness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_slice_thickness.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_snr.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_spatial_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_spatial_resolution.py -------------------------------------------------------------------------------- /hazenlib/tasks/acr_uniformity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/acr_uniformity.py -------------------------------------------------------------------------------- /hazenlib/tasks/ghosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/ghosting.py -------------------------------------------------------------------------------- /hazenlib/tasks/relaxometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/relaxometry.py -------------------------------------------------------------------------------- /hazenlib/tasks/slice_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/slice_position.py -------------------------------------------------------------------------------- /hazenlib/tasks/slice_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/slice_width.py -------------------------------------------------------------------------------- /hazenlib/tasks/snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/snr.py -------------------------------------------------------------------------------- /hazenlib/tasks/snr_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/snr_map.py -------------------------------------------------------------------------------- /hazenlib/tasks/spatial_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/spatial_resolution.py -------------------------------------------------------------------------------- /hazenlib/tasks/uniformity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/tasks/uniformity.py -------------------------------------------------------------------------------- /hazenlib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/hazenlib/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/acr/GE/0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/0.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/1.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/1.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/10.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/10.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/2.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/3.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/3.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/4.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/4.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/5.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/5.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/6.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/6.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/7.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/7.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/8.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/8.dcm -------------------------------------------------------------------------------- /tests/data/acr/GE/9.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/GE/9.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/0.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/1.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/1.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/10.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/10.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/2.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/3.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/3.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/4.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/4.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/5.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/5.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/6.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/6.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/7.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/7.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/8.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/8.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens/9.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens/9.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/0.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/1.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/1.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/10.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/10.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/2.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/3.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/3.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/4.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/4.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/5.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/5.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/6.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/6.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/7.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/7.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/8.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/8.dcm -------------------------------------------------------------------------------- /tests/data/acr/Siemens2/9.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/Siemens2/9.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/0.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/1.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/1.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/10.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/10.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/2.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/3.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/3.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/4.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/4.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/5.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/5.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/6.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/6.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/7.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/7.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/8.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/8.dcm -------------------------------------------------------------------------------- /tests/data/acr/SiemensMTF/9.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/acr/SiemensMTF/9.dcm -------------------------------------------------------------------------------- /tests/data/ge/ge_eFilm.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/ge/ge_eFilm.dcm -------------------------------------------------------------------------------- /tests/data/ghosting/GHOSTING/IM_0001.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/ghosting/GHOSTING/IM_0001.dcm -------------------------------------------------------------------------------- /tests/data/ghosting/GHOSTING/axial_philips_ghosting.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/ghosting/GHOSTING/axial_philips_ghosting.dcm -------------------------------------------------------------------------------- /tests/data/ghosting/PE_COL_PHANTOM_BOTTOM_RIGHT/PE_COL_PHANTOM_BOTTOM_RIGHT.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/ghosting/PE_COL_PHANTOM_BOTTOM_RIGHT/PE_COL_PHANTOM_BOTTOM_RIGHT.IMA -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/Template_plate5_T1_signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/Template_plate5_T1_signed -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530224 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530272: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530272 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530320: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530320 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530368: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530368 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530416: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530416 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site1_20200218/plate5/20530464: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site1_20200218/plate5/20530464 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77189804: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77189804 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77189870: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77189870 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77189936: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77189936 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77190002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77190002 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77190068: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77190068 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site2_20180925/plate5/77190134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site2_20180925/plate5/77190134 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z675: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z675 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z679: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z679 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z682: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z682 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z837: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z837 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z839: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z839 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate4/Z842: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate4/Z842 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z677: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z677 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z678: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z678 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z683: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z683 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z838: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z838 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z840: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z840 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site3_ge/plate5/Z844: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site3_ge/plate5/Z844 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0604: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0604 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0614: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0614 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0624 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0634 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0644 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate4/IM_0654: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate4/IM_0654 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0603: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0603 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0613: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0613 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0623: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0623 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0633: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0633 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0643: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0643 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site4_philips/plate5/IM_0653: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site4_philips/plate5/IM_0653 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0038: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0038 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0054: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0054 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0070: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0070 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0086: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0086 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0485 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0599: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate4/IM_0599 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0037: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0037 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0053 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0069: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0069 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0085: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0085 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0484: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0484 -------------------------------------------------------------------------------- /tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0598: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T1/site5_philips_3T/plate5/IM_0598 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/Template_plate4_T2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/Template_plate4_T2 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528529: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528529 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528577: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528577 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528625: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528625 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528673: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528673 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528721 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20528769: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20528769 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530528 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530576: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530576 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530624 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530672: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530672 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530720: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530720 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530768: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530768 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530816: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530816 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530864: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530864 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530912: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530912 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20530960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20530960 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531008 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531056: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531056 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531104 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531152: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531152 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531200 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531248: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531248 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531296: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531296 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531344: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531344 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531392: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531392 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531440 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531488: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531488 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531536: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531536 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531584: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531584 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531632: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531632 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531680: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531680 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site1_20200218/plate4/20531728: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site1_20200218/plate4/20531728 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z815: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z815 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z816: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z816 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z820: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z820 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z822 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z826 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z827 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z831: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z831 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate4/Z832: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate4/Z832 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z812: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z812 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z813: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z813 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z814: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z814 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z819: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z819 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z823: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z823 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z825: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z825 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z830: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z830 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site3_ge/plate5/Z834: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site3_ge/plate5/Z834 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0439: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0439 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0440: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0440 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0441: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0441 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0442: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0442 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0443: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0443 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0444: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0444 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0445: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0445 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0446: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0446 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0447: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0447 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0448 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0449: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0449 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0450: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0450 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0451: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0451 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0452: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0452 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0453: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0453 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0454: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0454 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0455: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0455 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0456 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0457: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0457 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0458: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0458 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0459: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0459 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0460: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0460 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0461: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0461 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0462: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0462 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0463: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0463 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0464: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0464 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0465: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0465 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0466: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0466 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0467: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0467 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0468: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0468 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0469: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0469 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate4/IM_0470: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate4/IM_0470 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0407: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0407 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0408: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0408 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0409: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0409 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0410: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0410 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0411: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0411 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0412: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0412 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0413: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0413 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0414: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0414 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0415: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0415 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0416: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0416 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0417: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0417 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0418: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0418 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0419: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0419 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0420 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0421: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0421 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0422: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0422 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0423: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0423 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0424: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0424 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0425: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0425 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0426: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0426 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0427: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0427 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0428: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0428 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0429: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0429 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0430: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0430 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0431: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0431 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0432: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0432 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0433 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0434: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0434 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0435: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0435 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0436: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0436 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0437: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0437 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site4_philips/plate5/IM_0438: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site4_philips/plate5/IM_0438 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0532: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0532 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0533: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0533 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0534: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0534 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0535: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0535 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0536: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0536 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0537: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0537 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0538: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0538 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0539 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0540: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0540 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0541: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0541 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0542: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0542 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0543 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0544: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0544 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0545: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0545 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0546: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0546 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0547: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0547 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0548: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0548 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0549: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0549 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0550: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0550 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0551: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0551 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0552: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0552 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0553: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0553 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0554: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0554 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0555: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0555 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0556: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0556 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0557: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0557 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0558: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0558 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0559: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0559 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0560: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0560 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0561: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0561 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0562: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0562 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0563: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate4/IM_0563 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0500 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0501: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0501 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0502 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0503: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0503 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0504: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0504 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0505: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0505 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0506: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0506 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0507: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0507 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0508: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0508 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0509: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0509 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0510: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0510 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0511: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0511 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0512 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0513: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0513 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0514: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0514 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0515: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0515 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0516: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0516 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0517: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0517 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0518 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0519: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0519 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0520: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0520 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0521: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0521 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0522: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0522 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0523: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0523 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0524: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0524 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0525: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0525 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0526: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0526 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0527: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0527 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0528 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0529: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0529 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0530: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0530 -------------------------------------------------------------------------------- /tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/relaxometry/T2/site5_philips_3T/plate5/IM_0531 -------------------------------------------------------------------------------- /tests/data/resolution/RESOLUTION/ax_512_resolution.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/resolution/RESOLUTION/ax_512_resolution.dcm -------------------------------------------------------------------------------- /tests/data/resolution/philips/IM-0004-0002.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/resolution/philips/IM-0004-0002.dcm -------------------------------------------------------------------------------- /tests/data/resolution/philips/non_dicom_test.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/resolution/philips/non_dicom_test.jfif -------------------------------------------------------------------------------- /tests/data/resolution/resolution_site01/256_sag.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/resolution/resolution_site01/256_sag.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0001.2018.04.12.14.33.12.605640.6030457.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0001.2018.04.12.14.33.12.605640.6030457.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0002.2018.04.12.14.33.12.605640.6030648.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0002.2018.04.12.14.33.12.605640.6030648.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0003.2018.04.12.14.33.12.605640.6030831.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0003.2018.04.12.14.33.12.605640.6030831.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0004.2018.04.12.14.33.12.605640.6031014.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0004.2018.04.12.14.33.12.605640.6031014.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0005.2018.04.12.14.33.12.605640.6031197.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0005.2018.04.12.14.33.12.605640.6031197.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0006.2018.04.12.14.33.12.605640.6031380.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0006.2018.04.12.14.33.12.605640.6031380.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0007.2018.04.12.14.33.12.605640.6030483.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0007.2018.04.12.14.33.12.605640.6030483.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0008.2018.04.12.14.33.12.605640.6030666.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0008.2018.04.12.14.33.12.605640.6030666.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0009.2018.04.12.14.33.12.605640.6030849.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0009.2018.04.12.14.33.12.605640.6030849.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0010.2018.04.12.14.33.12.605640.6031032.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0010.2018.04.12.14.33.12.605640.6031032.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0011.2018.04.12.14.33.12.605640.6031215.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0011.2018.04.12.14.33.12.605640.6031215.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0012.2018.04.12.14.33.12.605640.6031398.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0012.2018.04.12.14.33.12.605640.6031398.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0013.2018.04.12.14.33.12.605640.6030501.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0013.2018.04.12.14.33.12.605640.6030501.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0014.2018.04.12.14.33.12.605640.6030684.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0014.2018.04.12.14.33.12.605640.6030684.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0015.2018.04.12.14.33.12.605640.6030867.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0015.2018.04.12.14.33.12.605640.6030867.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0016.2018.04.12.14.33.12.605640.6031050.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0016.2018.04.12.14.33.12.605640.6031050.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0017.2018.04.12.14.33.12.605640.6031233.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0017.2018.04.12.14.33.12.605640.6031233.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0018.2018.04.12.14.33.12.605640.6031416.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0018.2018.04.12.14.33.12.605640.6031416.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0019.2018.04.12.14.33.12.605640.6030519.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0019.2018.04.12.14.33.12.605640.6030519.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0020.2018.04.12.14.33.12.605640.6030702.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0020.2018.04.12.14.33.12.605640.6030702.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0021.2018.04.12.14.33.12.605640.6030885.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0021.2018.04.12.14.33.12.605640.6030885.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0022.2018.04.12.14.33.12.605640.6031068.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0022.2018.04.12.14.33.12.605640.6031068.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0023.2018.04.12.14.33.12.605640.6031251.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0023.2018.04.12.14.33.12.605640.6031251.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0024.2018.04.12.14.33.12.605640.6031434.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0024.2018.04.12.14.33.12.605640.6031434.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0025.2018.04.12.14.33.12.605640.6030537.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0025.2018.04.12.14.33.12.605640.6030537.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0026.2018.04.12.14.33.12.605640.6030720.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0026.2018.04.12.14.33.12.605640.6030720.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0027.2018.04.12.14.33.12.605640.6030903.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0027.2018.04.12.14.33.12.605640.6030903.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0028.2018.04.12.14.33.12.605640.6031086.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0028.2018.04.12.14.33.12.605640.6031086.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0029.2018.04.12.14.33.12.605640.6031269.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0029.2018.04.12.14.33.12.605640.6031269.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0030.2018.04.12.14.33.12.605640.6031452.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0030.2018.04.12.14.33.12.605640.6031452.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0031.2018.04.12.14.33.12.605640.6030555.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0031.2018.04.12.14.33.12.605640.6030555.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0032.2018.04.12.14.33.12.605640.6030738.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0032.2018.04.12.14.33.12.605640.6030738.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0033.2018.04.12.14.33.12.605640.6030921.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0033.2018.04.12.14.33.12.605640.6030921.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0034.2018.04.12.14.33.12.605640.6031104.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0034.2018.04.12.14.33.12.605640.6031104.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0035.2018.04.12.14.33.12.605640.6031287.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0035.2018.04.12.14.33.12.605640.6031287.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0036.2018.04.12.14.33.12.605640.6031470.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0036.2018.04.12.14.33.12.605640.6031470.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0037.2018.04.12.14.33.12.605640.6030573.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0037.2018.04.12.14.33.12.605640.6030573.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0038.2018.04.12.14.33.12.605640.6030756.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0038.2018.04.12.14.33.12.605640.6030756.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0039.2018.04.12.14.33.12.605640.6030939.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0039.2018.04.12.14.33.12.605640.6030939.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0040.2018.04.12.14.33.12.605640.6031122.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0040.2018.04.12.14.33.12.605640.6031122.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0041.2018.04.12.14.33.12.605640.6031305.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0041.2018.04.12.14.33.12.605640.6031305.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0042.2018.04.12.14.33.12.605640.6031488.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0042.2018.04.12.14.33.12.605640.6031488.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0043.2018.04.12.14.33.12.605640.6030591.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0043.2018.04.12.14.33.12.605640.6030591.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0044.2018.04.12.14.33.12.605640.6030774.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0044.2018.04.12.14.33.12.605640.6030774.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0045.2018.04.12.14.33.12.605640.6030957.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0045.2018.04.12.14.33.12.605640.6030957.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0046.2018.04.12.14.33.12.605640.6031140.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0046.2018.04.12.14.33.12.605640.6031140.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0047.2018.04.12.14.33.12.605640.6031323.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0047.2018.04.12.14.33.12.605640.6031323.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0048.2018.04.12.14.33.12.605640.6031506.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0048.2018.04.12.14.33.12.605640.6031506.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0049.2018.04.12.14.33.12.605640.6030609.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0049.2018.04.12.14.33.12.605640.6030609.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0050.2018.04.12.14.33.12.605640.6030792.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0050.2018.04.12.14.33.12.605640.6030792.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0051.2018.04.12.14.33.12.605640.6030975.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0051.2018.04.12.14.33.12.605640.6030975.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0052.2018.04.12.14.33.12.605640.6031158.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0052.2018.04.12.14.33.12.605640.6031158.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0053.2018.04.12.14.33.12.605640.6031341.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0053.2018.04.12.14.33.12.605640.6031341.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0054.2018.04.12.14.33.12.605640.6031524.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0054.2018.04.12.14.33.12.605640.6031524.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0055.2018.04.12.14.33.12.605640.6030627.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0055.2018.04.12.14.33.12.605640.6030627.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0056.2018.04.12.14.33.12.605640.6030810.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0056.2018.04.12.14.33.12.605640.6030810.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0057.2018.04.12.14.33.12.605640.6030993.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0057.2018.04.12.14.33.12.605640.6030993.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0058.2018.04.12.14.33.12.605640.6031176.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0058.2018.04.12.14.33.12.605640.6031176.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0059.2018.04.12.14.33.12.605640.6031359.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0059.2018.04.12.14.33.12.605640.6031359.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0060.2018.04.12.14.33.12.605640.6031542.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/SLICEPOSITION/TEST_ACCEPTANCE.MR.PHYSICS_ACCEPTANCE_TESTING.0024.0060.2018.04.12.14.33.12.605640.6031542.IMA -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0072: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0072 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0073: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0073 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0074 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0075 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0076: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0076 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0077: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0077 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0078: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0078 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0079: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0079 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0080: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0080 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0081: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0081 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0082: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0082 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0083: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0083 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0084: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0084 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0085: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0085 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0086: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0086 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0087: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0087 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0088: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0088 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0089: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0089 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0090: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0090 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0091: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0091 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0092: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0092 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0093: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0093 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0094: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0094 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0095: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0095 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0096: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0096 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0097: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0097 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0098: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0098 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0099: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0099 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0100 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0101 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0102 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0103 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0104 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0105 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0106 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0107 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0108 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0109 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0110 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0111 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0112 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0113 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0114 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0115 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0116 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0117 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0118: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0118 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0119 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0120 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0121 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0122 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0123 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0124 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0125 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0126 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0127 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0128 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0129 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0130 -------------------------------------------------------------------------------- /tests/data/slicepos/canon/A0131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicepos/canon/A0131 -------------------------------------------------------------------------------- /tests/data/slicewidth/512_matrix/512_matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicewidth/512_matrix/512_matrix -------------------------------------------------------------------------------- /tests/data/slicewidth/SLICEWIDTH/ANNUALQA.MR.HEAD_GENERAL.tra.slice_width.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/slicewidth/SLICEWIDTH/ANNUALQA.MR.HEAD_GENERAL.tra.slice_width.IMA -------------------------------------------------------------------------------- /tests/data/snr/GE/IM-0003-0001.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/GE/IM-0003-0001.dcm -------------------------------------------------------------------------------- /tests/data/snr/GE/IM-0004-0001.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/GE/IM-0004-0001.dcm -------------------------------------------------------------------------------- /tests/data/snr/Philips/Philips_IM-0011-0005.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/Philips/Philips_IM-0011-0005.dcm -------------------------------------------------------------------------------- /tests/data/snr/Philips/Philips_IM-0011-0006.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/Philips/Philips_IM-0011-0006.dcm -------------------------------------------------------------------------------- /tests/data/snr/Siemens/tra_250_2meas_1.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/Siemens/tra_250_2meas_1.IMA -------------------------------------------------------------------------------- /tests/data/snr/Siemens/tra_250_2meas_2.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr/Siemens/tra_250_2meas_2.IMA -------------------------------------------------------------------------------- /tests/data/snr_threshold/VIDA/HC_SNR_SAG_1.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr_threshold/VIDA/HC_SNR_SAG_1.dcm -------------------------------------------------------------------------------- /tests/data/snr_threshold/VIDA/HC_SNR_SAG_2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/snr_threshold/VIDA/HC_SNR_SAG_2.dcm -------------------------------------------------------------------------------- /tests/data/tools/dicom_no.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/tools/dicom_no.jfif -------------------------------------------------------------------------------- /tests/data/tools/dicom_yes.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/tools/dicom_yes.dcm -------------------------------------------------------------------------------- /tests/data/toshiba/TOSHIBA_TM_MR_DCM_V3_0.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/toshiba/TOSHIBA_TM_MR_DCM_V3_0.dcm -------------------------------------------------------------------------------- /tests/data/uniformity/axial_oil.IMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/uniformity/axial_oil.IMA -------------------------------------------------------------------------------- /tests/data/uniformity/cor.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/uniformity/cor.dcm -------------------------------------------------------------------------------- /tests/data/uniformity/cor2.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/uniformity/cor2.dcm -------------------------------------------------------------------------------- /tests/data/uniformity/sag.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/data/uniformity/sag.dcm -------------------------------------------------------------------------------- /tests/test_ACRObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_ACRObject.py -------------------------------------------------------------------------------- /tests/test_acr_geometric_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_geometric_accuracy.py -------------------------------------------------------------------------------- /tests/test_acr_ghosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_ghosting.py -------------------------------------------------------------------------------- /tests/test_acr_slice_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_slice_position.py -------------------------------------------------------------------------------- /tests/test_acr_slice_thickness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_slice_thickness.py -------------------------------------------------------------------------------- /tests/test_acr_snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_snr.py -------------------------------------------------------------------------------- /tests/test_acr_spatial_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_spatial_resolution.py -------------------------------------------------------------------------------- /tests/test_acr_uniformity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_acr_uniformity.py -------------------------------------------------------------------------------- /tests/test_ghosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_ghosting.py -------------------------------------------------------------------------------- /tests/test_hazenlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_hazenlib.py -------------------------------------------------------------------------------- /tests/test_relaxometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_relaxometry.py -------------------------------------------------------------------------------- /tests/test_slice_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_slice_position.py -------------------------------------------------------------------------------- /tests/test_slice_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_slice_width.py -------------------------------------------------------------------------------- /tests/test_snr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_snr.py -------------------------------------------------------------------------------- /tests/test_snr_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_snr_map.py -------------------------------------------------------------------------------- /tests/test_spatial_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_spatial_resolution.py -------------------------------------------------------------------------------- /tests/test_uniformity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_uniformity.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSTT-CSC/hazen/HEAD/tests/test_utils.py --------------------------------------------------------------------------------