RTK icon indicating copy to clipboard operation
RTK copied to clipboard

Time is lost extracting each (substack of) projection(s) in the mini-pipeline

Open SimonRit opened this issue 7 years ago • 2 comments

Creating the (substack of) projection(s) from the pointer would be sufficient. CPU and GPU versions would be required.

SimonRit avatar Mar 09 '17 08:03 SimonRit

itkExtractImageFilter inherits from itkInPlaceImageFilter Luis Ibanez's answer (near the end) in this thread https://itk.org/pipermail/community/2014-March/005508.html suggests that when the extract filter is set to InPlaceOn(), it can use an optimized copy method, which probably doesn't actually copy the data

cyrilmory avatar May 16 '18 08:05 cyrilmory

Replying to my own comment: the extract filter actually requires the input's buffered region (in this case all projections) and requested region (in this case, a single projection) to be identical to avoid copying the data. Which means it never happens for the extract filters of SART. So that's not an option.

cyrilmory avatar May 24 '18 09:05 cyrilmory