Skip to content
Snippets Groups Projects
Commit 37980f66 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

COV: refactor and simplify loop to avoid corner cases

parent 39d9c359
No related branches found
No related tags found
Loading
......@@ -336,7 +336,7 @@ VectorDataToLabelMapWithAttributesFilter<TVectorData, TLabelMap>
typedef typename IndexType::IndexValueType IndexValueType;
RSRegionType polygonExtRingBoundReg = correctPolygonExtRing->GetBoundingRegion();
IndexType startIdx,endIdx,tmpIdx;
OriginType physCorners[4];
physCorners[0][0] = polygonExtRingBoundReg.GetOrigin(0);
physCorners[0][1] = polygonExtRingBoundReg.GetOrigin(1);
......@@ -349,21 +349,19 @@ VectorDataToLabelMapWithAttributesFilter<TVectorData, TLabelMap>
physCorners[2][0] += polygonExtRingBoundReg.GetSize(0);
physCorners[3][0] += polygonExtRingBoundReg.GetSize(0);
IndexType startIdx,endIdx,tmpIdx;
startIdx.Fill(itk::NumericTraits<IndexValueType>::max());
endIdx.Fill(itk::NumericTraits<IndexValueType>::NonpositiveMin());
for (unsigned int k=0; k<4; ++k)
{
this->GetOutput()->TransformPhysicalPointToIndex(physCorners[k],tmpIdx);
if (k == 0)
{
startIdx = tmpIdx;
endIdx = tmpIdx;
}
else
{
startIdx[0] = std::min(startIdx[0],tmpIdx[0]);
startIdx[1] = std::min(startIdx[1],tmpIdx[1]);
endIdx[0] = std::max(endIdx[0],tmpIdx[0]);
endIdx[1] = std::max(endIdx[1],tmpIdx[1]);
}
startIdx[0] = std::min(startIdx[0],tmpIdx[0]);
startIdx[1] = std::min(startIdx[1],tmpIdx[1]);
endIdx[0] = std::max(endIdx[0],tmpIdx[0]);
endIdx[1] = std::max(endIdx[1],tmpIdx[1]);
}
// Check that the polygon intersects the largest possible region
RegionType polyRegion;
......
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