Skip to content

Commit

Permalink
Sign comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
spinicist committed Nov 24, 2023
1 parent 5286d19 commit 5e1f9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Utils/qicomplex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ int complex_main(args::Subparser &parser) {
auto compose_imag = itk::JoinSeriesImageFilter<TVolume, TImage>::New();
auto extract_region = interleaved_region;
extract_region.GetModifiableSize()[3] = 0;
for (auto iv = 0; iv < nv; iv++) {
for (size_t iv = 0; iv < nv; iv++) {
auto extract_real = itk::ExtractImageFilter<TImage, TVolume>::New();
extract_region.GetModifiableIndex()[3] = 2 * iv;
extract_real->SetExtractionRegion(extract_region);
Expand Down

0 comments on commit 5e1f9ac

Please sign in to comment.