Hi, I’m using 3d slicer for repeated works so I want to make my own menu to do it faster.
I have only a basic knowledge of a python language and don’t understand the structure of 3d slicer.
I’m trying to learn through searching but if someone gives me an example, it would be really helpful to understand the basic structure of coding.
Let’s say I want to make a menu like the image above.
Please show me a code and where to put that code.
(Of course not only a button or a tap for a visual thing but also need a code for functions(making point list, placing a point and linking the functions to the buttons…etc)
The extension wizard is the way to start. You can use it to just make an extension with one scripted module, no C++. Then the extension would be distributed as python source files only and there’s no building process for it.
Thanks for the answer.
As you said Endoscopy module is a nice example to study.
And the github link is also very helpful.
Would you mind if i ask some more…
Scripts of some modules like endoscopy are shown in the link but many built-in modules like Volume rendering, Segmentation or Markups are not given as scripts but as a more complicated way…
If it’s very easy for you, could you tell me what should I do, for example, to take volume rendering into my own extension?
Do you mean you want to include the volume rendering module widgets as part of your own module?
I think that’s not advisable – the Slicer way of doing things is to split things across individual modules that each do their own thing well, and to have the user switching between those modules for their overall workflow.
Ah…okay. As you guessed, I wanted to include the volume rendering module widgets as a part of my own module, because I’m doing repeated works so I have to switch modules to often and it makes me too tired…
I think making buttons that go to the modules needed and making a shortcut that comes back to my modules is the most possible solution in my situation.
Thanks.