Reslice / Reorient Slice view

I tried the way Prof @lassoan described but the results are not quite what i expected.

This is close to the ROI i want to have uniformly around the implant.

oneSide

But when i have good ROI in one side other side looks like this,

if there is a way of dragging the 8 corners of the ROI box independently the problem will be solved i guess if that is possible. or if there is a way of transforming the ROI box around the center of the segment.

if there is way of orienting this plane,

I tried the script and i am not sure what exactly happens. I can see the difference in the Red Slice when i put the script.

I made a small video to highlight the problem with the plan and what happens.

I can share the data as well if that would help in solving the problem.

thank you.

Also please note that micro-thread is a helix so there is a pitch and it will never be the same but need to be as close as possible.

When you copy-paste the Python code snippet then it should make the red slice view coplanar with the 3 markups fiducial points. I’ve slightly modified the code (it used integer vectors instead of floating-point vectors), please try again.

1 Like

Dear Prof Lasso,

Many thanks for helping me with this and the modified script worked perfectly.

Screenshot from 2020-02-04 18-24-14

However i still want to select the ROI from that slice to a slice in the middle. I have attached the screenshots. UpTohere

How do i cut this volume alone these two planes in red slice ? ROI box still behaves the same way as it was. So I just want to isolate the volume from the top slice to the middle slice.

Screenshot from 2020-02-04 18-47-38

What is the best way to crop this volume ? is there a way of like snapping the ROI box to the F1,F2 and F3 ???

You can orient slice viewers to orthogonal orthogonal directions by changing the last argument of sliceNode.SetSliceToRASByNTP call from 0 to 1 or 2. Then you can use Scissors effect in rectangle mode to draw an axis-aligned ROI.

1 Like

@manjula, maybe as another option you could check out this thread on setting the center of rotation of a transform. I have found this quite useful before.

https://discourse.slicer.org/t/rotation-around-specific-point/9398/11

1 Like

Dear Prof @lassoan @Juicy

Many thanks. The way Prof Lasso mentioned worked with segmenting (Scissors) .

Screenshot from 2020-02-05 19-08-24

However when I try to do it with ROI box the box was cropping the volume as usual (with the angle) . I expected it to work the same way as the Scissor but it did not.

However i transform the ROI with “Local” settings and after some playing around with the slides it managed to crop the volume the way i wanted to. Otherwise the ROI was still behaving as earlier screenshots unlike the scissor square. If the ROI is working just like the scissor effect things would be much easier for us but we can manage with this way also.

Is there a way of getting the ROI to work the same way as the Scissor square ?

As @Juicy suggested setting the center of rotation option i am keeping as a last resort because we have about 80 sets of data to analyse and with no easy way of finding the center of implant it would be bit of trouble. But i tried that way also and can get it to work in that way also.

Thank you for the help.

From the 3 markup points, you can create a transform that rotates the ROI. In fact, you can fully position and rotate the ROI based on a few markup points (e.g., 3 coplanar points to define the position and orientation of the front face of the ROI and a 4th point to define the opposite face).

With latest Slicer Preview release that you download tomorrow or later (rev28754), you can position the ROI on an object automatically as shown in this example:

So, you can almost fully automate your workflow by first segmenting the implant using thresholding (if you have multiple implants then you can separate them using Islands / Split islands to segments), run the example script above to place the oriented ROI boxes automatically, then adjust them as needed.

I am looking forward to this new build and this will solve many of our and many of others problem in analyzing. This is very exciting…

What we are trying to do is something similar to this and for the record :smile: we had the idea independent of this paper before we came across about a week ago.

So what we are doing is this to analyse the total volume and the bone volume…

Our other problem is we when we grow the margins our computers are not powerful enough to grow over 0.1 mm on these data sets. We grow each ring 0.1 mm at a time which takes about 2-3 minutes to do that as well. We want to use 0.5 mm rings but when we try to grow at 0…5 mm at the same time the Slicer hangs…

My system is i7-8550U CPU @ 1.80GHz, 16Gb DDR4 2400 MT/s and NVidia Geforce MTX150 4GB.

But i guess noting can be done apart from upgrading the hardware specs.

@Sunderlandkyl worked on this and there is an almost-complete pull request that speeds up large margin computations by 10x or more:

You may also find “Split Volume” effect useful: if you segment the implants with thresholding, split the segments using Island effect, then Volume Split effect cuts out only the implants (with a predefined padding around it) automatically, to separate small volumes.

1 Like

Prof @lassoan

  1. The ROI scripts works perfectly how ever I need to “enter” "twice " for it to draw the box every time. Is this expected ?

  2. I downloaded the latest rev 28755 (linux) build but i was not able to figure out to do this without the script as you showed it earlier ? Can you point me in the right direction.

  3. As i mentioned earlier due to lack of processing power in our machines, we need to grow the margin 0.1 mm at a time. We need 3 zones each 0- 0.5, 0.5- 1 and a 1 - 1.5 mm bone rings. So at this way we need to do it 15 times in one sample and we looses the count too in the middle :blush:
    Is it possible to do a loop for script like grow 0.1mm at a time for 5 times ? It should basically behave the same as manually doing it 5 times ?

I will make a feature request also for this. If the segment editor have a option to apply the same effect repeatedly for “x” number of times. Even though this looks like a redundant and similar function i think in lower specs computers this will be useful if it works the way i think it would.

It’s not expected and I didn’t experience this. Maybe just a screen refresh issue. You can try forcing re-rendering fixes it.

I don’t know what you are referring to.

Simply running the method recursively would lead to inaccuracies because if the kernel is small then it does not approximate a sphere perfectly. The pull request by @sunderlandyl mentioned above will take care of the performance issue in Margin and Hollow effects.

I am sorry i was referring to this. I was expecting that this ROI positioning can be done without the use of the script from the rev 28754 above.

If you think it is not very accurate we will have trouble analyzing the data. Do you have any idea how long the that pull request will take to materialize ?
As the same time is their any work around other than finding a better computer ! we have ordered a workstation but it will take time it seems and we are in hurry on this one.

The oriented bounding box, principal axes, etc. will most likely be used as part of automated workflows, so I’m not sure if it is worth spending time with converting the script to a module. You need to keep using the script or add it to your own processing module.

@Sunderlandkyl might be able to give you an estimate. If it’s very urgent for you: since the work-in-progress part of the pull request does not affect core functionality, you can copy the relevant part of the effect (compute distance map and threshold it) into your own script.

1 Like

I’m working on the pull request currently, and hope to have it finished today.

1 Like

Thank you for the clarification. The script works well for our case so nothing much needed from that aspect.

It is very urgent as we plan to present on this by march. we have around 100 samples of this. If you have some time can you please look at the data if it is nothing too much for ask.

https://drive.google.com/file/d/1cUoeyi0xYrkaRctVPzL6CF845YvmKdVY/view?usp=sharing

We need to grow three zones (0-0.5 mm, 0.5 - 1mm & 1- 1.5 mm) unfortunately we have dont have a way to measure if this is a error in growing 1mmx5 vs 5mmx1. We want the total volumes of each zone calculated.

If you and @Sunderlandkyl could guide me to add this functionality to a script to enhance performance i am very in to trying this out.

Prof @lassoan ,

I was following the discussion at

At this momement, if we tell to grow the margin by 0.5 mm in a cylinder, is only 0.25 mm is grown on either side ? so if we want 0.5 in one side do we need to grow it by 1 mm ?

Margin size will mean the how much a boundary will be moved (if you set 1mm as margin then the object will be 2mm wider).

1 Like

Dear Prof @lassoan @Juicy

Now as margin growing working perfectly we started working on analysis of data and we noticed a very minor offset of the ROI.

We expected the Bar of the ROI to align to all the fiducials. we initially thought it was due to error in placement of marks and we incorporated auto update and played around

Update slice plane automatically whenever points are changed

markupObservation = [markups, markups.AddObserver(slicer.vtkMRMLMarkupsNode.PointModifiedEvent, UpdateSlicePlane, 0)]

In Slice view it is nicely in plane but the ROI does not fit perfectly to that. Is this expected ? Is there something that need to be changed in the ROI code ?

Screenshot

The Coplanar script is working perfectly i think as you can see. It is something wrong with the ROI.

Screenshot_3

How did you position the ROI? Is it the oriented bounding box provided by Segment statistics?