├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── apps ├── Autonomous_Carm │ ├── CMakeLists.txt │ ├── autocarm_calibrate_kwire_pts │ │ ├── CMakeLists.txt │ │ └── autocarm_calibrate_kwire_pts_main.cpp │ ├── autocarm_fidest_multiview_pelvis_regi │ │ ├── CMakeLists.txt │ │ ├── autocarm_fidest_multiview_pelvis_regi_main.cpp │ │ └── autocarm_fidest_multiview_pelvis_regi_main_calibration_data_testing.cpp │ ├── autocarm_pelvis_kwire_triangulation │ │ ├── CMakeLists.txt │ │ └── autocarm_pelvis_kwire_triangulation_main.cpp │ ├── autocarm_proc_xraydcm_to_tiff │ │ ├── CMakeLists.txt │ │ └── autocarm_proc_xraydcm_to_tiff_main.cpp │ ├── autocarm_reproj_jigpts │ │ ├── CMakeLists.txt │ │ └── autocarm_reproj_jigpts_main.cpp │ └── autocarm_singleview_pelvis_regi │ │ ├── CMakeLists.txt │ │ └── autocarm_singleview_pelvis_regi_main.cpp ├── CMakeLists.txt ├── Carm_PolarisMarker_Calibration │ ├── CMakeLists.txt │ ├── carm_calibration_handeye │ │ ├── CMakeLists.txt │ │ ├── carm_calibration_handeye_main.cpp │ │ └── handeye_carm_source_to_fiducial_main.cpp │ ├── carm_calibration_polaris_jig_pnp │ │ ├── CMakeLists.txt │ │ ├── carm_calibration_polaris_jig_pnp_main.cpp │ │ └── jhmr_carm_polaris_pnp_main.cpp │ └── carm_calibration_proj_data │ │ ├── CMakeLists.txt │ │ └── xreg_carm_calibration_proj_data_main.cpp ├── Carm_Xray_Simulation │ ├── CMakeLists.txt │ ├── create_disk_data │ │ ├── CMakeLists.txt │ │ └── xreg_gen_create_disk_data_main.cpp │ ├── create_disk_data_fromh5 │ │ ├── CMakeLists.txt │ │ └── xreg_gen_create_disk_data_fromh5_main.cpp │ ├── create_h5_data │ │ ├── CMakeLists.txt │ │ ├── xreg_gen_create_h5_data_main.cpp │ │ └── xreg_gen_create_h5_data_main_backup.cpp │ ├── create_ipcai_label_h5 │ │ ├── CMakeLists.txt │ │ ├── xreg_gen_create_h5_data_main_backup.cpp │ │ └── xreg_gen_create_ipcai_label_h5_main.cpp │ ├── create_vol_h5 │ │ ├── CMakeLists.txt │ │ └── xreg_gen_create_vol_h5_main.cpp │ ├── disk_images_to_h5 │ │ ├── CMakeLists.txt │ │ └── xreg_gen_disk_images_to_h5_main.cpp │ ├── export_ipcai_xform │ │ ├── CMakeLists.txt │ │ └── xreg_export_ipcai_xform_main.cpp │ ├── initial_pelvis_pose_estimate │ │ ├── CMakeLists.txt │ │ └── xreg_initial_pelvis_pose_estimate_main.cpp.cpp │ └── preproc_deepdrr │ │ ├── CMakeLists.txt │ │ └── xreg_gen_preproc_deepdrr_main.cpp ├── Femoroplasty │ ├── CMakeLists.txt │ ├── README.md │ ├── img │ │ ├── .DS_Store │ │ ├── Concept.png │ │ └── regi.gif │ ├── injection_device_registration │ │ ├── CMakeLists.txt │ │ ├── device_femur_regi_multiview │ │ │ ├── CMakeLists.txt │ │ │ └── device_femur_regi_multiview_main.cpp │ │ ├── device_multiconfig_singleview │ │ │ ├── CMakeLists.txt │ │ │ ├── device_multiconfig_singleview_main.cpp │ │ │ └── jhmr_fem_regi_device_multiconfig_singleview_main.cpp │ │ └── device_regi_singleview │ │ │ ├── CMakeLists.txt │ │ │ └── device_regi_singleview_main.cpp │ ├── pelvis_femur_registration │ │ ├── CMakeLists.txt │ │ ├── femoroplasty_regi_multiview_femur │ │ │ ├── CMakeLists.txt │ │ │ └── femoroplasty_regi_multiview_femur_main.cpp │ │ ├── femoroplasty_regi_multiview_pelvis_and_femur │ │ │ ├── CMakeLists.txt │ │ │ └── femoroplasty_regi_multiview_pelvis_and_femur_main.cpp │ │ ├── femoroplasty_regi_singleview_femur │ │ │ ├── CMakeLists.txt │ │ │ └── femoroplasty_regi_singleview_femur_main.cpp │ │ ├── femoroplasty_regi_singleview_pelvis_and_femur │ │ │ ├── CMakeLists.txt │ │ │ └── femoroplasty_regi_singleview_pelvis_and_femur_main.cpp │ │ ├── femur_regi_singleview │ │ │ ├── CMakeLists.txt │ │ │ └── femur_regi_singleview_main.cpp │ │ └── pelvis_femur_regi_multiview │ │ │ ├── CMakeLists.txt │ │ │ └── pelvis_femur_regi_multiview_main.cpp │ └── pre_processing │ │ ├── CMakeLists.txt │ │ ├── apply_femur_seg_to_CT │ │ ├── CMakeLists.txt │ │ └── apply_femur_seg_to_CT_main.cpp │ │ └── flip_seg │ │ ├── CMakeLists.txt │ │ └── flip_seg_main.cpp ├── Osteonecrosis │ ├── CMakeLists.txt │ └── example_drr_regi_singleview_femur │ │ ├── CMakeLists.txt │ │ └── example_drr_regi_singleview_femur_main.cpp ├── Robotic_Continuum_Manipulator │ ├── CMakeLists.txt │ ├── example_drr_proj_justin_snakemodel │ │ ├── CMakeLists.txt │ │ └── snake_example_drr_proj_justin_snakemodel_main.cpp │ ├── include │ │ └── xregBuildJustinSnakeModel.h │ ├── newsnake_sim_multiview │ │ ├── CMakeLists.txt │ │ └── newsnake_sim_multiview_main.cpp │ ├── newsnake_sim_singleview │ │ ├── CMakeLists.txt │ │ └── newsnake_sim_singleview_main.cpp │ └── regi2d3d_replay_newsnake │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_regi2d3d_replay_newsnake_main.cpp ├── Robotic_Injection_Device │ ├── CMakeLists.txt │ ├── device_bb_pnp │ │ ├── CMakeLists.txt │ │ └── device_bb_pnp_main.cpp │ └── device_handeye_calibration │ │ ├── CMakeLists.txt │ │ └── device_handeye_calibration_main.cpp ├── image_io │ ├── CMakeLists.txt │ ├── add_lands_to_proj_data │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_add_lands_to_proj_data_main.cpp │ ├── convert_resample_dicom │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_convert_resample_dicom_main.cpp │ ├── crop_vol │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_crop_vol_main.cpp │ ├── draw_xray_scene │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_draw_xray_scene_main.cpp │ ├── extract_nii_from_proj_data │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_extract_nii_from_proj_data_main.cpp │ ├── regi2d3d_replay │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_regi2d3d_replay_main.cpp │ ├── regi2d3d_replay_multiconfig_device │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_regi2d3d_replay_multiconfig_device_main.cpp │ ├── remap_and_tile_proj_data │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_remap_tile_proj_data_main.cpp │ └── report_dicom │ │ ├── CMakeLists.txt │ │ └── xreg_report_dicom_main.cpp ├── mesh │ ├── CMakeLists.txt │ ├── create_mesh │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_create_mesh_main.cpp │ ├── show_mesh │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_show_mesh_main.cpp │ └── sur_regi │ │ ├── CMakeLists.txt │ │ ├── Readme.md │ │ └── xreg_sur_regi_main.cpp ├── point_clouds │ ├── CMakeLists.txt │ ├── print_fcsv │ │ ├── CMakeLists.txt │ │ └── xreg_print_fcsv_main.cpp │ └── xform_fcsv │ │ ├── CMakeLists.txt │ │ └── xreg_xform_fcsv_main.cpp └── transforms │ ├── CMakeLists.txt │ └── print_rigid_transform │ ├── CMakeLists.txt │ └── xreg_print_rigid_transform_main.cpp ├── cmake ├── FindEigen3.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── tbb │ └── FindTBB.cmake └── xregConfig.cmake.in ├── dist ├── centos_dist_pkgs ├── dist_readme │ └── README.txt ├── make_linux_dist.py ├── make_macos_dist.py ├── setup-xreg-vars.bat └── ubuntu_dist_pkgs ├── docker ├── Dockerfile.centos_dev_base ├── Dockerfile.ubuntu_dev_base ├── Dockerfile.xreg ├── Dockerfile.xreg-deps ├── Dockerfile.xreg-dist-bin └── README.md ├── example_build_script ├── lib ├── CMakeLists.txt ├── basic_math │ ├── CMakeLists.txt │ ├── xregBasicStats.cpp │ ├── xregBasicStats.h │ ├── xregDistInterface.cpp │ ├── xregDistInterface.h │ ├── xregFoldNormDist.cpp │ ├── xregFoldNormDist.h │ ├── xregLinAlgUtils.cpp │ ├── xregLinAlgUtils.h │ ├── xregLogNormDist.cpp │ ├── xregLogNormDist.h │ ├── xregNDRange.cpp │ ├── xregNDRange.h │ ├── xregNormDist.cpp │ ├── xregNormDist.h │ ├── xregNormDistFit.cpp │ ├── xregNormDistFit.h │ ├── xregNullDist.cpp │ ├── xregNullDist.h │ ├── xregPolyFindZeros.cpp │ ├── xregPolyFindZeros.h │ ├── xregPolyFit.cpp │ ├── xregPolyFit.h │ ├── xregSampleUniformUnitVecs.cpp │ ├── xregSampleUniformUnitVecs.h │ ├── xregSpline.cpp │ └── xregSpline.h ├── bigssMath │ ├── CMakeLists.txt │ ├── bigssKinematicsUtils-inl.h │ ├── bigssKinematicsUtils.cpp │ ├── bigssKinematicsUtils.h │ ├── bigssMath.cpp │ ├── bigssMath.h │ ├── bigssMathEigen.cpp │ ├── bigssMathEigen.h │ ├── bigss_debug_util.cpp │ ├── bigss_debug_util.h │ ├── eigenAddons.h │ ├── eigenMatrixAddons.h │ ├── interpolatingSpline.cpp │ ├── interpolatingSpline.h │ ├── slicerUtil.cpp │ ├── slicerUtil.h │ ├── smoothingSpline.cpp │ ├── smoothingSpline.h │ ├── spline.h │ ├── test.cpp │ ├── testSmoothingSpline.cpp │ └── transformTest.cpp ├── common │ ├── CMakeLists.txt │ ├── xregAssert.cpp │ ├── xregAssert.h │ ├── xregCommon.h │ ├── xregCompareUtils.h │ ├── xregEndianUtils.cpp │ ├── xregEndianUtils.h │ ├── xregExceptionUtils.cpp │ ├── xregExceptionUtils.h │ ├── xregFilesystemUtils.cpp │ ├── xregFilesystemUtils.h │ ├── xregLandmarkMapUtils.cpp │ ├── xregLandmarkMapUtils.h │ ├── xregMesh.cpp │ ├── xregMesh.h │ ├── xregObjWithOStream.cpp │ ├── xregObjWithOStream.h │ ├── xregObjectUtils.h │ ├── xregProgOptUtils.cpp │ ├── xregProgOptUtils.h │ ├── xregSampleUtils.cpp │ ├── xregSampleUtils.h │ ├── xregSizedTypeUtils.h │ ├── xregStdStreamUtils.cpp │ ├── xregStdStreamUtils.h │ ├── xregStreams.cpp │ ├── xregStreams.h │ ├── xregStringUtils.cpp │ ├── xregStringUtils.h │ ├── xregTBBUtils.h │ ├── xregTimer.cpp │ ├── xregTimer.h │ └── xregTypeUtils.h ├── file_formats │ ├── CMakeLists.txt │ ├── xregACSVUtils.cpp │ ├── xregACSVUtils.h │ ├── xregCIOSFusionDICOM.cpp │ ├── xregCIOSFusionDICOM.h │ ├── xregCSVUtils.cpp │ ├── xregCSVUtils.h │ ├── xregDICOMUtils.cpp │ ├── xregDICOMUtils.h │ ├── xregFCSVUtils.cpp │ ├── xregFCSVUtils.h │ ├── xregH5CamModelIO.cpp │ ├── xregH5CamModelIO.h │ ├── xregH5MeshIO.cpp │ ├── xregH5MeshIO.h │ ├── xregH5PAOIO.cpp │ ├── xregH5PAOIO.h │ ├── xregH5ProjDataIO.cpp │ ├── xregH5ProjDataIO.h │ ├── xregH5SE3OptVarsIO.cpp │ ├── xregH5SE3OptVarsIO.h │ ├── xregMeshIO.cpp │ ├── xregMeshIO.h │ ├── xregPAOIO.cpp │ ├── xregPAOIO.h │ ├── xregSTLMeshIO.cpp │ ├── xregSTLMeshIO.h │ ├── xregWriteVideo.cpp │ └── xregWriteVideo.h ├── hdf5 │ ├── CMakeLists.txt │ ├── xregHDF5.cpp │ ├── xregHDF5.h │ ├── xregHDF5Internal.h │ └── xregHDF5ReadWriteInterface.h ├── hip_surgery │ ├── CMakeLists.txt │ ├── xregHipSegUtils.cpp │ ├── xregHipSegUtils.h │ ├── xregMetalObjSampling.cpp │ ├── xregMetalObjSampling.h │ ├── xregMetalObjs.cpp │ ├── xregMetalObjs.h │ ├── xregPAOCuts.cpp │ ├── xregPAOCuts.h │ ├── xregPAODrawBones.cpp │ ├── xregPAODrawBones.h │ ├── xregPAOVolAfterRepo.cpp │ ├── xregPAOVolAfterRepo.h │ ├── xregSegMetalInXRay.cpp │ └── xregSegMetalInXRay.h ├── image │ ├── CMakeLists.txt │ ├── xregHUToLinAtt.cpp │ ├── xregHUToLinAtt.h │ ├── xregImageAddPoissonNoise.cpp │ ├── xregImageAddPoissonNoise.h │ ├── xregImageIntensLogTrans.cpp │ ├── xregImageIntensLogTrans.h │ ├── xregLabelWarping.cpp │ ├── xregLabelWarping.h │ ├── xregProjData.cpp │ ├── xregProjData.h │ ├── xregProjPreProc.cpp │ ├── xregProjPreProc.h │ ├── xregVariableSpacedSlices.cpp │ └── xregVariableSpacedSlices.h ├── itk │ ├── CMakeLists.txt │ ├── xregITKBackgroundImageWriter.h │ ├── xregITKBasicImageUtils.cpp │ ├── xregITKBasicImageUtils.h │ ├── xregITKCropPadUtils.cpp │ ├── xregITKCropPadUtils.h │ ├── xregITKIOUtils.cpp │ ├── xregITKIOUtils.h │ ├── xregITKLabelUtils.cpp │ ├── xregITKLabelUtils.h │ ├── xregITKMathOps.h │ ├── xregITKOpenCVUtils.h │ ├── xregITKRemapUtils.cpp │ ├── xregITKRemapUtils.h │ └── xregITKResampleUtils.h ├── opencl │ ├── CMakeLists.txt │ ├── xregOpenCLConvert.cpp │ ├── xregOpenCLConvert.h │ ├── xregOpenCLMath.cpp │ ├── xregOpenCLMath.h │ ├── xregOpenCLMiscKernels.cpp │ ├── xregOpenCLMiscKernels.h │ ├── xregOpenCLSpatial.cpp │ ├── xregOpenCLSpatial.h │ ├── xregOpenCLSys.cpp │ ├── xregOpenCLSys.h │ ├── xregViennaCLManager.cpp │ └── xregViennaCLManager.h ├── opencv │ ├── CMakeLists.txt │ ├── xregOpenCVUtils.cpp │ └── xregOpenCVUtils.h ├── optim │ ├── CMakeLists.txt │ ├── xregCMAESInterface.cpp │ ├── xregCMAESInterface.h │ ├── xregDiffEvo.cpp │ ├── xregDiffEvo.h │ ├── xregLineSearchOpt.cpp │ ├── xregLineSearchOpt.h │ ├── xregOptimTestObjFns.cpp │ ├── xregOptimTestObjFns.h │ ├── xregPSO.cpp │ ├── xregPSO.h │ ├── xregSimAnn.cpp │ └── xregSimAnn.h ├── ray_cast │ ├── CMakeLists.txt │ ├── xregEdgesFromRayCast.cpp │ ├── xregEdgesFromRayCast.h │ ├── xregProj3DLabelsTo2D.cpp │ ├── xregProj3DLabelsTo2D.h │ ├── xregRayCastBaseCPU.cpp │ ├── xregRayCastBaseCPU.h │ ├── xregRayCastBaseOCL.cpp │ ├── xregRayCastBaseOCL.h │ ├── xregRayCastDepthCPU.cpp │ ├── xregRayCastDepthCPU.h │ ├── xregRayCastDepthOCL.cpp │ ├── xregRayCastDepthOCL.h │ ├── xregRayCastInterface.cpp │ ├── xregRayCastInterface.h │ ├── xregRayCastLineIntCPU.cpp │ ├── xregRayCastLineIntCPU.h │ ├── xregRayCastLineIntOCL.cpp │ ├── xregRayCastLineIntOCL.h │ ├── xregRayCastOccContourCPU.cpp │ ├── xregRayCastOccContourCPU.h │ ├── xregRayCastOccContourOCL.cpp │ ├── xregRayCastOccContourOCL.h │ ├── xregRayCastProgOpts.cpp │ ├── xregRayCastProgOpts.h │ ├── xregRayCastSparseCollCPU.cpp │ ├── xregRayCastSparseCollCPU.h │ ├── xregRayCastSurRenderCPU.cpp │ ├── xregRayCastSurRenderCPU.h │ ├── xregRayCastSurRenderOCL.cpp │ ├── xregRayCastSurRenderOCL.h │ ├── xregRayCastSyncBuf.cpp │ ├── xregRayCastSyncBuf.h │ ├── xregSplatLineIntCPU.cpp │ └── xregSplatLineIntCPU.h ├── regi │ ├── CMakeLists.txt │ ├── interfaces_2d_3d │ │ ├── xregIntensity2D3DRegi.cpp │ │ ├── xregIntensity2D3DRegi.h │ │ ├── xregIntensity2D3DRegiBOBYQA.cpp │ │ ├── xregIntensity2D3DRegiBOBYQA.h │ │ ├── xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.cpp │ │ ├── xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.h │ │ ├── xregIntensity2D3DRegiCMAES-Device-MultiConfig.cpp │ │ ├── xregIntensity2D3DRegiCMAES-Device-MultiConfig.h │ │ ├── xregIntensity2D3DRegiCMAES-JustinSnake.cpp │ │ ├── xregIntensity2D3DRegiCMAES-JustinSnake.h │ │ ├── xregIntensity2D3DRegiCMAES.cpp │ │ ├── xregIntensity2D3DRegiCMAES.h │ │ ├── xregIntensity2D3DRegiCRS.cpp │ │ ├── xregIntensity2D3DRegiCRS.h │ │ ├── xregIntensity2D3DRegiDESCH.cpp │ │ ├── xregIntensity2D3DRegiDESCH.h │ │ ├── xregIntensity2D3DRegiDIRECT.cpp │ │ ├── xregIntensity2D3DRegiDIRECT.h │ │ ├── xregIntensity2D3DRegiDISRES.cpp │ │ ├── xregIntensity2D3DRegiDISRES.h │ │ ├── xregIntensity2D3DRegiDebug.cpp │ │ ├── xregIntensity2D3DRegiDebug.h │ │ ├── xregIntensity2D3DRegiDiffEvo.cpp │ │ ├── xregIntensity2D3DRegiDiffEvo.h │ │ ├── xregIntensity2D3DRegiExhaustive.cpp │ │ ├── xregIntensity2D3DRegiExhaustive.h │ │ ├── xregIntensity2D3DRegiHillClimb.cpp │ │ ├── xregIntensity2D3DRegiHillClimb.h │ │ ├── xregIntensity2D3DRegiNEWUOA.cpp │ │ ├── xregIntensity2D3DRegiNEWUOA.h │ │ ├── xregIntensity2D3DRegiNLOptInterface.cpp │ │ ├── xregIntensity2D3DRegiNLOptInterface.h │ │ ├── xregIntensity2D3DRegiNelderMead.cpp │ │ ├── xregIntensity2D3DRegiNelderMead.h │ │ ├── xregIntensity2D3DRegiPRAXIS.cpp │ │ ├── xregIntensity2D3DRegiPRAXIS.h │ │ ├── xregIntensity2D3DRegiPSO.cpp │ │ ├── xregIntensity2D3DRegiPSO.h │ │ ├── xregIntensity2D3DRegiSbplx.cpp │ │ ├── xregIntensity2D3DRegiSbplx.h │ │ ├── xregMultiObjMultiLevel2D3DRegi.cpp │ │ ├── xregMultiObjMultiLevel2D3DRegi.h │ │ ├── xregMultiObjMultiLevel2D3DRegiDebug.cpp │ │ └── xregMultiObjMultiLevel2D3DRegiDebug.h │ ├── penalty_fns_2d_3d │ │ ├── xregRegi2D3DPenaltyFn.cpp │ │ ├── xregRegi2D3DPenaltyFn.h │ │ ├── xregRegi2D3DPenaltyFnCombo.cpp │ │ ├── xregRegi2D3DPenaltyFnCombo.h │ │ ├── xregRegi2D3DPenaltyFnDebugH5.cpp │ │ ├── xregRegi2D3DPenaltyFnDebugH5.h │ │ ├── xregRegi2D3DPenaltyFnGlobalPelvis.cpp │ │ ├── xregRegi2D3DPenaltyFnGlobalPelvis.h │ │ ├── xregRegi2D3DPenaltyFnLandReproj.cpp │ │ ├── xregRegi2D3DPenaltyFnLandReproj.h │ │ ├── xregRegi2D3DPenaltyFnPelvisAP.cpp │ │ ├── xregRegi2D3DPenaltyFnPelvisAP.h │ │ ├── xregRegi2D3DPenaltyFnRelPose.cpp │ │ ├── xregRegi2D3DPenaltyFnRelPose.h │ │ ├── xregRegi2D3DPenaltyFnSE3EulerDecomp.cpp │ │ ├── xregRegi2D3DPenaltyFnSE3EulerDecomp.h │ │ ├── xregRegi2D3DPenaltyFnSE3Mag.cpp │ │ ├── xregRegi2D3DPenaltyFnSE3Mag.h │ │ ├── xregRegi2D3DPenaltyFnSnakeLandReproj.cpp │ │ └── xregRegi2D3DPenaltyFnSnakeLandReproj.h │ ├── pnp_solvers │ │ ├── xregLandmark2D3DRegi.cpp │ │ ├── xregLandmark2D3DRegi.h │ │ ├── xregLandmark2D3DRegiReprojDist.cpp │ │ ├── xregLandmark2D3DRegiReprojDist.h │ │ ├── xregLandmark2D3DRegiReprojDistCMAES.cpp │ │ ├── xregLandmark2D3DRegiReprojDistCMAES.h │ │ ├── xregP3PCArm.cpp │ │ ├── xregP3PCArm.h │ │ ├── xregPOSIT.cpp │ │ ├── xregPOSIT.h │ │ ├── xregPnPUtils.cpp │ │ ├── xregPnPUtils.h │ │ ├── xregRANSACPnP.cpp │ │ └── xregRANSACPnP.h │ ├── sim_metrics_2d │ │ ├── xregImgSimMetric2D.cpp │ │ ├── xregImgSimMetric2D.h │ │ ├── xregImgSimMetric2DBoundaryEdgesCPU.cpp │ │ ├── xregImgSimMetric2DBoundaryEdgesCPU.h │ │ ├── xregImgSimMetric2DCPU.cpp │ │ ├── xregImgSimMetric2DCPU.h │ │ ├── xregImgSimMetric2DCombine.cpp │ │ ├── xregImgSimMetric2DCombine.h │ │ ├── xregImgSimMetric2DGradDiffCPU.cpp │ │ ├── xregImgSimMetric2DGradDiffCPU.h │ │ ├── xregImgSimMetric2DGradImgCPU.cpp │ │ ├── xregImgSimMetric2DGradImgCPU.h │ │ ├── xregImgSimMetric2DGradImgOCL.cpp │ │ ├── xregImgSimMetric2DGradImgOCL.h │ │ ├── xregImgSimMetric2DGradImgParamInterface.h │ │ ├── xregImgSimMetric2DGradNCCCPU.cpp │ │ ├── xregImgSimMetric2DGradNCCCPU.h │ │ ├── xregImgSimMetric2DGradNCCOCL.cpp │ │ ├── xregImgSimMetric2DGradNCCOCL.h │ │ ├── xregImgSimMetric2DGradOrientCPU.cpp │ │ ├── xregImgSimMetric2DGradOrientCPU.h │ │ ├── xregImgSimMetric2DNCCCPU.cpp │ │ ├── xregImgSimMetric2DNCCCPU.h │ │ ├── xregImgSimMetric2DNCCOCL.cpp │ │ ├── xregImgSimMetric2DNCCOCL.h │ │ ├── xregImgSimMetric2DOCL.cpp │ │ ├── xregImgSimMetric2DOCL.h │ │ ├── xregImgSimMetric2DPatchCommon.cpp │ │ ├── xregImgSimMetric2DPatchCommon.h │ │ ├── xregImgSimMetric2DPatchGradNCCCPU.cpp │ │ ├── xregImgSimMetric2DPatchGradNCCCPU.h │ │ ├── xregImgSimMetric2DPatchGradNCCOCL.cpp │ │ ├── xregImgSimMetric2DPatchGradNCCOCL.h │ │ ├── xregImgSimMetric2DPatchNCCCPU.cpp │ │ ├── xregImgSimMetric2DPatchNCCCPU.h │ │ ├── xregImgSimMetric2DPatchNCCOCL.cpp │ │ ├── xregImgSimMetric2DPatchNCCOCL.h │ │ ├── xregImgSimMetric2DProgOpts.cpp │ │ ├── xregImgSimMetric2DProgOpts.h │ │ ├── xregImgSimMetric2DSSDCPU.cpp │ │ ├── xregImgSimMetric2DSSDCPU.h │ │ ├── xregImgSimMetric2DSSDOCL.cpp │ │ └── xregImgSimMetric2DSSDOCL.h │ ├── xregICP3D3D.cpp │ ├── xregICP3D3D.h │ ├── xregPairedPointRegi3D3D.cpp │ ├── xregPairedPointRegi3D3D.h │ ├── xregSE3OptVars.cpp │ └── xregSE3OptVars.h ├── spatial │ ├── CMakeLists.txt │ ├── xregFitCircle.cpp │ ├── xregFitCircle.h │ ├── xregFitPlane.cpp │ ├── xregFitPlane.h │ ├── xregKDTree.cpp │ ├── xregKDTree.h │ ├── xregSpatialPrimitives.cpp │ └── xregSpatialPrimitives.h ├── transforms │ ├── CMakeLists.txt │ ├── xregAnatCoordFrames.cpp │ ├── xregAnatCoordFrames.h │ ├── xregPerspectiveXform.cpp │ ├── xregPerspectiveXform.h │ ├── xregPointCloudUtils.cpp │ ├── xregPointCloudUtils.h │ ├── xregRigidUtils.cpp │ ├── xregRigidUtils.h │ ├── xregRotUtils.cpp │ └── xregRotUtils.h ├── version │ ├── CMakeLists.txt │ ├── xregVersionConfigVals.cpp.in │ ├── xregVersionInfo.cpp │ └── xregVersionInfo.h └── vtk │ ├── CMakeLists.txt │ ├── xregVTK3DPlotter.cpp │ ├── xregVTK3DPlotter.h │ ├── xregVTKBasicUtils.cpp │ ├── xregVTKBasicUtils.h │ ├── xregVTKITKUtils.cpp │ ├── xregVTKITKUtils.h │ ├── xregVTKMeshUtils.cpp │ └── xregVTKMeshUtils.h └── third_party ├── CMakeLists.txt ├── OpenCL-Headers-2020.06.16 ├── .travis.yml ├── CL │ ├── cl.h │ ├── cl_d3d10.h │ ├── cl_d3d11.h │ ├── cl_dx9_media_sharing.h │ ├── cl_dx9_media_sharing_intel.h │ ├── cl_egl.h │ ├── cl_ext.h │ ├── cl_ext_intel.h │ ├── cl_gl.h │ ├── cl_gl_ext.h │ ├── cl_half.h │ ├── cl_icd.h │ ├── cl_platform.h │ ├── cl_va_api_media_sharing_intel.h │ ├── cl_version.h │ └── opencl.h ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md └── tests │ ├── CMakeLists.txt │ ├── README.md │ ├── test_cl.h.c │ ├── test_cl_egl.h.c │ ├── test_cl_ext.h.c │ ├── test_cl_ext_intel.h.c │ ├── test_cl_gl.h.c │ ├── test_cl_gl_ext.h.c │ ├── test_cl_half.h.c │ ├── test_cl_icd.h.c │ ├── test_cl_platform.h.c │ ├── test_cl_version.h.c │ ├── test_headers.c │ └── test_opencl.h.c ├── OpenCL-ICD-Loader-2020.06.16 ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── inc │ └── README.txt ├── loader │ ├── icd.c │ ├── icd.h │ ├── icd_cmake_config.h.in │ ├── icd_dispatch.c │ ├── icd_dispatch.h │ ├── icd_envvars.h │ ├── icd_platform.h │ ├── linux │ │ ├── icd_exports.map.in │ │ ├── icd_linux.c │ │ └── icd_linux_envvars.c │ └── windows │ │ ├── OpenCL.def.in │ │ ├── OpenCL.rc │ │ ├── adapter.h │ │ ├── icd_windows.c │ │ ├── icd_windows.h │ │ ├── icd_windows_apppackage.cpp │ │ ├── icd_windows_apppackage.h │ │ ├── icd_windows_dxgk.c │ │ ├── icd_windows_dxgk.h │ │ ├── icd_windows_envvars.c │ │ ├── icd_windows_hkr.c │ │ └── icd_windows_hkr.h └── test │ ├── CMakeLists.txt │ ├── driver_stub │ ├── CMakeLists.txt │ ├── cl.c │ ├── cl_ext.c │ ├── cl_gl.c │ ├── driver_stub.def │ ├── icd.c │ ├── icd_driver_exports.map │ ├── icd_structs.h │ └── rename_api.h │ ├── inc │ └── platform │ │ └── icd_test_log.h │ ├── loader_test │ ├── CMakeLists.txt │ ├── callbacks.c │ ├── icd_test_match.c │ ├── main.c │ ├── param_struct.h │ ├── test_buffer_object.c │ ├── test_cl_runtime.c │ ├── test_clgl.c │ ├── test_create_calls.c │ ├── test_image_objects.c │ ├── test_kernel.c │ ├── test_platforms.c │ ├── test_program_objects.c │ └── test_sampler_objects.c │ └── log │ ├── CMakeLists.txt │ └── icd_test_log.c └── cmaes ├── CMakeLists.txt ├── boundary_transformation.c ├── boundary_transformation.h ├── cmaes.c ├── cmaes.h ├── cmaes_interface.h └── licenses.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/README.md -------------------------------------------------------------------------------- /apps/Autonomous_Carm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_calibrate_kwire_pts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_calibrate_kwire_pts/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_calibrate_kwire_pts/autocarm_calibrate_kwire_pts_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_calibrate_kwire_pts/autocarm_calibrate_kwire_pts_main.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/autocarm_fidest_multiview_pelvis_regi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/autocarm_fidest_multiview_pelvis_regi_main.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/autocarm_fidest_multiview_pelvis_regi_main_calibration_data_testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_fidest_multiview_pelvis_regi/autocarm_fidest_multiview_pelvis_regi_main_calibration_data_testing.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_pelvis_kwire_triangulation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_pelvis_kwire_triangulation/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_pelvis_kwire_triangulation/autocarm_pelvis_kwire_triangulation_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_pelvis_kwire_triangulation/autocarm_pelvis_kwire_triangulation_main.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_proc_xraydcm_to_tiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_proc_xraydcm_to_tiff/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_proc_xraydcm_to_tiff/autocarm_proc_xraydcm_to_tiff_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_proc_xraydcm_to_tiff/autocarm_proc_xraydcm_to_tiff_main.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_reproj_jigpts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_reproj_jigpts/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_reproj_jigpts/autocarm_reproj_jigpts_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_reproj_jigpts/autocarm_reproj_jigpts_main.cpp -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_singleview_pelvis_regi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_singleview_pelvis_regi/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Autonomous_Carm/autocarm_singleview_pelvis_regi/autocarm_singleview_pelvis_regi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Autonomous_Carm/autocarm_singleview_pelvis_regi/autocarm_singleview_pelvis_regi_main.cpp -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/carm_calibration_handeye_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/carm_calibration_handeye_main.cpp -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/handeye_carm_source_to_fiducial_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_handeye/handeye_carm_source_to_fiducial_main.cpp -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/carm_calibration_polaris_jig_pnp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/carm_calibration_polaris_jig_pnp_main.cpp -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/jhmr_carm_polaris_pnp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_polaris_jig_pnp/jhmr_carm_polaris_pnp_main.cpp -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_proj_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_proj_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_PolarisMarker_Calibration/carm_calibration_proj_data/xreg_carm_calibration_proj_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_PolarisMarker_Calibration/carm_calibration_proj_data/xreg_carm_calibration_proj_data_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_disk_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_disk_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_disk_data/xreg_gen_create_disk_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_disk_data/xreg_gen_create_disk_data_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_disk_data_fromh5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_disk_data_fromh5/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_disk_data_fromh5/xreg_gen_create_disk_data_fromh5_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_disk_data_fromh5/xreg_gen_create_disk_data_fromh5_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_h5_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_h5_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_h5_data/xreg_gen_create_h5_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_h5_data/xreg_gen_create_h5_data_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_h5_data/xreg_gen_create_h5_data_main_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_h5_data/xreg_gen_create_h5_data_main_backup.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_ipcai_label_h5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_ipcai_label_h5/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_ipcai_label_h5/xreg_gen_create_h5_data_main_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_ipcai_label_h5/xreg_gen_create_h5_data_main_backup.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_ipcai_label_h5/xreg_gen_create_ipcai_label_h5_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_ipcai_label_h5/xreg_gen_create_ipcai_label_h5_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_vol_h5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_vol_h5/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/create_vol_h5/xreg_gen_create_vol_h5_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/create_vol_h5/xreg_gen_create_vol_h5_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/disk_images_to_h5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/disk_images_to_h5/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/disk_images_to_h5/xreg_gen_disk_images_to_h5_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/disk_images_to_h5/xreg_gen_disk_images_to_h5_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/export_ipcai_xform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/export_ipcai_xform/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/export_ipcai_xform/xreg_export_ipcai_xform_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/export_ipcai_xform/xreg_export_ipcai_xform_main.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/initial_pelvis_pose_estimate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/initial_pelvis_pose_estimate/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/initial_pelvis_pose_estimate/xreg_initial_pelvis_pose_estimate_main.cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/initial_pelvis_pose_estimate/xreg_initial_pelvis_pose_estimate_main.cpp.cpp -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/preproc_deepdrr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/preproc_deepdrr/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Carm_Xray_Simulation/preproc_deepdrr/xreg_gen_preproc_deepdrr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Carm_Xray_Simulation/preproc_deepdrr/xreg_gen_preproc_deepdrr_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/README.md -------------------------------------------------------------------------------- /apps/Femoroplasty/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/img/.DS_Store -------------------------------------------------------------------------------- /apps/Femoroplasty/img/Concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/img/Concept.png -------------------------------------------------------------------------------- /apps/Femoroplasty/img/regi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/img/regi.gif -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_femur_regi_multiview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_femur_regi_multiview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_femur_regi_multiview/device_femur_regi_multiview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_femur_regi_multiview/device_femur_regi_multiview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/device_multiconfig_singleview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/device_multiconfig_singleview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/jhmr_fem_regi_device_multiconfig_singleview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_multiconfig_singleview/jhmr_fem_regi_device_multiconfig_singleview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_regi_singleview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_regi_singleview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/injection_device_registration/device_regi_singleview/device_regi_singleview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/injection_device_registration/device_regi_singleview/device_regi_singleview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_femur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_femur/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_femur/femoroplasty_regi_multiview_femur_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_femur/femoroplasty_regi_multiview_femur_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_pelvis_and_femur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_pelvis_and_femur/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_pelvis_and_femur/femoroplasty_regi_multiview_pelvis_and_femur_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_multiview_pelvis_and_femur/femoroplasty_regi_multiview_pelvis_and_femur_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_femur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_femur/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_femur/femoroplasty_regi_singleview_femur_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_femur/femoroplasty_regi_singleview_femur_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_pelvis_and_femur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_pelvis_and_femur/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_pelvis_and_femur/femoroplasty_regi_singleview_pelvis_and_femur_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femoroplasty_regi_singleview_pelvis_and_femur/femoroplasty_regi_singleview_pelvis_and_femur_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femur_regi_singleview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femur_regi_singleview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/femur_regi_singleview/femur_regi_singleview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/femur_regi_singleview/femur_regi_singleview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/pelvis_femur_regi_multiview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/pelvis_femur_regi_multiview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pelvis_femur_registration/pelvis_femur_regi_multiview/pelvis_femur_regi_multiview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pelvis_femur_registration/pelvis_femur_regi_multiview/pelvis_femur_regi_multiview_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pre_processing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pre_processing/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pre_processing/apply_femur_seg_to_CT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pre_processing/apply_femur_seg_to_CT/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pre_processing/apply_femur_seg_to_CT/apply_femur_seg_to_CT_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pre_processing/apply_femur_seg_to_CT/apply_femur_seg_to_CT_main.cpp -------------------------------------------------------------------------------- /apps/Femoroplasty/pre_processing/flip_seg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pre_processing/flip_seg/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Femoroplasty/pre_processing/flip_seg/flip_seg_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Femoroplasty/pre_processing/flip_seg/flip_seg_main.cpp -------------------------------------------------------------------------------- /apps/Osteonecrosis/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(example_drr_regi_singleview_femur) 2 | -------------------------------------------------------------------------------- /apps/Osteonecrosis/example_drr_regi_singleview_femur/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Osteonecrosis/example_drr_regi_singleview_femur/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Osteonecrosis/example_drr_regi_singleview_femur/example_drr_regi_singleview_femur_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Osteonecrosis/example_drr_regi_singleview_femur/example_drr_regi_singleview_femur_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/example_drr_proj_justin_snakemodel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/example_drr_proj_justin_snakemodel/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/example_drr_proj_justin_snakemodel/snake_example_drr_proj_justin_snakemodel_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/example_drr_proj_justin_snakemodel/snake_example_drr_proj_justin_snakemodel_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/include/xregBuildJustinSnakeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/include/xregBuildJustinSnakeModel.h -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/newsnake_sim_multiview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/newsnake_sim_multiview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/newsnake_sim_multiview/newsnake_sim_multiview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/newsnake_sim_multiview/newsnake_sim_multiview_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/newsnake_sim_singleview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/newsnake_sim_singleview/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/newsnake_sim_singleview/newsnake_sim_singleview_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/newsnake_sim_singleview/newsnake_sim_singleview_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/Readme.md -------------------------------------------------------------------------------- /apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/xreg_regi2d3d_replay_newsnake_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Continuum_Manipulator/regi2d3d_replay_newsnake/xreg_regi2d3d_replay_newsnake_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Injection_Device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Injection_Device/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Injection_Device/device_bb_pnp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Injection_Device/device_bb_pnp/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Injection_Device/device_bb_pnp/device_bb_pnp_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Injection_Device/device_bb_pnp/device_bb_pnp_main.cpp -------------------------------------------------------------------------------- /apps/Robotic_Injection_Device/device_handeye_calibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Injection_Device/device_handeye_calibration/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Robotic_Injection_Device/device_handeye_calibration/device_handeye_calibration_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/Robotic_Injection_Device/device_handeye_calibration/device_handeye_calibration_main.cpp -------------------------------------------------------------------------------- /apps/image_io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/add_lands_to_proj_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/add_lands_to_proj_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/add_lands_to_proj_data/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/add_lands_to_proj_data/Readme.md -------------------------------------------------------------------------------- /apps/image_io/add_lands_to_proj_data/xreg_add_lands_to_proj_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/add_lands_to_proj_data/xreg_add_lands_to_proj_data_main.cpp -------------------------------------------------------------------------------- /apps/image_io/convert_resample_dicom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/convert_resample_dicom/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/convert_resample_dicom/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/convert_resample_dicom/Readme.md -------------------------------------------------------------------------------- /apps/image_io/convert_resample_dicom/xreg_convert_resample_dicom_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/convert_resample_dicom/xreg_convert_resample_dicom_main.cpp -------------------------------------------------------------------------------- /apps/image_io/crop_vol/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/crop_vol/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/crop_vol/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/crop_vol/Readme.md -------------------------------------------------------------------------------- /apps/image_io/crop_vol/xreg_crop_vol_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/crop_vol/xreg_crop_vol_main.cpp -------------------------------------------------------------------------------- /apps/image_io/draw_xray_scene/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/draw_xray_scene/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/draw_xray_scene/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/draw_xray_scene/Readme.md -------------------------------------------------------------------------------- /apps/image_io/draw_xray_scene/xreg_draw_xray_scene_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/draw_xray_scene/xreg_draw_xray_scene_main.cpp -------------------------------------------------------------------------------- /apps/image_io/extract_nii_from_proj_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/extract_nii_from_proj_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/extract_nii_from_proj_data/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/extract_nii_from_proj_data/Readme.md -------------------------------------------------------------------------------- /apps/image_io/extract_nii_from_proj_data/xreg_extract_nii_from_proj_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/extract_nii_from_proj_data/xreg_extract_nii_from_proj_data_main.cpp -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay/Readme.md -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay/xreg_regi2d3d_replay_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay/xreg_regi2d3d_replay_main.cpp -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay_multiconfig_device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay_multiconfig_device/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay_multiconfig_device/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay_multiconfig_device/Readme.md -------------------------------------------------------------------------------- /apps/image_io/regi2d3d_replay_multiconfig_device/xreg_regi2d3d_replay_multiconfig_device_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/regi2d3d_replay_multiconfig_device/xreg_regi2d3d_replay_multiconfig_device_main.cpp -------------------------------------------------------------------------------- /apps/image_io/remap_and_tile_proj_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/remap_and_tile_proj_data/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/remap_and_tile_proj_data/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/remap_and_tile_proj_data/Readme.md -------------------------------------------------------------------------------- /apps/image_io/remap_and_tile_proj_data/xreg_remap_tile_proj_data_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/remap_and_tile_proj_data/xreg_remap_tile_proj_data_main.cpp -------------------------------------------------------------------------------- /apps/image_io/report_dicom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/report_dicom/CMakeLists.txt -------------------------------------------------------------------------------- /apps/image_io/report_dicom/xreg_report_dicom_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/image_io/report_dicom/xreg_report_dicom_main.cpp -------------------------------------------------------------------------------- /apps/mesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mesh/create_mesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/create_mesh/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mesh/create_mesh/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/create_mesh/Readme.md -------------------------------------------------------------------------------- /apps/mesh/create_mesh/xreg_create_mesh_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/create_mesh/xreg_create_mesh_main.cpp -------------------------------------------------------------------------------- /apps/mesh/show_mesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/show_mesh/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mesh/show_mesh/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/show_mesh/Readme.md -------------------------------------------------------------------------------- /apps/mesh/show_mesh/xreg_show_mesh_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/show_mesh/xreg_show_mesh_main.cpp -------------------------------------------------------------------------------- /apps/mesh/sur_regi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/sur_regi/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mesh/sur_regi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/sur_regi/Readme.md -------------------------------------------------------------------------------- /apps/mesh/sur_regi/xreg_sur_regi_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/mesh/sur_regi/xreg_sur_regi_main.cpp -------------------------------------------------------------------------------- /apps/point_clouds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/point_clouds/CMakeLists.txt -------------------------------------------------------------------------------- /apps/point_clouds/print_fcsv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/point_clouds/print_fcsv/CMakeLists.txt -------------------------------------------------------------------------------- /apps/point_clouds/print_fcsv/xreg_print_fcsv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/point_clouds/print_fcsv/xreg_print_fcsv_main.cpp -------------------------------------------------------------------------------- /apps/point_clouds/xform_fcsv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/point_clouds/xform_fcsv/CMakeLists.txt -------------------------------------------------------------------------------- /apps/point_clouds/xform_fcsv/xreg_xform_fcsv_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/point_clouds/xform_fcsv/xreg_xform_fcsv_main.cpp -------------------------------------------------------------------------------- /apps/transforms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/transforms/CMakeLists.txt -------------------------------------------------------------------------------- /apps/transforms/print_rigid_transform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/transforms/print_rigid_transform/CMakeLists.txt -------------------------------------------------------------------------------- /apps/transforms/print_rigid_transform/xreg_print_rigid_transform_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/apps/transforms/print_rigid_transform/xreg_print_rigid_transform_main.cpp -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/tbb/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/cmake/tbb/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/xregConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/cmake/xregConfig.cmake.in -------------------------------------------------------------------------------- /dist/centos_dist_pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/centos_dist_pkgs -------------------------------------------------------------------------------- /dist/dist_readme/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/dist_readme/README.txt -------------------------------------------------------------------------------- /dist/make_linux_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/make_linux_dist.py -------------------------------------------------------------------------------- /dist/make_macos_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/make_macos_dist.py -------------------------------------------------------------------------------- /dist/setup-xreg-vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/setup-xreg-vars.bat -------------------------------------------------------------------------------- /dist/ubuntu_dist_pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/dist/ubuntu_dist_pkgs -------------------------------------------------------------------------------- /docker/Dockerfile.centos_dev_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/Dockerfile.centos_dev_base -------------------------------------------------------------------------------- /docker/Dockerfile.ubuntu_dev_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/Dockerfile.ubuntu_dev_base -------------------------------------------------------------------------------- /docker/Dockerfile.xreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/Dockerfile.xreg -------------------------------------------------------------------------------- /docker/Dockerfile.xreg-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/Dockerfile.xreg-deps -------------------------------------------------------------------------------- /docker/Dockerfile.xreg-dist-bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/Dockerfile.xreg-dist-bin -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/docker/README.md -------------------------------------------------------------------------------- /example_build_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/example_build_script -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/basic_math/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/CMakeLists.txt -------------------------------------------------------------------------------- /lib/basic_math/xregBasicStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregBasicStats.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregBasicStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregBasicStats.h -------------------------------------------------------------------------------- /lib/basic_math/xregDistInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregDistInterface.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregDistInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregDistInterface.h -------------------------------------------------------------------------------- /lib/basic_math/xregFoldNormDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregFoldNormDist.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregFoldNormDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregFoldNormDist.h -------------------------------------------------------------------------------- /lib/basic_math/xregLinAlgUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregLinAlgUtils.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregLinAlgUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregLinAlgUtils.h -------------------------------------------------------------------------------- /lib/basic_math/xregLogNormDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregLogNormDist.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregLogNormDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregLogNormDist.h -------------------------------------------------------------------------------- /lib/basic_math/xregNDRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNDRange.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregNDRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNDRange.h -------------------------------------------------------------------------------- /lib/basic_math/xregNormDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNormDist.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregNormDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNormDist.h -------------------------------------------------------------------------------- /lib/basic_math/xregNormDistFit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNormDistFit.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregNormDistFit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNormDistFit.h -------------------------------------------------------------------------------- /lib/basic_math/xregNullDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNullDist.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregNullDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregNullDist.h -------------------------------------------------------------------------------- /lib/basic_math/xregPolyFindZeros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregPolyFindZeros.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregPolyFindZeros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregPolyFindZeros.h -------------------------------------------------------------------------------- /lib/basic_math/xregPolyFit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregPolyFit.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregPolyFit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregPolyFit.h -------------------------------------------------------------------------------- /lib/basic_math/xregSampleUniformUnitVecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregSampleUniformUnitVecs.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregSampleUniformUnitVecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregSampleUniformUnitVecs.h -------------------------------------------------------------------------------- /lib/basic_math/xregSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregSpline.cpp -------------------------------------------------------------------------------- /lib/basic_math/xregSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/basic_math/xregSpline.h -------------------------------------------------------------------------------- /lib/bigssMath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/CMakeLists.txt -------------------------------------------------------------------------------- /lib/bigssMath/bigssKinematicsUtils-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssKinematicsUtils-inl.h -------------------------------------------------------------------------------- /lib/bigssMath/bigssKinematicsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssKinematicsUtils.cpp -------------------------------------------------------------------------------- /lib/bigssMath/bigssKinematicsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssKinematicsUtils.h -------------------------------------------------------------------------------- /lib/bigssMath/bigssMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssMath.cpp -------------------------------------------------------------------------------- /lib/bigssMath/bigssMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssMath.h -------------------------------------------------------------------------------- /lib/bigssMath/bigssMathEigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssMathEigen.cpp -------------------------------------------------------------------------------- /lib/bigssMath/bigssMathEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigssMathEigen.h -------------------------------------------------------------------------------- /lib/bigssMath/bigss_debug_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigss_debug_util.cpp -------------------------------------------------------------------------------- /lib/bigssMath/bigss_debug_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/bigss_debug_util.h -------------------------------------------------------------------------------- /lib/bigssMath/eigenAddons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/eigenAddons.h -------------------------------------------------------------------------------- /lib/bigssMath/eigenMatrixAddons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/eigenMatrixAddons.h -------------------------------------------------------------------------------- /lib/bigssMath/interpolatingSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/interpolatingSpline.cpp -------------------------------------------------------------------------------- /lib/bigssMath/interpolatingSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/interpolatingSpline.h -------------------------------------------------------------------------------- /lib/bigssMath/slicerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/slicerUtil.cpp -------------------------------------------------------------------------------- /lib/bigssMath/slicerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/slicerUtil.h -------------------------------------------------------------------------------- /lib/bigssMath/smoothingSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/smoothingSpline.cpp -------------------------------------------------------------------------------- /lib/bigssMath/smoothingSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/smoothingSpline.h -------------------------------------------------------------------------------- /lib/bigssMath/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/spline.h -------------------------------------------------------------------------------- /lib/bigssMath/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/test.cpp -------------------------------------------------------------------------------- /lib/bigssMath/testSmoothingSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/testSmoothingSpline.cpp -------------------------------------------------------------------------------- /lib/bigssMath/transformTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/bigssMath/transformTest.cpp -------------------------------------------------------------------------------- /lib/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/CMakeLists.txt -------------------------------------------------------------------------------- /lib/common/xregAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregAssert.cpp -------------------------------------------------------------------------------- /lib/common/xregAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregAssert.h -------------------------------------------------------------------------------- /lib/common/xregCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregCommon.h -------------------------------------------------------------------------------- /lib/common/xregCompareUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregCompareUtils.h -------------------------------------------------------------------------------- /lib/common/xregEndianUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregEndianUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregEndianUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregEndianUtils.h -------------------------------------------------------------------------------- /lib/common/xregExceptionUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregExceptionUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregExceptionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregExceptionUtils.h -------------------------------------------------------------------------------- /lib/common/xregFilesystemUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregFilesystemUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregFilesystemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregFilesystemUtils.h -------------------------------------------------------------------------------- /lib/common/xregLandmarkMapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregLandmarkMapUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregLandmarkMapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregLandmarkMapUtils.h -------------------------------------------------------------------------------- /lib/common/xregMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregMesh.cpp -------------------------------------------------------------------------------- /lib/common/xregMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregMesh.h -------------------------------------------------------------------------------- /lib/common/xregObjWithOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregObjWithOStream.cpp -------------------------------------------------------------------------------- /lib/common/xregObjWithOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregObjWithOStream.h -------------------------------------------------------------------------------- /lib/common/xregObjectUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregObjectUtils.h -------------------------------------------------------------------------------- /lib/common/xregProgOptUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregProgOptUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregProgOptUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregProgOptUtils.h -------------------------------------------------------------------------------- /lib/common/xregSampleUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregSampleUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregSampleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregSampleUtils.h -------------------------------------------------------------------------------- /lib/common/xregSizedTypeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregSizedTypeUtils.h -------------------------------------------------------------------------------- /lib/common/xregStdStreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStdStreamUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregStdStreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStdStreamUtils.h -------------------------------------------------------------------------------- /lib/common/xregStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStreams.cpp -------------------------------------------------------------------------------- /lib/common/xregStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStreams.h -------------------------------------------------------------------------------- /lib/common/xregStringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStringUtils.cpp -------------------------------------------------------------------------------- /lib/common/xregStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregStringUtils.h -------------------------------------------------------------------------------- /lib/common/xregTBBUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregTBBUtils.h -------------------------------------------------------------------------------- /lib/common/xregTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregTimer.cpp -------------------------------------------------------------------------------- /lib/common/xregTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregTimer.h -------------------------------------------------------------------------------- /lib/common/xregTypeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/common/xregTypeUtils.h -------------------------------------------------------------------------------- /lib/file_formats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/CMakeLists.txt -------------------------------------------------------------------------------- /lib/file_formats/xregACSVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregACSVUtils.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregACSVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregACSVUtils.h -------------------------------------------------------------------------------- /lib/file_formats/xregCIOSFusionDICOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregCIOSFusionDICOM.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregCIOSFusionDICOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregCIOSFusionDICOM.h -------------------------------------------------------------------------------- /lib/file_formats/xregCSVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregCSVUtils.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregCSVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregCSVUtils.h -------------------------------------------------------------------------------- /lib/file_formats/xregDICOMUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregDICOMUtils.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregDICOMUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregDICOMUtils.h -------------------------------------------------------------------------------- /lib/file_formats/xregFCSVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregFCSVUtils.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregFCSVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregFCSVUtils.h -------------------------------------------------------------------------------- /lib/file_formats/xregH5CamModelIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5CamModelIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregH5CamModelIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5CamModelIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregH5MeshIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5MeshIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregH5MeshIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5MeshIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregH5PAOIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5PAOIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregH5PAOIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5PAOIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregH5ProjDataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5ProjDataIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregH5ProjDataIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5ProjDataIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregH5SE3OptVarsIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5SE3OptVarsIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregH5SE3OptVarsIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregH5SE3OptVarsIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregMeshIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregMeshIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregMeshIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregMeshIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregPAOIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregPAOIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregPAOIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregPAOIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregSTLMeshIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregSTLMeshIO.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregSTLMeshIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregSTLMeshIO.h -------------------------------------------------------------------------------- /lib/file_formats/xregWriteVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregWriteVideo.cpp -------------------------------------------------------------------------------- /lib/file_formats/xregWriteVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/file_formats/xregWriteVideo.h -------------------------------------------------------------------------------- /lib/hdf5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hdf5/CMakeLists.txt -------------------------------------------------------------------------------- /lib/hdf5/xregHDF5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hdf5/xregHDF5.cpp -------------------------------------------------------------------------------- /lib/hdf5/xregHDF5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hdf5/xregHDF5.h -------------------------------------------------------------------------------- /lib/hdf5/xregHDF5Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hdf5/xregHDF5Internal.h -------------------------------------------------------------------------------- /lib/hdf5/xregHDF5ReadWriteInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hdf5/xregHDF5ReadWriteInterface.h -------------------------------------------------------------------------------- /lib/hip_surgery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/CMakeLists.txt -------------------------------------------------------------------------------- /lib/hip_surgery/xregHipSegUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregHipSegUtils.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregHipSegUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregHipSegUtils.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregMetalObjSampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregMetalObjSampling.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregMetalObjSampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregMetalObjSampling.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregMetalObjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregMetalObjs.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregMetalObjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregMetalObjs.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAOCuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAOCuts.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAOCuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAOCuts.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAODrawBones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAODrawBones.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAODrawBones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAODrawBones.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAOVolAfterRepo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAOVolAfterRepo.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregPAOVolAfterRepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregPAOVolAfterRepo.h -------------------------------------------------------------------------------- /lib/hip_surgery/xregSegMetalInXRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregSegMetalInXRay.cpp -------------------------------------------------------------------------------- /lib/hip_surgery/xregSegMetalInXRay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/hip_surgery/xregSegMetalInXRay.h -------------------------------------------------------------------------------- /lib/image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/CMakeLists.txt -------------------------------------------------------------------------------- /lib/image/xregHUToLinAtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregHUToLinAtt.cpp -------------------------------------------------------------------------------- /lib/image/xregHUToLinAtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregHUToLinAtt.h -------------------------------------------------------------------------------- /lib/image/xregImageAddPoissonNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregImageAddPoissonNoise.cpp -------------------------------------------------------------------------------- /lib/image/xregImageAddPoissonNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregImageAddPoissonNoise.h -------------------------------------------------------------------------------- /lib/image/xregImageIntensLogTrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregImageIntensLogTrans.cpp -------------------------------------------------------------------------------- /lib/image/xregImageIntensLogTrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregImageIntensLogTrans.h -------------------------------------------------------------------------------- /lib/image/xregLabelWarping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregLabelWarping.cpp -------------------------------------------------------------------------------- /lib/image/xregLabelWarping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregLabelWarping.h -------------------------------------------------------------------------------- /lib/image/xregProjData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregProjData.cpp -------------------------------------------------------------------------------- /lib/image/xregProjData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregProjData.h -------------------------------------------------------------------------------- /lib/image/xregProjPreProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregProjPreProc.cpp -------------------------------------------------------------------------------- /lib/image/xregProjPreProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregProjPreProc.h -------------------------------------------------------------------------------- /lib/image/xregVariableSpacedSlices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregVariableSpacedSlices.cpp -------------------------------------------------------------------------------- /lib/image/xregVariableSpacedSlices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/image/xregVariableSpacedSlices.h -------------------------------------------------------------------------------- /lib/itk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/CMakeLists.txt -------------------------------------------------------------------------------- /lib/itk/xregITKBackgroundImageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKBackgroundImageWriter.h -------------------------------------------------------------------------------- /lib/itk/xregITKBasicImageUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKBasicImageUtils.cpp -------------------------------------------------------------------------------- /lib/itk/xregITKBasicImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKBasicImageUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKCropPadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKCropPadUtils.cpp -------------------------------------------------------------------------------- /lib/itk/xregITKCropPadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKCropPadUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKIOUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKIOUtils.cpp -------------------------------------------------------------------------------- /lib/itk/xregITKIOUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKIOUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKLabelUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKLabelUtils.cpp -------------------------------------------------------------------------------- /lib/itk/xregITKLabelUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKLabelUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKMathOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKMathOps.h -------------------------------------------------------------------------------- /lib/itk/xregITKOpenCVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKOpenCVUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKRemapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKRemapUtils.cpp -------------------------------------------------------------------------------- /lib/itk/xregITKRemapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKRemapUtils.h -------------------------------------------------------------------------------- /lib/itk/xregITKResampleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/itk/xregITKResampleUtils.h -------------------------------------------------------------------------------- /lib/opencl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/CMakeLists.txt -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLConvert.cpp -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLConvert.h -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLMath.cpp -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLMath.h -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLMiscKernels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLMiscKernels.cpp -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLMiscKernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLMiscKernels.h -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLSpatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLSpatial.cpp -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLSpatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLSpatial.h -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLSys.cpp -------------------------------------------------------------------------------- /lib/opencl/xregOpenCLSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregOpenCLSys.h -------------------------------------------------------------------------------- /lib/opencl/xregViennaCLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregViennaCLManager.cpp -------------------------------------------------------------------------------- /lib/opencl/xregViennaCLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencl/xregViennaCLManager.h -------------------------------------------------------------------------------- /lib/opencv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencv/CMakeLists.txt -------------------------------------------------------------------------------- /lib/opencv/xregOpenCVUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencv/xregOpenCVUtils.cpp -------------------------------------------------------------------------------- /lib/opencv/xregOpenCVUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/opencv/xregOpenCVUtils.h -------------------------------------------------------------------------------- /lib/optim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/CMakeLists.txt -------------------------------------------------------------------------------- /lib/optim/xregCMAESInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregCMAESInterface.cpp -------------------------------------------------------------------------------- /lib/optim/xregCMAESInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregCMAESInterface.h -------------------------------------------------------------------------------- /lib/optim/xregDiffEvo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregDiffEvo.cpp -------------------------------------------------------------------------------- /lib/optim/xregDiffEvo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregDiffEvo.h -------------------------------------------------------------------------------- /lib/optim/xregLineSearchOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregLineSearchOpt.cpp -------------------------------------------------------------------------------- /lib/optim/xregLineSearchOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregLineSearchOpt.h -------------------------------------------------------------------------------- /lib/optim/xregOptimTestObjFns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregOptimTestObjFns.cpp -------------------------------------------------------------------------------- /lib/optim/xregOptimTestObjFns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregOptimTestObjFns.h -------------------------------------------------------------------------------- /lib/optim/xregPSO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregPSO.cpp -------------------------------------------------------------------------------- /lib/optim/xregPSO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregPSO.h -------------------------------------------------------------------------------- /lib/optim/xregSimAnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregSimAnn.cpp -------------------------------------------------------------------------------- /lib/optim/xregSimAnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/optim/xregSimAnn.h -------------------------------------------------------------------------------- /lib/ray_cast/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ray_cast/xregEdgesFromRayCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregEdgesFromRayCast.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregEdgesFromRayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregEdgesFromRayCast.h -------------------------------------------------------------------------------- /lib/ray_cast/xregProj3DLabelsTo2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregProj3DLabelsTo2D.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregProj3DLabelsTo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregProj3DLabelsTo2D.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastBaseCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastBaseCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastBaseCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastBaseCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastBaseOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastBaseOCL.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastBaseOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastBaseOCL.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastDepthCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastDepthCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastDepthCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastDepthCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastDepthOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastDepthOCL.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastDepthOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastDepthOCL.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastInterface.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastInterface.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastLineIntCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastLineIntCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastLineIntCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastLineIntCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastLineIntOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastLineIntOCL.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastLineIntOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastLineIntOCL.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastOccContourCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastOccContourCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastOccContourCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastOccContourCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastOccContourOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastOccContourOCL.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastOccContourOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastOccContourOCL.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastProgOpts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastProgOpts.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastProgOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastProgOpts.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSparseCollCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSparseCollCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSparseCollCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSparseCollCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSurRenderCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSurRenderCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSurRenderCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSurRenderCPU.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSurRenderOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSurRenderOCL.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSurRenderOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSurRenderOCL.h -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSyncBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSyncBuf.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregRayCastSyncBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregRayCastSyncBuf.h -------------------------------------------------------------------------------- /lib/ray_cast/xregSplatLineIntCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregSplatLineIntCPU.cpp -------------------------------------------------------------------------------- /lib/ray_cast/xregSplatLineIntCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/ray_cast/xregSplatLineIntCPU.h -------------------------------------------------------------------------------- /lib/regi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/CMakeLists.txt -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegi.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegi.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiBOBYQA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiBOBYQA.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiBOBYQA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiBOBYQA.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig-OptimHandeye.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-Device-MultiConfig.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-JustinSnake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-JustinSnake.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-JustinSnake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES-JustinSnake.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCMAES.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCRS.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiCRS.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDESCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDESCH.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDESCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDESCH.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDIRECT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDIRECT.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDIRECT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDIRECT.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDISRES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDISRES.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDISRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDISRES.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDebug.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDebug.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDiffEvo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDiffEvo.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDiffEvo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiDiffEvo.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiExhaustive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiExhaustive.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiExhaustive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiExhaustive.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiHillClimb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiHillClimb.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiHillClimb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiHillClimb.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNEWUOA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNEWUOA.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNEWUOA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNEWUOA.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNLOptInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNLOptInterface.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNLOptInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNLOptInterface.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNelderMead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNelderMead.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNelderMead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiNelderMead.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPRAXIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPRAXIS.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPRAXIS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPRAXIS.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPSO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPSO.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPSO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiPSO.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiSbplx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiSbplx.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiSbplx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregIntensity2D3DRegiSbplx.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegi.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegi.h -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegiDebug.cpp -------------------------------------------------------------------------------- /lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/interfaces_2d_3d/xregMultiObjMultiLevel2D3DRegiDebug.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFn.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFn.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnCombo.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnCombo.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnDebugH5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnDebugH5.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnDebugH5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnDebugH5.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnGlobalPelvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnGlobalPelvis.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnGlobalPelvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnGlobalPelvis.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnLandReproj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnLandReproj.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnLandReproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnLandReproj.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnPelvisAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnPelvisAP.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnPelvisAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnPelvisAP.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnRelPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnRelPose.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnRelPose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnRelPose.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3EulerDecomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3EulerDecomp.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3EulerDecomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3EulerDecomp.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3Mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3Mag.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3Mag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSE3Mag.h -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSnakeLandReproj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSnakeLandReproj.cpp -------------------------------------------------------------------------------- /lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSnakeLandReproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/penalty_fns_2d_3d/xregRegi2D3DPenaltyFnSnakeLandReproj.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegi.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegi.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDist.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDist.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDistCMAES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDistCMAES.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDistCMAES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregLandmark2D3DRegiReprojDistCMAES.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregP3PCArm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregP3PCArm.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregP3PCArm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregP3PCArm.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregPOSIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregPOSIT.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregPOSIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregPOSIT.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregPnPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregPnPUtils.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregPnPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregPnPUtils.h -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregRANSACPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregRANSACPnP.cpp -------------------------------------------------------------------------------- /lib/regi/pnp_solvers/xregRANSACPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/pnp_solvers/xregRANSACPnP.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2D.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2D.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DBoundaryEdgesCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DBoundaryEdgesCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DBoundaryEdgesCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DBoundaryEdgesCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DCombine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DCombine.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DCombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DCombine.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradDiffCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradDiffCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradDiffCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradDiffCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgParamInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradImgParamInterface.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradNCCOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradOrientCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradOrientCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DGradOrientCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DGradOrientCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DNCCOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchCommon.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchCommon.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchGradNCCOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DPatchNCCOCL.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DProgOpts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DProgOpts.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DProgOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DProgOpts.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDCPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDCPU.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDCPU.h -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDOCL.cpp -------------------------------------------------------------------------------- /lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDOCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/sim_metrics_2d/xregImgSimMetric2DSSDOCL.h -------------------------------------------------------------------------------- /lib/regi/xregICP3D3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregICP3D3D.cpp -------------------------------------------------------------------------------- /lib/regi/xregICP3D3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregICP3D3D.h -------------------------------------------------------------------------------- /lib/regi/xregPairedPointRegi3D3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregPairedPointRegi3D3D.cpp -------------------------------------------------------------------------------- /lib/regi/xregPairedPointRegi3D3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregPairedPointRegi3D3D.h -------------------------------------------------------------------------------- /lib/regi/xregSE3OptVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregSE3OptVars.cpp -------------------------------------------------------------------------------- /lib/regi/xregSE3OptVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/regi/xregSE3OptVars.h -------------------------------------------------------------------------------- /lib/spatial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/CMakeLists.txt -------------------------------------------------------------------------------- /lib/spatial/xregFitCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregFitCircle.cpp -------------------------------------------------------------------------------- /lib/spatial/xregFitCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregFitCircle.h -------------------------------------------------------------------------------- /lib/spatial/xregFitPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregFitPlane.cpp -------------------------------------------------------------------------------- /lib/spatial/xregFitPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregFitPlane.h -------------------------------------------------------------------------------- /lib/spatial/xregKDTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregKDTree.cpp -------------------------------------------------------------------------------- /lib/spatial/xregKDTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregKDTree.h -------------------------------------------------------------------------------- /lib/spatial/xregSpatialPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregSpatialPrimitives.cpp -------------------------------------------------------------------------------- /lib/spatial/xregSpatialPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/spatial/xregSpatialPrimitives.h -------------------------------------------------------------------------------- /lib/transforms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/CMakeLists.txt -------------------------------------------------------------------------------- /lib/transforms/xregAnatCoordFrames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregAnatCoordFrames.cpp -------------------------------------------------------------------------------- /lib/transforms/xregAnatCoordFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregAnatCoordFrames.h -------------------------------------------------------------------------------- /lib/transforms/xregPerspectiveXform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregPerspectiveXform.cpp -------------------------------------------------------------------------------- /lib/transforms/xregPerspectiveXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregPerspectiveXform.h -------------------------------------------------------------------------------- /lib/transforms/xregPointCloudUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregPointCloudUtils.cpp -------------------------------------------------------------------------------- /lib/transforms/xregPointCloudUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregPointCloudUtils.h -------------------------------------------------------------------------------- /lib/transforms/xregRigidUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregRigidUtils.cpp -------------------------------------------------------------------------------- /lib/transforms/xregRigidUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregRigidUtils.h -------------------------------------------------------------------------------- /lib/transforms/xregRotUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregRotUtils.cpp -------------------------------------------------------------------------------- /lib/transforms/xregRotUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/transforms/xregRotUtils.h -------------------------------------------------------------------------------- /lib/version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/version/CMakeLists.txt -------------------------------------------------------------------------------- /lib/version/xregVersionConfigVals.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/version/xregVersionConfigVals.cpp.in -------------------------------------------------------------------------------- /lib/version/xregVersionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/version/xregVersionInfo.cpp -------------------------------------------------------------------------------- /lib/version/xregVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/version/xregVersionInfo.h -------------------------------------------------------------------------------- /lib/vtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/CMakeLists.txt -------------------------------------------------------------------------------- /lib/vtk/xregVTK3DPlotter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTK3DPlotter.cpp -------------------------------------------------------------------------------- /lib/vtk/xregVTK3DPlotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTK3DPlotter.h -------------------------------------------------------------------------------- /lib/vtk/xregVTKBasicUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKBasicUtils.cpp -------------------------------------------------------------------------------- /lib/vtk/xregVTKBasicUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKBasicUtils.h -------------------------------------------------------------------------------- /lib/vtk/xregVTKITKUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKITKUtils.cpp -------------------------------------------------------------------------------- /lib/vtk/xregVTKITKUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKITKUtils.h -------------------------------------------------------------------------------- /lib/vtk/xregVTKMeshUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKMeshUtils.cpp -------------------------------------------------------------------------------- /lib/vtk/xregVTKMeshUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/lib/vtk/xregVTKMeshUtils.h -------------------------------------------------------------------------------- /third_party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/.travis.yml -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_d3d10.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_d3d11.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_dx9_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_dx9_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_egl.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_ext.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_ext_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_ext_intel.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_gl.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_half.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_icd.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_platform.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_va_api_media_sharing_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_va_api_media_sharing_intel.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/cl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/cl_version.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CL/opencl.h -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/LICENSE -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/README.md -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/README.md -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_egl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_egl.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_ext.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_ext.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_ext_intel.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_ext_intel.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_gl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_gl.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_gl_ext.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_gl_ext.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_half.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_half.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_icd.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_icd.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_platform.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_platform.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_cl_version.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_cl_version.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_headers.c -------------------------------------------------------------------------------- /third_party/OpenCL-Headers-2020.06.16/tests/test_opencl.h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-Headers-2020.06.16/tests/test_opencl.h.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/.appveyor.yml -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/.gitignore -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/.travis.yml -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/LICENSE -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/README.md -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/inc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/inc/README.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_cmake_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_cmake_config.h.in -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_dispatch.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_dispatch.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_envvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_envvars.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/icd_platform.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_exports.map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_exports.map.in -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_linux.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_linux_envvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/linux/icd_linux_envvars.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/OpenCL.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/OpenCL.def.in -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/OpenCL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/OpenCL.rc -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/adapter.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_apppackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_apppackage.cpp -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_apppackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_apppackage.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_dxgk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_dxgk.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_dxgk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_dxgk.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_envvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_envvars.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_hkr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_hkr.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_hkr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/loader/windows/icd_windows_hkr.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl_ext.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/cl_gl.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/driver_stub.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | clGetExtensionFunctionAddress 3 | -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd_driver_exports.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd_driver_exports.map -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/icd_structs.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/rename_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/driver_stub/rename_api.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/inc/platform/icd_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/inc/platform/icd_test_log.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/callbacks.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/icd_test_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/icd_test_match.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/main.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/param_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/param_struct.h -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_buffer_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_buffer_object.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_cl_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_cl_runtime.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_clgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_clgl.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_create_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_create_calls.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_image_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_image_objects.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_kernel.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_platforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_platforms.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_program_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_program_objects.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_sampler_objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/loader_test/test_sampler_objects.c -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/log/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/OpenCL-ICD-Loader-2020.06.16/test/log/icd_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/OpenCL-ICD-Loader-2020.06.16/test/log/icd_test_log.c -------------------------------------------------------------------------------- /third_party/cmaes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmaes/boundary_transformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/boundary_transformation.c -------------------------------------------------------------------------------- /third_party/cmaes/boundary_transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/boundary_transformation.h -------------------------------------------------------------------------------- /third_party/cmaes/cmaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/cmaes.c -------------------------------------------------------------------------------- /third_party/cmaes/cmaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/cmaes.h -------------------------------------------------------------------------------- /third_party/cmaes/cmaes_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/cmaes_interface.h -------------------------------------------------------------------------------- /third_party/cmaes/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocong13/Orthopedic-Robot-Navigation/HEAD/third_party/cmaes/licenses.txt --------------------------------------------------------------------------------