Commit baf2b87a authored by berak's avatar berak

Update modules/contrib/include/opencv2/contrib/contrib.hpp

class LevMarqSparse is not tagged CV_EXPORTS, 
so the contrib module,  built the on win using vs won't contain that symbol,
trying to create an instance of LevMarqSparse will lead to a 'undefined symbol' err, because it did not make it into the library. 
parent f52ce652
...@@ -435,7 +435,7 @@ namespace cv ...@@ -435,7 +435,7 @@ namespace cv
typedef bool (*BundleAdjustCallback)(int iteration, double norm_error, void* user_data); typedef bool (*BundleAdjustCallback)(int iteration, double norm_error, void* user_data);
class LevMarqSparse { class CV_EXPORTS LevMarqSparse {
public: public:
LevMarqSparse(); LevMarqSparse();
LevMarqSparse(int npoints, // number of points LevMarqSparse(int npoints, // number of points
......
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