Steps



First, in Windows:

Open a CLI and Navigate to Your Directory

Note: You can quit Python at any time using the command “quit()”. If you’ve started Python in the wrong directory, the easiest thing to do is probably to just “quit()” Python, “cd” into the correct folder, then run “python” again.


Then, in Python:

For the Graphical Interface:

Run the following at the Python prompt; you should be able to simply follow the GUI from there if it is working properly:

from qamgr import *
q = GuiQAMgr()

Or, For the Text Interface:

Run the following at the Python prompt:

from qamgr import *
q = QAMgr()

You should be prompted to enter your initials and choose a DICOM RP file. Then simply run the following command:

q.run()

This will automatically complete the process and will prompt you for action when necessary. If you encounter trouble, you may need access to the individual objects; they are described on the next page.



<– Prev || Contents || Next –>