Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
a4f07199
Commit
a4f07199
authored
Dec 24, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a mat() overload that works with Armadillo matrices.
parent
a0e3d2a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
0 deletions
+62
-0
matrix_mat.h
dlib/matrix/matrix_mat.h
+44
-0
matrix_mat_abstract.h
dlib/matrix/matrix_mat_abstract.h
+18
-0
No files found.
dlib/matrix/matrix_mat.h
View file @
a4f07199
...
...
@@ -247,6 +247,50 @@ namespace dlib
return
matrix_op
<
op
>
(
op
(
ptr
,
nr
,
nc
));
}
// ----------------------------------------------------------------------------------------
}
namespace
arma
{
template
<
typename
T
>
class
Mat
;
}
namespace
dlib
{
template
<
typename
T
>
struct
op_arma_Mat_to_mat
:
does_not_alias
{
op_arma_Mat_to_mat
(
const
T
&
array_
)
:
array
(
array_
){}
const
T
&
array
;
const
static
long
cost
=
1
;
const
static
long
NR
=
0
;
const
static
long
NC
=
0
;
typedef
typename
T
::
elem_type
type
;
typedef
typename
T
::
elem_type
const_ret_type
;
typedef
default_memory_manager
mem_manager_type
;
typedef
row_major_layout
layout_type
;
const_ret_type
apply
(
long
r
,
long
c
)
const
{
return
array
(
r
,
c
);
}
long
nr
()
const
{
return
array
.
n_rows
;
}
long
nc
()
const
{
return
array
.
n_cols
;
}
};
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
const
matrix_op
<
op_arma_Mat_to_mat
<
::
arma
::
Mat
<
T
>
>
>
mat
(
const
::
arma
::
Mat
<
T
>&
array
)
{
typedef
op_arma_Mat_to_mat
<
::
arma
::
Mat
<
T
>
>
op
;
return
matrix_op
<
op
>
(
op
(
array
));
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// DEPRECATED FUNCTIONS
...
...
dlib/matrix/matrix_mat_abstract.h
View file @
a4f07199
...
...
@@ -147,6 +147,24 @@ namespace dlib
the pointer and thus will not delete or free it.
!*/
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
const
matrix_exp
mat
(
const
::
arma
::
Mat
<
T
>&
m
);
/*!
ensures
- Converts a matrix from the Armadillo library into a dlib matrix.
- returns a matrix R such that:
- R.nr() == m.n_rows
- R.nc() == m.n_cols
- for all valid r:
R(r,c) == m(r,c)
!*/
// ----------------------------------------------------------------------------------------
}
...
...
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