opencv/modules/optim/src
Saree90 7f7064e3b9 DownhillSolverImpl::innerDownhillSimplex something looks broken here:
Mat_<double> coord_sum(1,ndim,0.0),buf(1,ndim,0.0),y(1,ndim,0.0);
nfunk = 0;
for(i=0;i<ndim+1;++i)
{
y(i) = f->calc(p[i]);
}
y has only ndim elements, while the loop goes over ndim+1
2014-05-22 22:52:37 +10:00
..
conjugate_gradient.cpp Added the copyright statements 2013-09-30 18:53:32 +08:00
debug.hpp Added the copyright statements 2013-09-30 18:53:32 +08:00
denoise_tvl1.cpp Added the copyright statements 2013-09-30 18:53:32 +08:00
lpsolver.cpp Merge pull request #1521 from nailbiter:optimCG 2013-10-29 16:14:32 +04:00
precomp.hpp Added the copyright statements 2013-09-30 18:53:32 +08:00
simplex.cpp DownhillSolverImpl::innerDownhillSimplex something looks broken here: 2014-05-22 22:52:37 +10:00