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

BUG: warning correction

parent b85e558b
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ DrawPathListFilter<TInputImage,TInputPath,TOutputImage>
// Then we use otb::PolyLineImageIterator to draw polylines
for(PathListIteratorType plIt = pathListPtr->Begin(); plIt!=pathListPtr->End();++plIt)
{
OutputImagePixelType value;
OutputImagePixelType value = itk::NumericTraits<OutputImagePixelType>::Zero;
if(m_UseInternalPathValue && plIt.Get()->GetMetaDataDictionary().HasKey("Value"))
{
itk::ExposeMetaData<OutputImagePixelType>(plIt.Get()->GetMetaDataDictionary(),"Value",value);
......
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