-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
making scatter work with blocks #1006
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some comments as discussed. Also probably drop changes to inverse_SSRB
as discussed (although we probably want to do that nearer to the end of this PR)
I am a bit confused by the following:
Are we meant to provide a template which already describes the downsample scanner? |
|
OK so it should work even if we don't give a template in input? In my mind the template was the original scanner that then is downsampled |
for cylindrical, the template is optional (as far as I recall), i.e. it will downsample then according to (optional) parameters. It'd be nice to end up there in that situation for blocksoncylindrical as well, which I think you nearly had it. Before @NikEfth created the downsampling functionality, we had to create the template by hand. Now it should be optional. |
It seems that if I don't give a template name then post_processing() which calls set_output_proj_data(const std::string& filename) throws the error:
I do have the downsample ready but it stops before it can even do the downsampling |
Possibly that's a bug.then. I believe we do run |
OK after some debugging I think for the ScattereEstimation it makes sense to allow no template because the info about the scanner are provided in that class and post_processing is not called, therefore we don't encounter that error. However, when we run the simulate_scatter utility on its own we need a template otherwise it does not have any clue about scanner geometry. I think the easiest solution would be to re-set output_proj_data after the downsampling in this way everything runs and the simulated scatter looks something reasonably alike to a cylinder |
yes, makes sense.
I'm 100% lost. reset where? |
In ScatterSimulation, we give a template which is the original scanner (out_projdata is set equal to that in post_processing()), then we downsample this scanner and change out_projdata info with the downsampled one. |
ok. I think it does make sense to (optionally?) let ScatterSimulation do the downsampling, but then I also think it has to do the upsampling, i.e. output has to be the same size as the template. This would be good, but obviously out of scope for this PR. |
- add condition on Geometry for contructor of ProjDataCylindrical as it gets called by ProjDataGeneric - revert inversSSRB - downsample_scatter is by default true and downsampled_num_dets=-1 to downsample the view downsampled_num_dets needs to be set >0
who knows how Amide displays output of |
I am running simulate_scatter with original scanner. It has been running for 25h with openMP on. does this seem normal? |
it will take a long time yes, certainly if you have it in full 3D. That's the whole reason we do the downsampling... You should be able to monitor progress in the log files. It'll give an estimate of run-time, which initially is too pessimistic as it ignores the benefit of the caching of "scatter-point <-> detector" lines, but it would still give you some idea. |
I think this look weird, is it possible that the z_shift needs to be applied again? |
I guess it'd be good to see coronal slice of the activity/attenuation images. Might need a hunt through the |
I had put this check for Cylindrical only but pheraps needs to be there and in fact detector_coord_A.z() (and B) is different than 0
before this line find_cartesian_coordinates_of_detection(detector_coord_A, detector_coord_B, Bin(0, 0, 0, 0)); is called which adds a z_shift further away from zero |
So I had a look at the code and there is a shift in the following: STIR/src/scatter_buildblock/ScatterSimulation.cxx Lines 404 to 405 in bdaa466
when I change the sign of this shift I get something that looks more like the equivalent in the cylindrica geometry |
unfortunately that makes little sense to me. You did a lot of hard work to make sure that Possibly you could enable the debug code above, removing lines
|
or pheraps we could have a check like in L385 and if is not zero calculate the difference and force it zero? I know it sounds ugly even while I am writing :) |
yup. ugly 😁. My interpretation is that this check has to be satisfied, as otherwise there is something wrong with the coordinate systems. No? By the way, I feel there's no need to quote whole messages if the reply is "in sequence". |
…te the shift. All instances have inverted sign; - fixed axial upsampling - change scanner_lenght in ScatterSimulation to include gaps
This now seems to be working. Although I am a bit confused with the sampling in particular the line below:
to me this should not be divided by 2 |
|
The "2d" sino output is not SSRB'd. |
Co-authored-by: Kris Thielemans <KrisThielemans@users.noreply.github.com>
Co-authored-by: Kris Thielemans <KrisThielemans@users.noreply.github.com>
looks like it's still taking too much time. Something else I guess. Did you run the test locally? |
not yet. Still waiting for my computer |
…r ring in Cylindrical case; set cylindrical case to 64 det per ring.
…catter simulation
Co-authored-by: Kris Thielemans <KrisThielemans@users.noreply.github.com>
My suggestions cause the tests to fail with
which is thrown in STIR/src/buildblock/ProjDataInfoCylindrical.cxx Lines 338 to 339 in aaa0f8e
So now I'm confused. This code needs |
I am kind of lost here :D |
We will fix the initialisation of the ring diff arrays in a future PR. |
No description provided.