This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Expansion to Buckets on Cylindrical geometries #1385
Labels
You can continue the conversation there. Go to discussion →
Primarily an extension of issue #1374 and PR #1375. The motivation for this was detailed here with an initial plan laid out. This issue serves as an extension of that comment.
STIR does not support multiple axial buckets of blocks of crystals on a ring. #1375 disabled the ability to use multiple axial buckets due to a bug in an assumptive implementation.
I require the use of
gaps_between blocks != gaps_between_buckets
therefore I am planning the implementation ofBucketsOnCylindrical
using theBlocksOnCylindrical
current frame work. I do not plan to change the name, just the implementation.Below are some of the main points worth discussion.
What do are a set of parallel buckets called?
I will refer to them as
modules
in this issue but the name can change via a refactor.Modules are rotated by angle
alpha
around the z axis of the scanner. It is important a suitable name is given to the collection of bucketsSome other ideas:
rsectors
for CylindricalPET (see GATE example.mac
file)STIR/documentation/STIR-UsersGuide.tex
Lines 779 to 797 in 37f799f
STIR could adopt
rsectors
,sectors
orsections
modules
. This would might make the translation between STIR and GATE even more annoying but it is a good fit.Suggestions welcome
Transaxial Buckets are maybe not supported?
#1375 (comment). I am not sure this is the case upon further review.
STIR/src/buildblock/GeometryBlocksOnCylindrical.cxx
Lines 128 to 129 in 37f799f
It seems
trans_bucket_num
is only used in the computation ofalpha
and in thetangential_coord
(similar toaxial_bucket_num
in calculation ofaxial_coord
). Thealpha
is used to determine therotation_matrix
, i.e.alpha
is an angle around the z axis.I understand this as no two buckets can be parallel.
In this case, additional variables is needed throughout:
num_axial_buckets_per_module
andnum_transaxial_buckets_per_module
.1
.GeometryBlocksOnCylindrical::build_crystal_maps
loops will need to be extended.get_num_modules()
,get_num_axial_crystals_per_module()
andget_num_transaxial_crystals_per_module()
Spacing between buckets (Axial & Transaxial)
#1375 (comment) . Not too much to add. The value should probably default to
num_axial_blocks_per_bucket*get_axial_block_spacing()
, otherwise a user defined variable > 0.More tests
#1375 adds a test requiring the axial crystals position to increase monotonically with the axial crystal coordinate.
Additional tests should be added for the transaxial. As an idea, the angle sequential coordinate vectors in the detector map should never be greater than 90 degrees, i.e.
cos(A -> B, B->C) >= 0
. Except maybe in the instance of only two modules.Virtual Crystals
#776 by @NikEfth tries to add virtual crystals. I am not 100% sure on the status of this and neither do I want to delve into it but I assume any issues encountered with adding virtual crystals to
BucketsOnCylindrical
would also be present in theBlocksOnCylindrical
, so no significant change there.Data Correction
Will there be any other issues with data correction methods etc. that we have not taken into account? e.g. scatter correction and normalization? I expect the same issues, maybe further complicated by this proposal.
@KrisThielemans @markus-jehl @danieldeidda
The text was updated successfully, but these errors were encountered: