The initial commit for generic optimization
authorAlex Leontiev <alozz1991@gmail.com>
Fri, 31 May 2013 04:39:15 +0000 (07:39 +0300)
committerAlex Leontiev <alozz1991@gmail.com>
Fri, 31 May 2013 04:39:15 +0000 (07:39 +0300)
commit47ce461d97640c553cc752b527c146691ecb6054
tree791ea5e4454825bc8ecbb83fd6a7ad99c889efb2
parentd81d3fc83028fe5340002770f025e4406de6933b
The initial commit for generic optimization

Generic optimization package for openCV project, will be developed
between the June and September of 2013. This work is funded by Google
Summer of Code 2013 project. This project is about
implementing several algorithms, that will find global maxima/minima of a
given function on a given domain subject to a given constraints.

All comments/suggestions are warmly appreciated and to be sent to
alozz1991@gmail.com (please, mention the word "openCV" in topic of
message, for I'm using the spam-filters)
24 files changed:
modules/optim/CMakeLists.txt [new file with mode: 0644]
modules/optim/doc/denoising.rst [new file with mode: 0644]
modules/optim/doc/inpainting.rst [new file with mode: 0644]
modules/optim/doc/photo.rst [new file with mode: 0644]
modules/optim/include/opencv2/photo.hpp [new file with mode: 0644]
modules/optim/include/opencv2/photo/photo.hpp [new file with mode: 0644]
modules/optim/include/opencv2/photo/photo_c.h [new file with mode: 0644]
modules/optim/perf/perf_inpaint.cpp [new file with mode: 0644]
modules/optim/perf/perf_main.cpp [new file with mode: 0644]
modules/optim/perf/perf_precomp.cpp [new file with mode: 0644]
modules/optim/perf/perf_precomp.hpp [new file with mode: 0644]
modules/optim/src/arrays.hpp [new file with mode: 0644]
modules/optim/src/denoising.cpp [new file with mode: 0644]
modules/optim/src/fast_nlmeans_denoising_invoker.hpp [new file with mode: 0644]
modules/optim/src/fast_nlmeans_denoising_invoker_commons.hpp [new file with mode: 0644]
modules/optim/src/fast_nlmeans_multi_denoising_invoker.hpp [new file with mode: 0644]
modules/optim/src/inpaint.cpp [new file with mode: 0644]
modules/optim/src/precomp.cpp [new file with mode: 0644]
modules/optim/src/precomp.hpp [new file with mode: 0644]
modules/optim/test/test_denoising.cpp [new file with mode: 0644]
modules/optim/test/test_inpaint.cpp [new file with mode: 0644]
modules/optim/test/test_main.cpp [new file with mode: 0644]
modules/optim/test/test_precomp.cpp [new file with mode: 0644]
modules/optim/test/test_precomp.hpp [new file with mode: 0644]