PERF: Use region iterator image ComposeBigVectorImageFilter#5306
Merged
blowekamp merged 1 commit intoInsightSoftwareConsortium:masterfrom Apr 14, 2025
Merged
Conversation
This test is timing out on nightly valgrind and coverage builds. These changes may reduce the number of temporaries heap allocations used, and improve performance. Local test in debug mode, improve performance by more than 10%.
N-Dekker
reviewed
Apr 15, 2025
Comment on lines
+72
to
+73
| itk::ImageRegionConstIterator<VectorImageType> it(img, sliceRegion); | ||
| for (it.GoToBegin(); !it.IsAtEnd(); ++it) |
Contributor
There was a problem hiding this comment.
@blowekamp Cool. 👍 Some small suggestions...
it.GoToBegin() is not necessary. An ImageRegionConstIterator always starts at the begin. So these two lines could be replaced with one:
for (itk::ImageRegionConstIterator<VectorImageType> it(img, sliceRegion); !it.IsAtEnd(); ++it)
N-Dekker
reviewed
Apr 15, 2025
Comment on lines
+75
to
+77
| if (it.Get()[i] != i % 250) | ||
| { | ||
| itk::Index<3> idx = { { x, y, z } }; | ||
|
|
||
| auto pixel = img->GetPixel(idx); | ||
| if (pixel[i] != i % 250) | ||
| { | ||
| ++values[pixel[i]]; | ||
| } | ||
| ++values[it.Get()[i]]; |
Contributor
There was a problem hiding this comment.
If possible, I would avoid calling it.Get()[i] twice. Instead, would it also work as follows?
if (const auto channelValue = it.Get()[i]; channelValue != i % 250)
{
++values[channelValue];
}
N-Dekker
reviewed
Apr 15, 2025
| std::map<unsigned int, unsigned int> values; | ||
|
|
||
| for (itk::IndexValueType y = 0; y < size; ++y) | ||
| sliceRegion.SetIndex(2, z); // Set the index of the z-dimension to the current slice |
Contributor
There was a problem hiding this comment.
If z should always just have the same value as i (the current channel number), I would suggest removing the variable z, and using i directly:
sliceRegion.SetIndex(2, i);
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This test is timing out on nightly valgrind and coverage builds.
These changes may reduce the number of temporaries heap allocations used, and improve performance. Local test in debug mode, improve performance by more than 10%.
PR Checklist
Refer to the ITK Software Guide for
further development details if necessary.