Skip to content
Snippets Groups Projects
Commit 9b091e61 authored by Julien Malik's avatar Julien Malik
Browse files

MRG

parents 67ff4978 dddfb1a4
Branches
Tags
No related merge requests found
......@@ -31,6 +31,11 @@
int otbSVMImageModelEstimatorTrain(int argc, char* argv[])
{
// Force the pseudo-random number generator to always output
// the same sequence of random numbers
// Done because, in case of optimization, rand() is called by libsvm
srand(0);
const char* inputImageFileName = argv[1];
const char* trainingImageFileName = argv[2];
const char* outputModelFileName = argv[3];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment