This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
opencv
Watch
1
Star
0
Fork
0
You've already forked opencv
mirror of
https://github.com/opencv/opencv.git
synced
2024-11-30 14:29:49 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
7f7064e3b9
opencv
/
modules
/
optim
/
CMakeLists.txt
3 lines
81 B
CMake
Raw
Normal View
History
Unescape
Escape
Starting implement simplex algorithm.
2013-06-17 23:16:30 +08:00
set
(
the_description
"Generic optimization"
)
Created skeleton for simplex method. Added LPSolver class together with two nested classes: LPFunction and LPConstraints. These represent function to be maximized and constraints imposed respectively. They are implementations of interfaces Function and Constraints respectively (latter ones are nested classes of Solver interface, which is generic interface for all optimization algorithms to be implemented within this project). The next step is to implement the simplex algorithm! First, we shall implement it for the case of constraints of the form Ax<=b and x>=0. Then, we shall extend the sets of problems that can be handled by the conversion to the one we've handled already. Finally, we shale concentrate on numerical stability and efficiency.
2013-06-25 01:27:11 +08:00
ocv_define_module
(
optim
opencv_core
)
Reference in New Issue
Copy Permalink