├── .gitignore ├── Executable ├── SplashScreen.PNG ├── UserInterface.py ├── dist │ └── Mangle.exe └── mangleUI.py ├── LICENSE ├── Mangle.7z ├── README.md ├── UserInterface.py ├── mangle.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.dcm 2 | *.spec 3 | __pycache__/ 4 | build/ 5 | -------------------------------------------------------------------------------- /Executable/SplashScreen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/Executable/SplashScreen.PNG -------------------------------------------------------------------------------- /Executable/UserInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/Executable/UserInterface.py -------------------------------------------------------------------------------- /Executable/dist/Mangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/Executable/dist/Mangle.exe -------------------------------------------------------------------------------- /Executable/mangleUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/Executable/mangleUI.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/LICENSE -------------------------------------------------------------------------------- /Mangle.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/Mangle.7z -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/README.md -------------------------------------------------------------------------------- /UserInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/UserInterface.py -------------------------------------------------------------------------------- /mangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-blackmore/rtp-mangle/HEAD/mangle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # rtp-mangle Pip Requirements 2 | argparse 3 | shlex 4 | re 5 | pydicom 6 | --------------------------------------------------------------------------------