├── .gitignore ├── 2D_imageLabel_metrics ├── image_labels_GT │ ├── .DS_Store │ ├── P2ILF22_patient1_12.jpg │ └── P2ILF22_patient1_12_GT.jpg ├── image_labels_eval │ ├── P2ILF22_patient1_12_eval.jpg │ ├── P2ILF22_patient1_12_eval_eroded.jpg │ ├── P2ILF22_patient1_12_eval_removed.jpg │ └── P2ILF22_patient1_12_eval_removed_2.jpg └── metrics_2D_ContourSegmentation.py ├── LICENSE ├── P2ILF_2D_3Dxml.py ├── README.md ├── cameraparams └── acquisition-camera-metadata.json ├── converters ├── write2D_3DContours_separately.py └── xml2jsonconverter.py ├── evaluation_GT ├── 3d-liver-model.obj ├── patient2_1_2D-contours.json └── patient2_1_3D-contours.json ├── input └── 3d-liver-model.obj ├── metrics_new_docker ├── 3D_contour_metrics_v2.py ├── contour_metrics_3D.py ├── metric_functions.py ├── metrics_2DContours_eval.py └── misc.py ├── metrics_registration_RPE_visualisation.py ├── metrics_registration_TRE_onMesh.py ├── originalMesh └── meshGT.obj ├── output ├── 2d-liver-contours.json ├── 3d-liver-contours.json ├── patient2_1_3D-contours_metricvalues.json └── transformed-3d-liver-model.obj ├── overall_metrics.py ├── registeredMesh └── originalMesh_views12345678_ct1_wrp1_arap0_alterscheme3.obj ├── samplexmlprovided ├── patient2_1.json ├── patient2_1.xml ├── patient2_1_2D-contours.json └── patient2_1_3D-contours.json └── teamEvaluations ├── connectJsonFiles.py ├── connectJsonFiles_Chamfer.py ├── connectJsonFiles_DSC.py ├── connectJsonFiles_SymDistance.py ├── contour_metrics_3D.py ├── metric_functions.py ├── metric_reprejectionError.py ├── metrics_2DContours_eval.py ├── misc_eval.py └── overall_metrics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/.gitignore -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_GT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_GT/.DS_Store -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_GT/P2ILF22_patient1_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_GT/P2ILF22_patient1_12.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_GT/P2ILF22_patient1_12_GT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_GT/P2ILF22_patient1_12_GT.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_eroded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_eroded.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_removed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_removed.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_removed_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/image_labels_eval/P2ILF22_patient1_12_eval_removed_2.jpg -------------------------------------------------------------------------------- /2D_imageLabel_metrics/metrics_2D_ContourSegmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/2D_imageLabel_metrics/metrics_2D_ContourSegmentation.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/LICENSE -------------------------------------------------------------------------------- /P2ILF_2D_3Dxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/P2ILF_2D_3Dxml.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/README.md -------------------------------------------------------------------------------- /cameraparams/acquisition-camera-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/cameraparams/acquisition-camera-metadata.json -------------------------------------------------------------------------------- /converters/write2D_3DContours_separately.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/converters/write2D_3DContours_separately.py -------------------------------------------------------------------------------- /converters/xml2jsonconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/converters/xml2jsonconverter.py -------------------------------------------------------------------------------- /evaluation_GT/3d-liver-model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/evaluation_GT/3d-liver-model.obj -------------------------------------------------------------------------------- /evaluation_GT/patient2_1_2D-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/evaluation_GT/patient2_1_2D-contours.json -------------------------------------------------------------------------------- /evaluation_GT/patient2_1_3D-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/evaluation_GT/patient2_1_3D-contours.json -------------------------------------------------------------------------------- /input/3d-liver-model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/input/3d-liver-model.obj -------------------------------------------------------------------------------- /metrics_new_docker/3D_contour_metrics_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_new_docker/3D_contour_metrics_v2.py -------------------------------------------------------------------------------- /metrics_new_docker/contour_metrics_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_new_docker/contour_metrics_3D.py -------------------------------------------------------------------------------- /metrics_new_docker/metric_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_new_docker/metric_functions.py -------------------------------------------------------------------------------- /metrics_new_docker/metrics_2DContours_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_new_docker/metrics_2DContours_eval.py -------------------------------------------------------------------------------- /metrics_new_docker/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_new_docker/misc.py -------------------------------------------------------------------------------- /metrics_registration_RPE_visualisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_registration_RPE_visualisation.py -------------------------------------------------------------------------------- /metrics_registration_TRE_onMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/metrics_registration_TRE_onMesh.py -------------------------------------------------------------------------------- /originalMesh/meshGT.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/originalMesh/meshGT.obj -------------------------------------------------------------------------------- /output/2d-liver-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/output/2d-liver-contours.json -------------------------------------------------------------------------------- /output/3d-liver-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/output/3d-liver-contours.json -------------------------------------------------------------------------------- /output/patient2_1_3D-contours_metricvalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/output/patient2_1_3D-contours_metricvalues.json -------------------------------------------------------------------------------- /output/transformed-3d-liver-model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/output/transformed-3d-liver-model.obj -------------------------------------------------------------------------------- /overall_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/overall_metrics.py -------------------------------------------------------------------------------- /registeredMesh/originalMesh_views12345678_ct1_wrp1_arap0_alterscheme3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/registeredMesh/originalMesh_views12345678_ct1_wrp1_arap0_alterscheme3.obj -------------------------------------------------------------------------------- /samplexmlprovided/patient2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/samplexmlprovided/patient2_1.json -------------------------------------------------------------------------------- /samplexmlprovided/patient2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/samplexmlprovided/patient2_1.xml -------------------------------------------------------------------------------- /samplexmlprovided/patient2_1_2D-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/samplexmlprovided/patient2_1_2D-contours.json -------------------------------------------------------------------------------- /samplexmlprovided/patient2_1_3D-contours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/samplexmlprovided/patient2_1_3D-contours.json -------------------------------------------------------------------------------- /teamEvaluations/connectJsonFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/connectJsonFiles.py -------------------------------------------------------------------------------- /teamEvaluations/connectJsonFiles_Chamfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/connectJsonFiles_Chamfer.py -------------------------------------------------------------------------------- /teamEvaluations/connectJsonFiles_DSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/connectJsonFiles_DSC.py -------------------------------------------------------------------------------- /teamEvaluations/connectJsonFiles_SymDistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/connectJsonFiles_SymDistance.py -------------------------------------------------------------------------------- /teamEvaluations/contour_metrics_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/contour_metrics_3D.py -------------------------------------------------------------------------------- /teamEvaluations/metric_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/metric_functions.py -------------------------------------------------------------------------------- /teamEvaluations/metric_reprejectionError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/metric_reprejectionError.py -------------------------------------------------------------------------------- /teamEvaluations/metrics_2DContours_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/metrics_2DContours_eval.py -------------------------------------------------------------------------------- /teamEvaluations/misc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/misc_eval.py -------------------------------------------------------------------------------- /teamEvaluations/overall_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharib-vision/P2ILF/HEAD/teamEvaluations/overall_metrics.py --------------------------------------------------------------------------------