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-24 03:00:14 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
580677f43d
opencv
/
.gitignore
11 lines
83 B
Plaintext
Raw
Normal View
History
Unescape
Escape
added gitignore to filter out certain temporary files
2012-07-26 21:11:00 +08:00
*.pyc
.DS_Store
refman.rst
Fix tegra build warnings
2012-08-07 16:42:25 +08:00
OpenCV4Tegra/
Updated gitignore relative to new platforms dir
2013-07-30 22:48:20 +08:00
tegra/
Add ignore for *.user files
2012-08-10 21:32:29 +08:00
*.user
Changed the file .gitignore (added vim swap files and tag files)
2012-08-28 21:46:45 +08:00
.sw[a-z]
.*.swp
tags
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
build/
Reference in New Issue
Copy Permalink