Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CTestConfig.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(CTEST_PROJECT_NAME "ITK")
set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_METHOD "https")
set(CTEST_DROP_SITE "open.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=Insight")
set(CTEST_DROP_SITE_CDASH TRUE)
4 changes: 2 additions & 2 deletions include/itkShrinkDecimateImageFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ ShrinkDecimateImageFilter<TInputImage, TOutputImage>::GenerateInputRequestedRegi
InputIndexType inputRequestedRegionIndex;
OutputOffsetType offsetIndex;

typename TInputImage::SizeType inputRequestedRegionSize;
typename TInputImage::SizeType inputRequestedRegionSize;

// Use this index to compute the offset everywhere in this class
OutputIndexType outputIndex = outputPtr->GetLargestPossibleRegion().GetIndex();
Expand All @@ -180,7 +180,7 @@ ShrinkDecimateImageFilter<TInputImage, TOutputImage>::GenerateInputRequestedRegi
// inputIndex on all points in our region
typename TOutputImage::PointType tempPoint;
outputPtr->TransformIndexToPhysicalPoint(outputIndex, tempPoint);
InputIndexType inputIndex { inputPtr->TransformPhysicalPointToIndex(tempPoint) };
InputIndexType inputIndex{ inputPtr->TransformPhysicalPointToIndex(tempPoint) };

// Given that the size is scaled by a constant factor eq:
// inputIndex = outputIndex * factorSize
Expand Down
Loading