Vadim Pisarevsky
257463719b
removed optim module; moved its functionality to core and photo modules; moved drawing functions from core to imgproc. Removed FilterEngine etc. from public API
11 years ago
Adil Ibragimov
8a4a1bb018
Several type of formal refactoring:
...
1. someMatrix.data -> someMatrix.prt()
2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
11 years ago
Alex Leontiev
0324932fb3
Added the copyright statements
...
Added the copyrights missing in all files that required so.
12 years ago
Alex Leontiev
3ac3ba0415
Minor fixes
...
Fix failed builds that opencv's buildbot has got.
12 years ago
Alex Leontiev
891bcd8491
Finish implementing the Nonlinear Conjugate Gradient
...
Now everything is prepared for the pull request.
12 years ago
Alex Leontiev
581d454536
Refined interface for Conjugate Gradient
...
Some interface was refined (most notably, the method for returning
Hessian was removed and the method for getting gradient was added as
optional to base Solver::Function class) and basic code for
setters/getters was added. Now is the time for the real work on an
algorithm.
12 years ago