Skip to content

Commit

Permalink
update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisThielemans committed Oct 15, 2023
1 parent 03fe063 commit 3129c05
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions documentation/release_5.2.htm
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ <h3>New functionality</h3>
but you could use it to optimise the number of OpenMP threads to use for your data.
<br /><a href="https://github.com/UCL/STIR/pull/1237/">PR #1237</a>.
</li>
<li>New classes <code>SegmentIndices</code>, <code>ViewgramIndices</code> and <code>SinogramIndices</code>, used by <code>ProjData</code> related classes, as opposed
to having to specify all the elements directly, e.g. in C++
<pre>
auto sinogram = proj_data.get_sinogram(sinogram_indices);
</pre>
This makes these functions more future proof, in particular for TOF. The older functions are now deprecated.
Note that as <code>Bin</code> is now derived from <code>ViewgramIndices</code>, instantations of <code>Bin</code> can now be used to specify the indices as well in most places.
<br/>
There is still more work to do here, mostly related to the symmetries.
<br /><a href="https://github.com/UCL/STIR/pull/1273/">PR #1273</a>.
</li>
</ul>

<h4>Python (and MATLAB)</h4>
Expand Down Expand Up @@ -124,6 +135,9 @@ <h3>Deprecated functionality</h3>
<li>The following functions (previously used for upsampling the scatter estimate) have been
made obsolete or replaced, and will be removed in STIR version 6.0.0: <code>interpolate_axial_position</code>, <code>extend_sinogram_in_views</code> and <code>extend_segment_in_views</code>
</li>
<li>Constructors/functions in <code>ProjData</code> related classes that explicitly use <code>axial_pos_num</code>, <code>view_num</code> in their arguments are now deprecated,
and should be replaced by their respective versions that use <code>SegmentIndices</code>, <code>ViewgramIndices</code> and <code>SinogramIndices</code>.
</li>
</ul>

<h3>Build system and dependencies</h3>
Expand Down

0 comments on commit 3129c05

Please # to comment.