I will do the work. i need some time, a couple of weeks. I´m a neurosurgeon with a lot of work
dear @JBeninca:
for my respect.
it’s rare to see a neurosurgeon can coding slicer in china , my work is to integrate all usefull and convenient slicer plugin into a package for neurosurgeon,your work is very valuable for me to keep tracing,thank you very much.
@jay1987 looking at your frame CT, it looks like your Y-axis is flipped (something I never considered in my implementation).
@JBeninca no need to rewrite code for the Leksell. You can see my implementation here: trajectoryGuideModules/frameDetect.py at main · greydongilmore/trajectoryGuideModules · GitHub. The specific class I wrote for detecting the N-localizers is here: trajectoryGuideModules/helpers.py at 9c6f99226c4f42e01d88e26badd4b48b79aa0884 · greydongilmore/trajectoryGuideModules · GitHub.
I’m happy to help out in any way.
thank you very much @Greydon_Gilmore
accounting for the flip in the Y-axis I am able to obtain the following segmentation from your CT:
You’ll notice some drop-out near the bottom of the N-localizer due to weak localizer signal. However, you do not need all points to calculate Frame coordinates so this won’t affect accuracy. The other thing I’ve noticed is that your frame CT is not centered (the x,y,z axes should be centered on 100). Did you apply a transform to the image prior to sharing?
that’s correct ! @Greydon_Gilmore
could you please integrate these piece of code in your trajectoryGuideModules?that’s very useful!!
A best way for Leksell frame. You can use Fiducial Registration module to register the CT data with the prepared points .
yes,it’s work!
but i need to find the x,y,z position and three angles relative to the leksell frame .
It is easy,when you adjust the XYZ frame and RAS to be parallel, it can be obtained by simple calculation. Regarding the angle, it can be obtained by the arctangent function.
I understand what you mean,but i dont have a leksell headframe , i can’t judge the result what i caculate , the recent value i get is about 5 degree off to the correct result what i send to my doctor friend to evaluate
Do you have the module, maybe I can provide you with the CT data or I can help you test it.
Yes , please @jay1987, if you can send one or more leksell framed - patient CT scan data , I ´ll will be thankfull
this is a tc with leksell arc: WeTransfer - Send Large Files & Share Photos Online - Up to 2GB Free
Hi Greydon @Greydon_Gilmore,
Thanks for the implementation of trajectoryGuide! It seems great. I have some segmentations of basal ganglia structures that I’m visualizing over the MRI in slicer (they are all co-registered to the T1 space). I want to overlay the MER and implantation notes about the start and end of the STN; those measurements are based on the stereotactic frame’s coordinate system (we use a Leksell frame). I was looking at the website of trajectoryGuide and I think I could accomplish this using your tool.
I already installed all the requirements and upload my data on BIDS format. However, when I run the second step “02: Frame detection” I get the following error in Slicer’s Python console:
“Traceback (most recent call last):
File “C:/Users/zapatav/Desktop/Toolboxes/Slicer/trajectoryGuide/frameDetect/frameDetect.py”, line 685, in onFrameDetectButton
self.logic.runFrameDetection(self.ui.frameFidVolumeCBox.currentNode(), self.frame_settings, self._parameterNode.GetParameter(‘derivFolder’))
File “C:/Users/zapatav/Desktop/Toolboxes/Slicer/trajectoryGuide/frameDetect/frameDetect.py”, line 1165, in runFrameDetection
self.frameDetectInstance = frameDetection(frameFidVolume, derivFolder, frame_settings)
File “C:\Users\zapatav\Desktop\Toolboxes\Slicer\trajectoryGuide\helpers\helpers.py”, line 383, in init
self.frame_detect()
File “C:\Users\zapatav\Desktop\Toolboxes\Slicer\trajectoryGuide\helpers\helpers.py”, line 1068, in frame_detect
combined=self.NLocalizersSort(component, self.frame_settings[‘n_components’], 2)
File “C:\Users\zapatav\Desktop\Toolboxes\Slicer\trajectoryGuide\helpers\helpers.py”, line 780, in NLocalizersSort
min_threshold=gaps[0][0]
IndexError: list index out of range”
I wanted to ask you if you have seen this before and know how could I fix it, or if is there any forum specifically for trajectoryGuide that I can look at?
Any help would be much appreciated!
Thanks,
Valentina
Sending you a PM to try and solve this problem.
Greydon
It would be great if you could keep the discussion public (there could be a lot to learn). If it is not possible then please suammarize in the end what the issue was and how you solved it.
Hey @Greydon_Gilmore!
I also stumbled across your extension after searching for some tool to detect the Leksell frame. It seems very well implemented and also well documented, but unfortunately I can’t figure out some mistake of mine. I would really appreciate it if you can help me out here.
So I tested it with the dataset provided in the extension first and everything went well.
After I changed my CT scan of a head with a Leksell frame from DICOM to BIDS format (following the tutorial you linked in your documentation), I tried to detect the frame again but without success.
The mouse courser is stuck at the hourglass symbol and the following error message is printed:
“Traceback (most recent call last):
File “C:/Users/Praktikant/Documents/OwnSlicerExtensions/trajectoryGuideModules-main/frameDetect/frameDetect.py”, line 936, in onFrameDetectButton
self.logic.runFrameDetection(self.ui.frameFidVolumeCBox.currentNode(), self.frame_settings, self._parameterNode.GetParameter(‘derivFolder’))
File “C:/Users/Praktikant/Documents/OwnSlicerExtensions/trajectoryGuideModules-main/frameDetect/frameDetect.py”, line 1416, in runFrameDetection
self.frameDetectInstance = frameDetection(frameFidVolume, derivFolder, frame_settings)
File “C:\Users\Praktikant\Documents\OwnSlicerExtensions\trajectoryGuideModules-main\helpers\helpers.py”, line 383, in init
self.frame_detect()
File “C:\Users\Praktikant\Documents\OwnSlicerExtensions\trajectoryGuideModules-main\helpers\helpers.py”, line 1066, in frame_detect
component=np.vstack(component)
File “C:\Users\Praktikant\AppData\Local\slicer.org\Slicer 5.6.2\lib\Python\Lib\site-packages\numpy\core\shape_base.py”, line 289, in vstack
return _nx.concatenate(arrs, 0, dtype=dtype, casting=casting)
ValueError: need at least one array to concatenate”
What I understand out of this error is that no fiducials of the N-shaped frame get detected.
Also interesting is that the frame is indeed moved to the center of RAS without me having to confirm the fiducials first, but the program is still stuck.
In case you want to test it yourself with my dataset, here is the link to it:
https://drive.google.com/drive/folders/1Wseu8hA481GXpzp6l6GjhS4tudUd9WOo?usp=drive_link
I would really appreciate your help, because I would like to use your extension for a project of mine.
Thanks,
Daniel