1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-21 06:11:09 +08:00
Commit Graph

713 Commits

Author SHA1 Message Date
Alex Leontiev
a5b8a0a190 Vadim 2014-07-09 22:20:21 +09:00
Alex Leontiev
70803dff04 Vadim 2014-07-09 22:20:21 +09:00
Alex Leontiev
c019f0a844 Vadim 2014-07-09 22:20:21 +09:00
Alex Leontiev
c8cbab6805 Vadim 2014-07-09 22:20:21 +09:00
Alex Leontiev
470a822113 Vadim 2014-07-09 22:20:21 +09:00
Alex Leontiev
ff73c6f431 Vadim 2014-07-09 22:20:20 +09:00
Alex Leontiev
ca4d53254b commit 2014-07-09 22:20:20 +09:00
Alex Leontiev
8869daec8c commit 2014-07-09 22:20:20 +09:00
Alex Leontiev
f080b3448f commit 2014-07-09 22:20:20 +09:00
Alex Leontiev
be49e4a046 commit 2014-07-09 22:20:20 +09:00
Alex Leontiev
c27db0d157 Tracking-Learning-Detection and MedianFlow
This contribution includes the following logical components into
tracking module:

.) Change Rect to Rect2d into headers for Tracker's methods;
This contribution includes the following logical components into
tracking module:

.) Change Rect to Rect2d into headers for Tracker's methods;
.) MedianFlow tracker;
.) extensible benchmark to compare trackers interactively and
	assess them quantitatively;
.) TLD tracker (work-in-progress);

Work was funded by Google Summer of Code 2014 initiative. Mentors:
Gary
Bradski and Vadim Pisarevsky.
2014-07-09 22:20:20 +09:00
jaco
b6fc3d8182 Delete SuBSENSE algorithm (motion saliency) due to license issues
Part of SuBSENSE algorithm is based on ViBe method, that is patented in
Europe ans U.S.
This means that SuBSENSE can not currently be released under the BSD
license. We are trying to resolve the issue.
In waiting, I am forced to remove the algorithm from the "official"
branch on which the pull-request on opencv_contrib will be made . The
code has been moved to an opportune branch (that will not be merged) and
will remain there waiting for this issue to be clarified.
2014-07-09 14:41:50 +02:00
Alexandre Benoit
ed3e450695 Merge pull request #24 from albenoit/master
added samples to use retina in its basic form and for HDR tone mapping
2014-07-08 17:28:38 +02:00
Antonella Cascitelli
9ecdd12311 Merge pull request #30 from nailbiter/abstract
More abstract tracker declaration
2014-07-08 17:01:44 +02:00
Alex Leontiev
1940c120ac More abstract tracker declaration
This contribution changes the way how trackers should be implemented by
programmer. It should be noted first, that from the user prospective,
Tracker::create() method still can be called with the same effect.
However, there's no more thing as a "constructor" for Tracker, they
should be created via static functions, e.g.
    static Ptr<TrackerMIL> createTracker(const TrackerMIL::Params &parameters=TrackerMIL::Params());

From the programmer's perspective now for every tracker what is declared
in tracker.hpp header is more a "interface", while the real
implementation class can (and has to) be implemented in .cpp file.

Changes in documentation are also included.
2014-07-08 22:08:42 +09:00
Bellaktris
cb20770548 deleted redundunt code 2014-07-08 14:20:01 +07:00
Alexandre Benoit
3ae595c1a7 updated code formating of reina samples 2014-07-08 08:30:38 +02:00
Bellaktris
9eefb19137 parallelization and bug fixes 2014-07-08 06:25:17 +07:00
vbystricky
a164e6252f Fix build errors 2014-07-07 15:59:27 +04:00
vbystricky
54d71a24ec Extract imgcodecs module from highgui 2014-07-07 12:11:53 +04:00
jaco
4e478bc0b3 BING bb sorting modified and SuBSENSE compiling error fixed 2014-07-04 19:47:24 +02:00
Alexander Alekhin
3bf743e683 Merge pull request #31 from ilya-lavrenov/warn_fix 2014-07-04 20:55:14 +04:00
Ilya Lavrenov
89cd87107f fixed warnings 2014-07-04 13:09:18 +04:00
Bellaktris
8b7e001f5f Merge branch 'ximpgroc' of https://github.com/Bellaktris/opencv_contrib into ximpgroc 2014-07-04 15:22:00 +07:00
Bellaktris
3ceb5331b1 -||- 2014-07-04 14:24:43 +07:00
Bellaktris
a2453fd597 -||- 2014-07-04 13:04:53 +07:00
Bellaktris
1268717921 -||- 2014-07-04 13:03:08 +07:00
Bellaktris
cc9fd5af57 -||- 2014-07-04 06:51:57 +07:00
Bellaktris
444abe8207 dct image denoising added 2014-07-04 06:33:01 +07:00
Vadim Pisarevsky
c064042c33 Merge pull request #21 from shahurik/adas
ADAS: training app, stumps and waldboost
2014-07-03 17:03:22 +04:00
Vlad Shakhuro
6f138e50c2 Add private header 2014-07-03 15:07:52 +04:00
Vlad Shakhuro
a8f9344ef8 Derive WaldBoost from Algorithm 2014-07-03 09:01:50 +04:00
Vlad Shakhuro
a9599990f0 Fix typo 2014-07-03 08:32:54 +04:00
Vlad Shakhuro
85aaf88aa9 Derive ACFFeatureEvaluator from Algorithm 2014-07-03 08:32:36 +04:00
jaco
88bae7be36 SuBSENSE porting: compiling errors fixed 2014-07-01 17:19:55 +02:00
biagio montesano
3b207a77f8 First part of documentation completed 2014-06-29 16:20:09 +02:00
biagio montesano
db189cd3db Matcher ported, first page od documentation written. 2014-06-28 18:42:29 +02:00
Bellaktris
bde7ee488c fixed g++ build 2014-06-28 13:58:34 +04:00
jaco
00d9ef424e BING files location update and Start SuBSENSE porting 2014-06-27 19:19:35 +02:00
Vlad Shakhuro
c994b48966 Fix gcc warning 2014-06-27 18:26:54 +04:00
Vlad Shakhuro
d8b0e8d53d Fix MS compiler warnings 2014-06-27 17:42:23 +04:00
Vlad Shakhuro
27692f5cd8 Fix gcc warning 2014-06-27 17:20:31 +04:00
Bellaktris
a200e8ab16 merging 2014-06-27 18:10:57 +07:00
Bellaktris
0fd4823566 colorbalance module added, now it contains the only WHITE_BALANCE_SIMPLE implementation 2014-06-27 03:55:05 +07:00
biagio montesano
96183dd09b Lines extraction and descriptors testing completed 2014-06-25 16:10:46 +02:00
Vlad Shakhuro
a2a22662d3 Add default constructor to WaldBoost 2014-06-25 15:46:18 +04:00
Vlad Shakhuro
4801502ae6 labelling -> labels 2014-06-25 15:44:18 +04:00
Vlad Shakhuro
edeef0fdbc fprintf(stderr, ...) -> cerr << ... 2014-06-25 15:43:34 +04:00
Vlad Shakhuro
ab6a2c6577 Add headers to precomp.hpp 2014-06-25 15:38:40 +04:00
Alexander Alekhin
bf93366d67 Merge pull request #27 from vpisarev/rgbd_fixes 2014-06-24 15:33:48 +04:00