├── .gitignore ├── CMakeLists.txt ├── CompositeToGridTransform ├── CMakeLists.txt ├── CompositeToGridTransform.cxx ├── CompositeToGridTransform.xml ├── Data │ ├── Baseline │ │ └── CompositeToGridTransformTest.nrrd.sha256 │ └── Input │ │ ├── CTHeadAxial.nhdr.md5 │ │ └── CTHeadAxial.raw.gz.md5 └── Testing │ ├── CMakeLists.txt │ └── Cxx │ ├── CMakeLists.txt │ └── CompositeToGridTransformTest.cxx ├── CurveToBundle ├── CMakeLists.txt ├── CurveToBundle.py ├── CurveToBundleLib │ ├── Widgets │ │ ├── __init__.py │ │ ├── multiHandleSlider.py │ │ └── multiModelSelector.py │ └── __init__.py ├── Resources │ ├── Icons │ │ └── CurveToBundle.png │ └── UI │ │ └── CurveToBundle.ui └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── FiducialRegistrationVariableRBF ├── CMakeLists.txt ├── Data │ ├── Baseline │ │ └── FiducialRegistrationVariableRBFTest.nrrd.sha256 │ └── Input │ │ ├── CTHeadAxial.nhdr.md5 │ │ └── CTHeadAxial.raw.gz.md5 ├── FiducialRegistrationVariableRBF.cxx ├── FiducialRegistrationVariableRBF.xml └── Testing │ ├── CMakeLists.txt │ └── Cxx │ ├── CMakeLists.txt │ └── FiducialRegistrationVariableRBFTest.cxx ├── ImportACPCAutodetect ├── CMakeLists.txt ├── ImportACPCAutodetect.py ├── Resources │ ├── Icons │ │ └── ImportACPCAutodetect.png │ └── UI │ │ └── ImportACPCAutodetect.ui └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── ImportAtlas ├── CMakeLists.txt ├── ImportAtlas.py ├── Resources │ ├── .gitignore │ └── Icons │ │ └── ImportAtlas.png └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── LICENSE ├── LeadOR ├── .vscode │ └── launch.json ├── CMakeLists.txt ├── LeadOR.py ├── LeadORLib │ ├── Widgets │ │ ├── __init__.py │ │ └── tables.py │ ├── __init__.py │ └── util.py ├── README.md ├── Resources │ ├── Icons │ │ ├── LeadOR.png │ │ ├── LeadOR1.png │ │ ├── VcrRecord16.png │ │ └── VolumeResliceDriver.png │ └── UI │ │ └── LeadOR.ui ├── Screenshots │ ├── Data.png │ ├── ExtensionManager.png │ ├── Lead-OR.png │ ├── Lead-OR_Scene.png │ ├── MicroElectrode.png │ ├── SampleData.png │ ├── SampleDataDownload.png │ ├── SlicerNetstimInstall.png │ └── SlicerNetstimInstalled.png └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── NetstimPreferences ├── CMakeLists.txt ├── NetstimPreferences.py ├── Resources │ ├── Icons │ │ └── NetstimPreferences.png │ └── UI │ │ └── NetstimPreferences.ui └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── README.md ├── StereotacticPlan ├── CMakeLists.txt ├── Resources │ ├── Icons │ │ ├── StereotacticPlan.png │ │ └── VolumeResliceDriver.png │ └── UI │ │ └── StereotacticPlan.ui ├── StereotacticPlan.py ├── StereotacticPlanLib │ ├── ImportFrom │ │ ├── Import_From_Brainlab.py │ │ ├── Import_From_ROSA.py │ │ ├── __init__.py │ │ └── importerBase.py │ ├── Widgets │ │ ├── CustomWidgets.py │ │ └── __init__.py │ └── __init__.py └── Testing │ ├── CMakeLists.txt │ └── Python │ └── CMakeLists.txt ├── WarpDrive ├── CMakeLists.txt ├── README.md ├── Resources │ ├── Icons │ │ ├── Add.png │ │ ├── Delete.png │ │ ├── Draw.png │ │ ├── Magnet.png │ │ ├── None.png │ │ ├── PointToPoint.png │ │ ├── Rename.png │ │ ├── ShrinkExpand.png │ │ ├── SlicerUndo.png │ │ ├── SlicerVisible.png │ │ ├── Smudge.png │ │ ├── Transforms.png │ │ ├── WarpDrive.png │ │ └── WarpDrive1.png │ └── UI │ │ └── WarpDrive.ui ├── Screenshots │ ├── WD_aux_1_edit.png │ ├── WD_aux_1_p2steps.png │ └── WD_aux_3.png ├── Testing │ ├── CMakeLists.txt │ └── Python │ │ └── CMakeLists.txt ├── WarpDrive.py └── WarpDriveLib │ ├── Effects │ ├── CircleEffect.py │ ├── DrawEffect.py │ ├── Effect.py │ ├── PointToPointEffect.py │ ├── PointerEffect.py │ ├── ShrinkExpandEffect.py │ └── __init__.py │ ├── Helpers │ ├── GridNodeHelper.py │ ├── LeadDBSCall.py │ └── __init__.py │ ├── Tools │ ├── DrawTool.py │ ├── NoneTool.py │ ├── PointToPointTool.py │ ├── ShrinkExpandTool.py │ ├── SmudgeTool.py │ └── __init__.py │ ├── Widgets │ ├── Tables.py │ ├── ToolWidget.py │ ├── Toolbar.py │ └── __init__.py │ └── __init__.py └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CompositeToGridTransform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/CMakeLists.txt -------------------------------------------------------------------------------- /CompositeToGridTransform/CompositeToGridTransform.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/CompositeToGridTransform.cxx -------------------------------------------------------------------------------- /CompositeToGridTransform/CompositeToGridTransform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/CompositeToGridTransform.xml -------------------------------------------------------------------------------- /CompositeToGridTransform/Data/Baseline/CompositeToGridTransformTest.nrrd.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/Data/Baseline/CompositeToGridTransformTest.nrrd.sha256 -------------------------------------------------------------------------------- /CompositeToGridTransform/Data/Input/CTHeadAxial.nhdr.md5: -------------------------------------------------------------------------------- 1 | 6e5c289c73e14ba7a1b0f8aaf6ed249a -------------------------------------------------------------------------------- /CompositeToGridTransform/Data/Input/CTHeadAxial.raw.gz.md5: -------------------------------------------------------------------------------- 1 | 3ebd710c9cf9d75750f4569b8caf6d07 -------------------------------------------------------------------------------- /CompositeToGridTransform/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Cxx) 2 | -------------------------------------------------------------------------------- /CompositeToGridTransform/Testing/Cxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/Testing/Cxx/CMakeLists.txt -------------------------------------------------------------------------------- /CompositeToGridTransform/Testing/Cxx/CompositeToGridTransformTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CompositeToGridTransform/Testing/Cxx/CompositeToGridTransformTest.cxx -------------------------------------------------------------------------------- /CurveToBundle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/CMakeLists.txt -------------------------------------------------------------------------------- /CurveToBundle/CurveToBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/CurveToBundle.py -------------------------------------------------------------------------------- /CurveToBundle/CurveToBundleLib/Widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CurveToBundle/CurveToBundleLib/Widgets/multiHandleSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/CurveToBundleLib/Widgets/multiHandleSlider.py -------------------------------------------------------------------------------- /CurveToBundle/CurveToBundleLib/Widgets/multiModelSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/CurveToBundleLib/Widgets/multiModelSelector.py -------------------------------------------------------------------------------- /CurveToBundle/CurveToBundleLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CurveToBundle/Resources/Icons/CurveToBundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/Resources/Icons/CurveToBundle.png -------------------------------------------------------------------------------- /CurveToBundle/Resources/UI/CurveToBundle.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/CurveToBundle/Resources/UI/CurveToBundle.ui -------------------------------------------------------------------------------- /CurveToBundle/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /CurveToBundle/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/CMakeLists.txt -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Data/Baseline/FiducialRegistrationVariableRBFTest.nrrd.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/Data/Baseline/FiducialRegistrationVariableRBFTest.nrrd.sha256 -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Data/Input/CTHeadAxial.nhdr.md5: -------------------------------------------------------------------------------- 1 | 6e5c289c73e14ba7a1b0f8aaf6ed249a -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Data/Input/CTHeadAxial.raw.gz.md5: -------------------------------------------------------------------------------- 1 | 3ebd710c9cf9d75750f4569b8caf6d07 -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/FiducialRegistrationVariableRBF.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/FiducialRegistrationVariableRBF.cxx -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/FiducialRegistrationVariableRBF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/FiducialRegistrationVariableRBF.xml -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Cxx) 2 | -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Testing/Cxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/Testing/Cxx/CMakeLists.txt -------------------------------------------------------------------------------- /FiducialRegistrationVariableRBF/Testing/Cxx/FiducialRegistrationVariableRBFTest.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/FiducialRegistrationVariableRBF/Testing/Cxx/FiducialRegistrationVariableRBFTest.cxx -------------------------------------------------------------------------------- /ImportACPCAutodetect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportACPCAutodetect/CMakeLists.txt -------------------------------------------------------------------------------- /ImportACPCAutodetect/ImportACPCAutodetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportACPCAutodetect/ImportACPCAutodetect.py -------------------------------------------------------------------------------- /ImportACPCAutodetect/Resources/Icons/ImportACPCAutodetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportACPCAutodetect/Resources/Icons/ImportACPCAutodetect.png -------------------------------------------------------------------------------- /ImportACPCAutodetect/Resources/UI/ImportACPCAutodetect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportACPCAutodetect/Resources/UI/ImportACPCAutodetect.ui -------------------------------------------------------------------------------- /ImportACPCAutodetect/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /ImportACPCAutodetect/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /ImportAtlas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportAtlas/CMakeLists.txt -------------------------------------------------------------------------------- /ImportAtlas/ImportAtlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportAtlas/ImportAtlas.py -------------------------------------------------------------------------------- /ImportAtlas/Resources/.gitignore: -------------------------------------------------------------------------------- 1 | /previousDirectory.txt 2 | -------------------------------------------------------------------------------- /ImportAtlas/Resources/Icons/ImportAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/ImportAtlas/Resources/Icons/ImportAtlas.png -------------------------------------------------------------------------------- /ImportAtlas/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /ImportAtlas/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LICENSE -------------------------------------------------------------------------------- /LeadOR/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/.vscode/launch.json -------------------------------------------------------------------------------- /LeadOR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/CMakeLists.txt -------------------------------------------------------------------------------- /LeadOR/LeadOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/LeadOR.py -------------------------------------------------------------------------------- /LeadOR/LeadORLib/Widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LeadOR/LeadORLib/Widgets/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/LeadORLib/Widgets/tables.py -------------------------------------------------------------------------------- /LeadOR/LeadORLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LeadOR/LeadORLib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/LeadORLib/util.py -------------------------------------------------------------------------------- /LeadOR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/README.md -------------------------------------------------------------------------------- /LeadOR/Resources/Icons/LeadOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Resources/Icons/LeadOR.png -------------------------------------------------------------------------------- /LeadOR/Resources/Icons/LeadOR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Resources/Icons/LeadOR1.png -------------------------------------------------------------------------------- /LeadOR/Resources/Icons/VcrRecord16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Resources/Icons/VcrRecord16.png -------------------------------------------------------------------------------- /LeadOR/Resources/Icons/VolumeResliceDriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Resources/Icons/VolumeResliceDriver.png -------------------------------------------------------------------------------- /LeadOR/Resources/UI/LeadOR.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Resources/UI/LeadOR.ui -------------------------------------------------------------------------------- /LeadOR/Screenshots/Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/Data.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/ExtensionManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/ExtensionManager.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/Lead-OR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/Lead-OR.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/Lead-OR_Scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/Lead-OR_Scene.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/MicroElectrode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/MicroElectrode.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/SampleData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/SampleData.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/SampleDataDownload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/SampleDataDownload.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/SlicerNetstimInstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/SlicerNetstimInstall.png -------------------------------------------------------------------------------- /LeadOR/Screenshots/SlicerNetstimInstalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/LeadOR/Screenshots/SlicerNetstimInstalled.png -------------------------------------------------------------------------------- /LeadOR/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /LeadOR/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /NetstimPreferences/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/NetstimPreferences/CMakeLists.txt -------------------------------------------------------------------------------- /NetstimPreferences/NetstimPreferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/NetstimPreferences/NetstimPreferences.py -------------------------------------------------------------------------------- /NetstimPreferences/Resources/Icons/NetstimPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/NetstimPreferences/Resources/Icons/NetstimPreferences.png -------------------------------------------------------------------------------- /NetstimPreferences/Resources/UI/NetstimPreferences.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/NetstimPreferences/Resources/UI/NetstimPreferences.ui -------------------------------------------------------------------------------- /NetstimPreferences/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /NetstimPreferences/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/README.md -------------------------------------------------------------------------------- /StereotacticPlan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/CMakeLists.txt -------------------------------------------------------------------------------- /StereotacticPlan/Resources/Icons/StereotacticPlan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/Resources/Icons/StereotacticPlan.png -------------------------------------------------------------------------------- /StereotacticPlan/Resources/Icons/VolumeResliceDriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/Resources/Icons/VolumeResliceDriver.png -------------------------------------------------------------------------------- /StereotacticPlan/Resources/UI/StereotacticPlan.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/Resources/UI/StereotacticPlan.ui -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/StereotacticPlan.py -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/ImportFrom/Import_From_Brainlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/StereotacticPlanLib/ImportFrom/Import_From_Brainlab.py -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/ImportFrom/Import_From_ROSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/StereotacticPlanLib/ImportFrom/Import_From_ROSA.py -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/ImportFrom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/ImportFrom/importerBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/StereotacticPlanLib/ImportFrom/importerBase.py -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/Widgets/CustomWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/StereotacticPlan/StereotacticPlanLib/Widgets/CustomWidgets.py -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/Widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StereotacticPlan/StereotacticPlanLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StereotacticPlan/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /StereotacticPlan/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /WarpDrive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/CMakeLists.txt -------------------------------------------------------------------------------- /WarpDrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/README.md -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Add.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Delete.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Draw.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Magnet.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/None.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/PointToPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/PointToPoint.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Rename.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/ShrinkExpand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/ShrinkExpand.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/SlicerUndo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/SlicerUndo.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/SlicerVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/SlicerVisible.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Smudge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Smudge.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/Transforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/Transforms.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/WarpDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/WarpDrive.png -------------------------------------------------------------------------------- /WarpDrive/Resources/Icons/WarpDrive1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/Icons/WarpDrive1.png -------------------------------------------------------------------------------- /WarpDrive/Resources/UI/WarpDrive.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Resources/UI/WarpDrive.ui -------------------------------------------------------------------------------- /WarpDrive/Screenshots/WD_aux_1_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Screenshots/WD_aux_1_edit.png -------------------------------------------------------------------------------- /WarpDrive/Screenshots/WD_aux_1_p2steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Screenshots/WD_aux_1_p2steps.png -------------------------------------------------------------------------------- /WarpDrive/Screenshots/WD_aux_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/Screenshots/WD_aux_3.png -------------------------------------------------------------------------------- /WarpDrive/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Python) 2 | -------------------------------------------------------------------------------- /WarpDrive/Testing/Python/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | #slicer_add_python_unittest(SCRIPT ${MODULE_NAME}ModuleTest.py) 3 | -------------------------------------------------------------------------------- /WarpDrive/WarpDrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDrive.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/CircleEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/CircleEffect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/DrawEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/DrawEffect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/Effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/Effect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/PointToPointEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/PointToPointEffect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/PointerEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/PointerEffect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/ShrinkExpandEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Effects/ShrinkExpandEffect.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Effects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Helpers/GridNodeHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Helpers/GridNodeHelper.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Helpers/LeadDBSCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Helpers/LeadDBSCall.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/DrawTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Tools/DrawTool.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/NoneTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Tools/NoneTool.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/PointToPointTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Tools/PointToPointTool.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/ShrinkExpandTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Tools/ShrinkExpandTool.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/SmudgeTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Tools/SmudgeTool.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Widgets/Tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Widgets/Tables.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Widgets/ToolWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Widgets/ToolWidget.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Widgets/Toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/WarpDrive/WarpDriveLib/Widgets/Toolbar.py -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/Widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WarpDrive/WarpDriveLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstim/SlicerNetstim/HEAD/logo.png --------------------------------------------------------------------------------