Commit 24cca8d7 authored by Alex Leontiev's avatar Alex Leontiev

warnings

parent c4393803
......@@ -84,7 +84,7 @@ static void parseCommandLineArgs(int argc, char** argv,char* videos[],char* gts[
continue;
}
bool isVideo=false;
for(int j=0,len=strlen(argv[i]);j<len;j++){
for(int j=0,len=(int)strlen(argv[i]);j<len;j++){
if(!('A'<=argv[i][j] && argv[i][j]<='Z') && argv[i][j]!='.'){
isVideo=true;
break;
......
......@@ -53,7 +53,7 @@
#define NEG_EXAMPLES_IN_INIT_MODEL 300
#define MAX_EXAMPLES_IN_MODEL 500
#define MEASURES_PER_CLASSIFIER 13
#define BLUR_AS_VADIM
#undef BLUR_AS_VADIM
#undef CLOSED_LOOP
static const cv::Size GaussBlurKernelSize(3,3);
......@@ -66,6 +66,8 @@ using namespace tld;
* direct formula in resamples
* FIXME(issues)
* THETA_NN 0.5<->0.6 dramatic change vs video 6 !!
* FIXME(features)
* benchmark: save photos --> two streams of photos --> better video
* TODO:
* schoolPC: codec, libopencv-dev
* fix pushbot ->pick commits -> compare_branches->all in 1->resubmit
......@@ -75,7 +77,6 @@ using namespace tld;
* vadim:
*
* blurred in TrackerTLDModel()
* private members: pull_approval --> update master --> merge --> redo --> report
*
* warpAffine -- ?
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment