├── .gitattributes ├── .gitignore ├── doc ├── helpMe.docx ├── helpMe.pdf └── license.txt ├── setup.py ├── setupWindows.py └── source ├── Icons ├── close.png ├── exportImages.png ├── exportPlot.png ├── ic.ico ├── ic.png ├── log.png ├── saveImage.png ├── savePlot.png └── saveTable.png ├── _canny_edge.py ├── _findpeaks.py ├── _hough_transform.pyx ├── analysisMethods.py ├── analyzer.py ├── attinuationCoef.py ├── ctqa_cp.pyw ├── dataImporter.py ├── dataManager.py ├── display.py ├── displayWidgets.py ├── imageTools.py ├── lcsFitter.py ├── localizer.py ├── logit.py ├── model.py ├── nufft.py ├── pyMime.py ├── qtutils.py ├── resources.py ├── resources.qrc ├── setupCython.py ├── setupWindows.py └── treeView.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/.gitignore -------------------------------------------------------------------------------- /doc/helpMe.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/doc/helpMe.docx -------------------------------------------------------------------------------- /doc/helpMe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/doc/helpMe.pdf -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/doc/license.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/setup.py -------------------------------------------------------------------------------- /setupWindows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/setupWindows.py -------------------------------------------------------------------------------- /source/Icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/close.png -------------------------------------------------------------------------------- /source/Icons/exportImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/exportImages.png -------------------------------------------------------------------------------- /source/Icons/exportPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/exportPlot.png -------------------------------------------------------------------------------- /source/Icons/ic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/ic.ico -------------------------------------------------------------------------------- /source/Icons/ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/ic.png -------------------------------------------------------------------------------- /source/Icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/log.png -------------------------------------------------------------------------------- /source/Icons/saveImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/saveImage.png -------------------------------------------------------------------------------- /source/Icons/savePlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/savePlot.png -------------------------------------------------------------------------------- /source/Icons/saveTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/Icons/saveTable.png -------------------------------------------------------------------------------- /source/_canny_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/_canny_edge.py -------------------------------------------------------------------------------- /source/_findpeaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/_findpeaks.py -------------------------------------------------------------------------------- /source/_hough_transform.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/_hough_transform.pyx -------------------------------------------------------------------------------- /source/analysisMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/analysisMethods.py -------------------------------------------------------------------------------- /source/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/analyzer.py -------------------------------------------------------------------------------- /source/attinuationCoef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/attinuationCoef.py -------------------------------------------------------------------------------- /source/ctqa_cp.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/ctqa_cp.pyw -------------------------------------------------------------------------------- /source/dataImporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/dataImporter.py -------------------------------------------------------------------------------- /source/dataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/dataManager.py -------------------------------------------------------------------------------- /source/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/display.py -------------------------------------------------------------------------------- /source/displayWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/displayWidgets.py -------------------------------------------------------------------------------- /source/imageTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/imageTools.py -------------------------------------------------------------------------------- /source/lcsFitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/lcsFitter.py -------------------------------------------------------------------------------- /source/localizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/localizer.py -------------------------------------------------------------------------------- /source/logit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/logit.py -------------------------------------------------------------------------------- /source/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/model.py -------------------------------------------------------------------------------- /source/nufft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/nufft.py -------------------------------------------------------------------------------- /source/pyMime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/pyMime.py -------------------------------------------------------------------------------- /source/qtutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/qtutils.py -------------------------------------------------------------------------------- /source/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/resources.py -------------------------------------------------------------------------------- /source/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/resources.qrc -------------------------------------------------------------------------------- /source/setupCython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/setupCython.py -------------------------------------------------------------------------------- /source/setupWindows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/setupWindows.py -------------------------------------------------------------------------------- /source/treeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medicalphysics/ctqa-cp/HEAD/source/treeView.py --------------------------------------------------------------------------------