├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── Pinnacle Scripts ├── DVH-Analytics_Create-POIs.Script.p3rtp ├── DVH-Analytics_Create-Rx-POI.Script.p3rtp └── readme.txt ├── README.rst ├── __init__.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── logo.png │ ├── mandible.png │ ├── matplotlib_dvh.jpg │ └── matplotlib_population_dvhs.jpg │ ├── authors.rst │ ├── conf.py │ ├── database.rst │ ├── datadictionary.rst │ ├── dvhquery.rst │ ├── index.rst │ ├── modules.rst │ ├── readme.rst │ ├── tools.rst │ └── usage.rst ├── dvha ├── __init__.py ├── _version.py ├── db │ ├── __init__.py │ ├── create_tables.sql │ ├── create_tables_sqlite.sql │ ├── dicom_parser.py │ ├── sql_columns.py │ ├── sql_connector.py │ ├── sql_to_python.py │ └── update.py ├── dialogs │ ├── __init__.py │ ├── database.py │ ├── export.py │ ├── main.py │ └── roi_map.py ├── main.py ├── models │ ├── __init__.py │ ├── control_chart.py │ ├── correlation.py │ ├── data_table.py │ ├── database_editor.py │ ├── dicom_tree_builder.py │ ├── dvh.py │ ├── endpoint.py │ ├── import_dicom.py │ ├── machine_learning.py │ ├── plot.py │ ├── queried_data.py │ ├── rad_bio.py │ ├── regression.py │ ├── roi_map.py │ ├── spreadsheet.py │ ├── stats_data_editor.py │ └── time_series.py ├── options.py ├── paths.py ├── resources │ ├── LICENSE.txt │ ├── TG263_Nomenclature_Worksheet_20170815.csv │ ├── icons │ │ ├── dvha.icns │ │ ├── dvha_new.ico │ │ ├── error.png │ │ ├── icon_custom_X.png │ │ ├── icon_custom_Y.png │ │ ├── iconfinder_Clipboard-Plan_379537_zoom.png │ │ ├── iconfinder_Close_1493281.png │ │ ├── iconfinder_Education-Filled_7_3672892.png │ │ ├── iconfinder_Open_1493293.png │ │ ├── iconfinder_Print_1493286.png │ │ ├── iconfinder_Save_1493294.png │ │ ├── iconfinder_Settings_1493289.png │ │ ├── iconfinder_Travel-Filled-07_3671983.png │ │ ├── iconfinder_User_Customers_1218712.png │ │ ├── iconfinder_User_Yuppie_3_1218716.png │ │ ├── iconfinder_csv_file_database_extension_data_3876336.png │ │ ├── iconfinder_data_115746_black_edit.png │ │ ├── iconfinder_icon-map_211858.png │ │ ├── iconfinder_import_4168538.png │ │ ├── iconfinder_ko-red_53948.png │ │ ├── iconfinder_m-52_4230522.png │ │ ├── iconfinder_ok-green_53916.png │ │ ├── iconfinder_package-supported_24220.png │ │ └── neural-network_clipart2769230_edit.png │ └── logo.png └── tools │ ├── __init__.py │ ├── dicom_dose_sum.py │ ├── errors.py │ ├── name_prediction.py │ ├── roi_formatter.py │ ├── roi_geometry.py │ ├── roi_map_generator.py │ ├── roi_name_manager.py │ ├── stats.py │ ├── threading_progress.py │ ├── utilities.py │ └── windows_reg_edit.py ├── dvha_app.py ├── install_notes.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pinnacle Scripts/DVH-Analytics_Create-POIs.Script.p3rtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/Pinnacle Scripts/DVH-Analytics_Create-POIs.Script.p3rtp -------------------------------------------------------------------------------- /Pinnacle Scripts/DVH-Analytics_Create-Rx-POI.Script.p3rtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/Pinnacle Scripts/DVH-Analytics_Create-Rx-POI.Script.p3rtp -------------------------------------------------------------------------------- /Pinnacle Scripts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/Pinnacle Scripts/readme.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/mandible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/_static/mandible.png -------------------------------------------------------------------------------- /docs/source/_static/matplotlib_dvh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/_static/matplotlib_dvh.jpg -------------------------------------------------------------------------------- /docs/source/_static/matplotlib_population_dvhs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/_static/matplotlib_population_dvhs.jpg -------------------------------------------------------------------------------- /docs/source/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/authors.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/database.rst -------------------------------------------------------------------------------- /docs/source/datadictionary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/datadictionary.rst -------------------------------------------------------------------------------- /docs/source/dvhquery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/dvhquery.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../README.rst 2 | -------------------------------------------------------------------------------- /docs/source/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/tools.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /dvha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvha/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/_version.py -------------------------------------------------------------------------------- /dvha/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvha/db/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/create_tables.sql -------------------------------------------------------------------------------- /dvha/db/create_tables_sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/create_tables_sqlite.sql -------------------------------------------------------------------------------- /dvha/db/dicom_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/dicom_parser.py -------------------------------------------------------------------------------- /dvha/db/sql_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/sql_columns.py -------------------------------------------------------------------------------- /dvha/db/sql_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/sql_connector.py -------------------------------------------------------------------------------- /dvha/db/sql_to_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/sql_to_python.py -------------------------------------------------------------------------------- /dvha/db/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/db/update.py -------------------------------------------------------------------------------- /dvha/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvha/dialogs/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/dialogs/database.py -------------------------------------------------------------------------------- /dvha/dialogs/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/dialogs/export.py -------------------------------------------------------------------------------- /dvha/dialogs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/dialogs/main.py -------------------------------------------------------------------------------- /dvha/dialogs/roi_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/dialogs/roi_map.py -------------------------------------------------------------------------------- /dvha/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/main.py -------------------------------------------------------------------------------- /dvha/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvha/models/control_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/control_chart.py -------------------------------------------------------------------------------- /dvha/models/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/correlation.py -------------------------------------------------------------------------------- /dvha/models/data_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/data_table.py -------------------------------------------------------------------------------- /dvha/models/database_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/database_editor.py -------------------------------------------------------------------------------- /dvha/models/dicom_tree_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/dicom_tree_builder.py -------------------------------------------------------------------------------- /dvha/models/dvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/dvh.py -------------------------------------------------------------------------------- /dvha/models/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/endpoint.py -------------------------------------------------------------------------------- /dvha/models/import_dicom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/import_dicom.py -------------------------------------------------------------------------------- /dvha/models/machine_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/machine_learning.py -------------------------------------------------------------------------------- /dvha/models/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/plot.py -------------------------------------------------------------------------------- /dvha/models/queried_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/queried_data.py -------------------------------------------------------------------------------- /dvha/models/rad_bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/rad_bio.py -------------------------------------------------------------------------------- /dvha/models/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/regression.py -------------------------------------------------------------------------------- /dvha/models/roi_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/roi_map.py -------------------------------------------------------------------------------- /dvha/models/spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/spreadsheet.py -------------------------------------------------------------------------------- /dvha/models/stats_data_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/stats_data_editor.py -------------------------------------------------------------------------------- /dvha/models/time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/models/time_series.py -------------------------------------------------------------------------------- /dvha/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/options.py -------------------------------------------------------------------------------- /dvha/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/paths.py -------------------------------------------------------------------------------- /dvha/resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/LICENSE.txt -------------------------------------------------------------------------------- /dvha/resources/TG263_Nomenclature_Worksheet_20170815.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/TG263_Nomenclature_Worksheet_20170815.csv -------------------------------------------------------------------------------- /dvha/resources/icons/dvha.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/dvha.icns -------------------------------------------------------------------------------- /dvha/resources/icons/dvha_new.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/dvha_new.ico -------------------------------------------------------------------------------- /dvha/resources/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/error.png -------------------------------------------------------------------------------- /dvha/resources/icons/icon_custom_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/icon_custom_X.png -------------------------------------------------------------------------------- /dvha/resources/icons/icon_custom_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/icon_custom_Y.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Clipboard-Plan_379537_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Clipboard-Plan_379537_zoom.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Close_1493281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Close_1493281.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Education-Filled_7_3672892.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Education-Filled_7_3672892.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Open_1493293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Open_1493293.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Print_1493286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Print_1493286.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Save_1493294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Save_1493294.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Settings_1493289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Settings_1493289.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_Travel-Filled-07_3671983.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_Travel-Filled-07_3671983.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_User_Customers_1218712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_User_Customers_1218712.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_User_Yuppie_3_1218716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_User_Yuppie_3_1218716.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_csv_file_database_extension_data_3876336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_csv_file_database_extension_data_3876336.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_data_115746_black_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_data_115746_black_edit.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_icon-map_211858.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_icon-map_211858.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_import_4168538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_import_4168538.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_ko-red_53948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_ko-red_53948.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_m-52_4230522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_m-52_4230522.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_ok-green_53916.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_ok-green_53916.png -------------------------------------------------------------------------------- /dvha/resources/icons/iconfinder_package-supported_24220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/iconfinder_package-supported_24220.png -------------------------------------------------------------------------------- /dvha/resources/icons/neural-network_clipart2769230_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/icons/neural-network_clipart2769230_edit.png -------------------------------------------------------------------------------- /dvha/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/resources/logo.png -------------------------------------------------------------------------------- /dvha/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvha/tools/dicom_dose_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/dicom_dose_sum.py -------------------------------------------------------------------------------- /dvha/tools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/errors.py -------------------------------------------------------------------------------- /dvha/tools/name_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/name_prediction.py -------------------------------------------------------------------------------- /dvha/tools/roi_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/roi_formatter.py -------------------------------------------------------------------------------- /dvha/tools/roi_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/roi_geometry.py -------------------------------------------------------------------------------- /dvha/tools/roi_map_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/roi_map_generator.py -------------------------------------------------------------------------------- /dvha/tools/roi_name_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/roi_name_manager.py -------------------------------------------------------------------------------- /dvha/tools/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/stats.py -------------------------------------------------------------------------------- /dvha/tools/threading_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/threading_progress.py -------------------------------------------------------------------------------- /dvha/tools/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/utilities.py -------------------------------------------------------------------------------- /dvha/tools/windows_reg_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha/tools/windows_reg_edit.py -------------------------------------------------------------------------------- /dvha_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/dvha_app.py -------------------------------------------------------------------------------- /install_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/install_notes.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutright/DVH-Analytics/HEAD/setup.py --------------------------------------------------------------------------------