Skip to content
Snippets Groups Projects
Commit 9a89074f authored by Jordi Inglada's avatar Jordi Inglada
Browse files

MRG

parents 50ceb399 c8e6a36d
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,6 @@ void
BinaryImageToDensityImageFilter<TInputImage, TOutputImage, TCountFunction>
::GenerateInputRequestedRegion()
{
std::cout<<"GenerateInputRequestedRegion"<<std::endl;
// call the superclass' implementation of this method
Superclass::GenerateInputRequestedRegion();
......
......@@ -397,7 +397,9 @@ VectorDataProjectionFilter<TInputVectorData,TOutputVectorData>
InputChildrenListType children = source->GetChildrenList();
// For each child
for(typename InputChildrenListType::iterator it = children.begin(); it!=children.end();++it)
typename InputChildrenListType::iterator it = children.begin();
while(it!=children.end())
//for(typename InputChildrenListType::iterator it = children.begin(); it!=children.end();++it)
{
typename OutputInternalTreeNodeType::Pointer newContainer;
......@@ -492,6 +494,7 @@ VectorDataProjectionFilter<TInputVectorData,TOutputVectorData>
break;
}
}
++it;
}
}
......
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