Ask Your Question

TKJ's profile - activity

2015-06-20 01:02:31 -0600 received badge  Supporter (source)
2015-06-20 01:02:30 -0600 commented answer MLP Same Data Different Results

Yup! this was the problem, thanks!

2015-06-20 01:02:04 -0600 asked a question Does opencv have Savitzky Golay or Polynomial fit?

I can't find anything similar to Savitzky Golay Polynomial Fit on opencv. This is a standard smoothing operation though, so it seems like something they should have. Does anybody know of anything they have? Using C++ for what its worth.

Thanks! -Tim

2015-06-16 14:14:03 -0600 received badge  Editor (source)
2015-06-12 23:30:29 -0600 asked a question MLP Same Data Different Results

Let Me simplify this question.

If I run opencv MLP train and classify consecutively on the same data, I get different results. Meaning, if I put training a new mlp on the same train data and classifying on the same test data in a for loop, each iteration will give me different results. Even though I am creating a new mlp object each iteration. However, if instead of using a for loop I just run the program a few times, restarting the program after each train and classify; the results are exactly the same.

So question is, does opencv use previous weights, variables, or something of the sorts from other mlp trains? Even though it is not the same mlp object. Anyone know why it does this?

Thanks for the time! -Tim