diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 62f68ac..efccad4 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -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) diff --git a/include/itkShrinkDecimateImageFilter.hxx b/include/itkShrinkDecimateImageFilter.hxx index 76915ba..590b1fa 100644 --- a/include/itkShrinkDecimateImageFilter.hxx +++ b/include/itkShrinkDecimateImageFilter.hxx @@ -171,7 +171,7 @@ ShrinkDecimateImageFilter::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(); @@ -180,7 +180,7 @@ ShrinkDecimateImageFilter::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