Ask Your Question

v.22's profile - activity

2016-06-16 11:07:40 -0600 received badge  Enthusiast
2016-06-09 17:06:30 -0600 received badge  Editor (source)
2016-06-07 15:02:21 -0600 asked a question KNN Performance

I am implementing KNN in opencv and comparing results to weka. For exact same data and knn parameters, there's an ~10% difference in performance with better performance achieved by weka. I implemented normalization in opencv myself ( all data normalized to [0 1] range) but it resulted in small improvement.

Any idea why this could be happening or any advise on how to improve knn performance in opencv??

Thank you

2016-02-13 10:21:07 -0600 commented question Creating independent exe file

I am using a clr application which does not allow static build.. Apparently, clr only allows dynamic linking...

2016-02-12 00:13:35 -0600 asked a question Creating independent exe file

Hello,

I created an openCV exe using CLR/C++ using VS2013. It works fine on pcs with VS 2013 (even downloading the redistributable package wasn't enough to get the exe to work).

I want it to work on any PC even if it doesn't have Visual Studio on it.. Should the redistributable be enough? Or must I use an installer? Or is there a simpler solution..

Thanks