Skip to content
Snippets Groups Projects
Commit 460d4c06 authored by Cédric Traizet's avatar Cédric Traizet
Browse files

WRG: fix warning on conversion from unsigned to signed

parent 6070da41
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,8 @@ MultiImageFileWriter::Sink<TImage>::GetRegionToWrite() const
throw e;
}
typename itk::ImageRegion<2>::IndexType start {{boxVector[0], boxVector[1]}};
// indices are signed, sizes are unsigned
typename itk::ImageRegion<2>::IndexType start {{static_cast<int>(boxVector[0]), static_cast<int>(boxVector[1])}};
typename itk::ImageRegion<2>::SizeType size {{boxVector[2], boxVector[3]}};
itk::ImageRegion<2> regionToWrite {start , size};
regionToWrite.Crop(m_InputImage->GetLargestPossibleRegion());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment