Skip to content
Snippets Groups Projects
Commit 96a874ee authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Suppression variable non utilisée (warning sous MinGW)

parent 09f5a54e
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,6 @@ int otbLocalHough( int argc, char* argv[] )
typedef otb::LineSpatialObjectList LinesListType;
LinesListType::Pointer list = LinesListType::New();
filter->SetRadius( Radius );
filter->SetNumberOfLines( NumberOfLines );
......@@ -73,10 +72,7 @@ int otbLocalHough( int argc, char* argv[] )
list = filter->GetOutput();
LinesListType::const_iterator it;
std::cout<<list->size()<<std::endl;
/* for (it=list.begin(); it!=list.end(); it++)
std::cout<< (*it) <<std::endl;*/
}
catch( itk::ExceptionObject & err )
......
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