comparison c/feature-based-tracking.cpp @ 542:a3add9f751ef

added differentiate function for curvilinear trajectories and modified the addPosition functions
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 07 Jul 2014 16:54:10 -0400
parents 5ad2f51ae42f
children 045d05cef9d0
comparison
equal deleted inserted replaced
541:048b43654870 542:a3add9f751ef
372 cout << "The program tracks features" << endl; 372 cout << "The program tracks features" << endl;
373 trackFeatures(params); 373 trackFeatures(params);
374 } else if (params.groupFeatures) { 374 } else if (params.groupFeatures) {
375 cout << "The program groups features" << endl; 375 cout << "The program groups features" << endl;
376 groupFeatures(params); 376 groupFeatures(params);
377 } else {
378 cout << "Main option missing or misspelt" << endl;
377 } 379 }
378 380
379 return 0; 381 return 0;
380 } 382 }
381 383