Nenad Mancevic

Results 5 comments of Nenad Mancevic

Hi there, Did you get the training set and run the training algorithm before running the main program?

Well, by running main.m for the first time the program should figure out that there's no training set and it'll generate positive and negative features from the training images and...

When you run the program do you get the following messages: "Extracting features from positive image" "Extracting features from negative image" If not, you might want to check if the...

After you run the program, do you have: posFeatures.mat and negFeatures.mat in your working folder? If you do, what happens when you try to run: positiveFeatures = load('posFeatures.mat'); from within...

Ok, thanks. Can you try this: main.m, line 47 change to: positiveFeatures = load('posFeaturesBig.mat'); and main.m line 74 change to: negativeFeatures = load('negFeaturesBig.mat'); OR simply rename your negFeaturesBig.mat to negFeatures.mat...