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

STYLE

parent ee7d1e9e
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,16 @@
int main( int argc, char *argv[] )
{
if (argc < 1)
{
{
std::cout << "Usage : inputImage" << std::endl ;
return EXIT_FAILURE;
}
}
char * filename = argv[1];
typedef double PixelType;
typedef otb::VectorImage< PixelType > ImageType;
typedef otb::ImageFileReader<ImageType> ReaderType;
typedef otb::ImageFileReader<ImageType> ReaderType;
// check for input images
ReaderType::Pointer reader = ReaderType::New();
......@@ -44,5 +44,3 @@ int main( int argc, char *argv[] )
return EXIT_SUCCESS;
}
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