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

Correction cast "const int"

parent f9dd04e4
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ int main(int argc, char* argv[] )
typedef itk::ImageRegionIterator< ListImageType > IteratorType;
IteratorType It1( tabreadImage, tabreadImage->GetLargestPossibleRegion() );
int nblines = tabreadImage->GetLargestPossibleRegion().GetSize()[1];
const int nblines = (const int)(tabreadImage->GetLargestPossibleRegion().GetSize()[1]);
const int nbcolonnes=9;//tabreadImage->GetLargestPossibleRegion().GetSize()[0];
......
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