├── .gitignore ├── MarkerPose ├── __init__.py ├── models.py └── utils.py ├── ProbePose.py ├── README.md ├── figures ├── breast_phantom.png ├── navig.gif ├── phantom_SL+US.png └── system.png ├── multimodal_recons.py └── sl_us ├── __init__.py ├── centerline.py ├── sl3d.py ├── us3d.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/.gitignore -------------------------------------------------------------------------------- /MarkerPose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MarkerPose/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/MarkerPose/models.py -------------------------------------------------------------------------------- /MarkerPose/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/MarkerPose/utils.py -------------------------------------------------------------------------------- /ProbePose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/ProbePose.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/README.md -------------------------------------------------------------------------------- /figures/breast_phantom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/figures/breast_phantom.png -------------------------------------------------------------------------------- /figures/navig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/figures/navig.gif -------------------------------------------------------------------------------- /figures/phantom_SL+US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/figures/phantom_SL+US.png -------------------------------------------------------------------------------- /figures/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/figures/system.png -------------------------------------------------------------------------------- /multimodal_recons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/multimodal_recons.py -------------------------------------------------------------------------------- /sl_us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sl_us/centerline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/sl_us/centerline.py -------------------------------------------------------------------------------- /sl_us/sl3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/sl_us/sl3d.py -------------------------------------------------------------------------------- /sl_us/us3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/sl_us/us3d.py -------------------------------------------------------------------------------- /sl_us/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhacsonmeza/StructuredLight_3DfreehandUS/HEAD/sl_us/utils.py --------------------------------------------------------------------------------