Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
459c16ca
Commit
459c16ca
authored
Jul 19, 2013
by
Alex Leontiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fixes
In request to the comments for the pull request.
parent
6db2596c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
21 deletions
+24
-21
optim.hpp
modules/optim/include/opencv2/optim.hpp
+3
-2
lpsolver.cpp
modules/optim/src/lpsolver.cpp
+21
-15
precomp.hpp
modules/optim/src/precomp.hpp
+0
-2
test_precomp.hpp
modules/optim/test/test_precomp.hpp
+0
-2
No files found.
modules/optim/include/opencv2/optim.hpp
View file @
459c16ca
...
...
@@ -43,11 +43,12 @@
#ifndef __OPENCV_OPTIM_HPP__
#define __OPENCV_OPTIM_HPP__
//uncomment the next line to print the debug info
//#define ALEX_DEBUG
#include "opencv2/core.hpp"
#include <iostream>
namespace
cv
{
namespace
optim
{
using
namespace
std
;
//!the return codes for solveLP() function
enum
{
...
...
modules/optim/src/lpsolver.cpp
View file @
459c16ca
#include "opencv2/ts.hpp"
#include "precomp.hpp"
#include <climits>
#include <algorithm>
#include <cstdarg>
#define ALEX_DEBUG
namespace
cv
{
namespace
optim
{
using
std
::
vector
;
using
namespace
std
;
#ifdef ALEX_DEBUG
#define dprintf(x) printf x
static
void
print_matrix
(
const
Mat
&
x
){
printf
(
"
\t
type:%d vs %d,
\t
size: %d-on-%d
\n
"
,(
x
).
type
(),
CV_64FC1
,(
x
).
rows
,(
x
).
cols
);
for
(
int
i
=
0
;
i
<
(
x
).
rows
;
i
++
){
printf
(
"
\t
type:%d vs %d,
\t
size: %d-on-%d
\n
"
,
x
.
type
(),
CV_64FC1
,
x
.
rows
,
x
.
cols
);
if
(
!
true
){
//cout<<x;
}
else
{
for
(
int
i
=
0
;
i
<
x
.
rows
;
i
++
){
printf
(
"
\t
["
);
for
(
int
j
=
0
;
j
<
(
x
)
.
cols
;
j
++
){
printf
(
"%g, "
,
(
x
)
.
at
<
double
>
(
i
,
j
));
for
(
int
j
=
0
;
j
<
x
.
cols
;
j
++
){
printf
(
"%g, "
,
x
.
at
<
double
>
(
i
,
j
));
}
printf
(
"]
\n
"
);
}
}
}
static
void
print_simplex_state
(
const
Mat
&
c
,
const
Mat
&
b
,
double
v
,
const
std
::
vector
<
int
>
N
,
const
std
::
vector
<
int
>
B
){
printf
(
"
\t
print simplex state
\n
"
);
printf
(
"v=%g
\n
"
,
(
v
)
);
printf
(
"v=%g
\n
"
,
v
);
printf
(
"here c goes
\n
"
);
print_matrix
(
(
c
)
);
print_matrix
(
c
);
printf
(
"non-basic: "
);
for
(
std
::
vector
<
int
>::
const_iterator
it
=
(
N
).
begin
()
;
it
!=
(
N
)
.
end
();
++
it
){
for
(
std
::
vector
<
int
>::
const_iterator
it
=
N
.
begin
()
;
it
!=
N
.
end
();
++
it
){
printf
(
"%d, "
,
*
it
);
}
printf
(
"
\n
"
);
printf
(
"here b goes
\n
"
);
print_matrix
(
(
b
)
);
print_matrix
(
b
);
printf
(
"basic: "
);
for
(
std
::
vector
<
int
>::
const_iterator
it
=
(
B
).
begin
()
;
it
!=
(
B
)
.
end
();
++
it
){
for
(
std
::
vector
<
int
>::
const_iterator
it
=
B
.
begin
()
;
it
!=
B
.
end
();
++
it
){
printf
(
"%d, "
,
*
it
);
}
printf
(
"
\n
"
);
}
#else
#define dprintf(x)
do {} while (0)
#define print_matrix(x)
do {} while (0)
#define print_simplex_state(c,b,v,N,B)
do {} while (0)
#define dprintf(x)
#define print_matrix(x)
#define print_simplex_state(c,b,v,N,B)
#endif
/**Due to technical considerations, the format of input b and c is somewhat special:
...
...
@@ -199,13 +207,11 @@ static int initialize_simplex(Mat_<double>& c, Mat_<double>& b,double& v,vector<
for
(
int
I
=
1
;
I
<
old_c
.
cols
;
I
++
){
if
((
iterator
=
std
::
find
(
N
.
begin
(),
N
.
end
(),
I
))
!=
N
.
end
()){
dprintf
((
"I=%d from nonbasic
\n
"
,
I
));
fflush
(
stdout
);
int
iterator_offset
=
iterator
-
N
.
begin
();
c
(
0
,
iterator_offset
)
+=
old_c
(
0
,
I
);
print_matrix
(
c
);
}
else
{
dprintf
((
"I=%d from basic
\n
"
,
I
));
fflush
(
stdout
);
int
iterator_offset
=
std
::
find
(
B
.
begin
(),
B
.
end
(),
I
)
-
B
.
begin
();
c
-=
old_c
(
0
,
I
)
*
b
.
row
(
iterator_offset
).
colRange
(
0
,
b
.
cols
-
1
);
v
+=
old_c
(
0
,
I
)
*
b
(
iterator_offset
,
b
.
cols
-
1
);
...
...
modules/optim/src/precomp.hpp
View file @
459c16ca
...
...
@@ -43,8 +43,6 @@
#ifndef __OPENCV_PRECOMP_H__
#define __OPENCV_PRECOMP_H__
#include "opencv2/core.hpp"
#include "opencv2/core/mat.hpp"
#include "opencv2/optim.hpp"
#endif
modules/optim/test/test_precomp.hpp
View file @
459c16ca
...
...
@@ -9,8 +9,6 @@
#ifndef __OPENCV_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__
#include "opencv2/core.hpp"
#include "opencv2/core/mat.hpp"
#include "opencv2/ts.hpp"
#include "opencv2/optim.hpp"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment