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

TEST:check the number of parameters of streaming vectorization test

parent 2503dd9f
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,14 @@ int otbStreamingVectorizedSegmentationOGRNew(int argc, char * argv[])
int otbStreamingVectorizedSegmentationOGR(int argc, char * argv[])
{
if (argc != 4)
{
std::cerr << "Usage: " << argv[0];
std::cerr << " inputImage outputVec TileDimension" << std::endl;
return EXIT_FAILURE;
}
const unsigned int spatialRadius = 9;
const unsigned int spectralRadius = 9;
const double spectralbandwidth = 50;
......
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