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
60acd91c
Commit
60acd91c
authored
Jun 29, 2010
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added Eigen2 support; fixed compile errors on Ubuntu 10.04
parent
7ec4b59f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
8 deletions
+34
-8
CMakeLists.txt
CMakeLists.txt
+23
-3
cvconfig.h.cmake
cvconfig.h.cmake
+4
-2
core.hpp
modules/core/include/opencv2/core/core.hpp
+2
-2
internal.hpp
modules/core/include/opencv2/core/internal.hpp
+4
-0
operations.hpp
modules/core/include/opencv2/core/operations.hpp
+1
-1
No files found.
CMakeLists.txt
View file @
60acd91c
...
...
@@ -280,6 +280,7 @@ if(APPLE)
endif
()
set
(
WITH_TBB OFF CACHE BOOL
"Include TBB support"
)
set
(
WITH_EIGEN2 OFF CACHE BOOL
"Include Eigen2 support"
)
# ===================================================
# Macros that checks if module have been installed.
...
...
@@ -347,7 +348,7 @@ if(UNIX)
if
(
WITH_PVAPI
)
find_path
(
PVAPI_INCLUDE_PATH
"PvApi.h"
PATHS
"/usr/
include"
"/usr/local
/include"
PATHS
"/usr/
local/include"
"/usr
/include"
DOC
"The path to PvAPI header"
)
if
(
PVAPI_INCLUDE_PATH
)
set
(
HAVE_PVAPI 1
)
...
...
@@ -557,8 +558,8 @@ if (WITH_TBB)
endif
()
if
(
APPLE
)
set
(
TBB_DEFAULT_INCLUDE_DIRS
"/usr/include"
"/usr/
local/
include"
)
"/usr/
local/
include"
"/usr/include"
)
endif
()
if
(
WIN32
)
set
(
TBB_DEFAULT_INCLUDE_DIRS
...
...
@@ -624,6 +625,19 @@ if (WITH_TBB)
endif
()
endif
()
############################## Eigen2 ##############################
if
(
WITH_EIGEN2
)
find_path
(
EIGEN2_INCLUDE_PATH
"Eigen/Core"
PATHS
"/usr/local/include/eigen2"
"/opt/include/eigen2"
"/usr/include/eigen2"
DOC
"The path to Eigen2 headers"
)
if
(
EIGEN2_INCLUDE_PATH
)
include_directories
(
${
EIGEN2_INCLUDE_PATH
}
)
set
(
HAVE_EIGEN2 1
)
endif
()
endif
()
############################### IPP ################################
set
(
IPP_FOUND
)
set
(
OPENCV_LOADER_PATH
)
...
...
@@ -1251,6 +1265,12 @@ else()
message
(
STATUS
" Use TBB: NO"
)
endif
()
if
(
HAVE_EIGEN2
)
message
(
STATUS
" Use Eigen2: YES"
)
else
()
message
(
STATUS
" Use Eigen2: NO"
)
endif
()
message
(
STATUS
""
)
message
(
STATUS
" Documentation: "
)
...
...
cvconfig.h.cmake
View file @
60acd91c
...
...
@@ -155,4 +155,7 @@
#cmakedefine WORDS_BIGENDIAN
/* Intel Threading Building Blocks */
#cmakedefine HAVE_TBB
\ No newline at end of file
#cmakedefine HAVE_TBB
/* Eigen2 Matrix & Linear Algebra Library */
#cmakedefine HAVE_EIGEN2
modules/core/include/opencv2/core/core.hpp
View file @
60acd91c
...
...
@@ -566,7 +566,7 @@ public:
static
Matx
eye
();
static
Matx
diag
(
const
Vec
<
_Tp
,
MIN
(
m
,
n
)
>&
d
);
static
Matx
randu
(
_Tp
a
,
_Tp
b
);
static
Matx
randn
(
_Tp
m
,
_Tp
sigma
);
static
Matx
randn
(
_Tp
a
,
_Tp
b
);
//! convertion to another data type
template
<
typename
T2
>
operator
Matx
<
T2
,
m
,
n
>
()
const
;
...
...
@@ -575,7 +575,7 @@ public:
template
<
int
m1
,
int
n1
>
Matx
<
_Tp
,
m1
,
n1
>
reshape
()
const
;
//! extract part of the matrix
template
<
int
m1
,
int
n1
>
Matx
<
_Tp
,
m1
,
n1
>
minor
(
int
i
,
int
j
)
const
;
template
<
int
m1
,
int
n1
>
Matx
<
_Tp
,
m1
,
n1
>
get_
minor
(
int
i
,
int
j
)
const
;
//! extract the matrix row
Matx
<
_Tp
,
1
,
n
>
row
(
int
i
)
const
;
...
...
modules/core/include/opencv2/core/internal.hpp
View file @
60acd91c
...
...
@@ -134,6 +134,10 @@ CV_INLINE IppiSize ippiSize(int width, int height)
#endif
#endif
#ifdef HAVE_EIGEN2
#include "opencv2/core/eigen.hpp"
#endif
#ifdef __cplusplus
#ifdef HAVE_TBB
...
...
modules/core/include/opencv2/core/operations.hpp
View file @
60acd91c
...
...
@@ -734,7 +734,7 @@ Matx<_Tp, m1, n1> Matx<_Tp, m, n>::reshape() const
template
<
typename
_Tp
,
int
m
,
int
n
>
template
<
int
m1
,
int
n1
>
inline
Matx
<
_Tp
,
m1
,
n1
>
Matx
<
_Tp
,
m
,
n
>::
minor
(
int
i
,
int
j
)
const
Matx
<
_Tp
,
m1
,
n1
>
Matx
<
_Tp
,
m
,
n
>::
get_
minor
(
int
i
,
int
j
)
const
{
CV_DbgAssert
(
0
<=
i
&&
i
+
m1
<=
m
&&
0
<=
j
&&
j
+
n1
<=
n
);
Matx
<
_Tp
,
m1
,
n1
>
s
;
...
...
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