Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
81c5ae64
Verified
Commit
81c5ae64
authored
6 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
numpy: handle the convertion of Eigen::Matrix either as np.matrix or np.ndarray
parent
f567b496
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eigenpy/details.hpp
+33
-7
33 additions, 7 deletions
include/eigenpy/details.hpp
with
33 additions
and
7 deletions
include/eigenpy/details.hpp
+
33
−
7
View file @
81c5ae64
...
...
@@ -56,34 +56,60 @@ namespace eigenpy
struct
PyMatrixType
{
static
PyMatrixType
&
getInstance
()
{
static
PyMatrixType
instance
;
return
instance
;
}
operator
bp
::
object
()
{
return
pyMatrix
Type
;
}
operator
bp
::
object
()
{
return
CurrentNumpy
Type
;
}
bp
::
object
make
(
PyArrayObject
*
pyArray
,
bool
copy
=
false
)
{
return
make
((
PyObject
*
)
pyArray
,
copy
);
}
bp
::
object
make
(
PyObject
*
pyObj
,
bool
copy
=
false
)
{
bp
::
object
m
=
pyMatrixType
(
bp
::
object
(
bp
::
handle
<>
(
pyObj
)),
bp
::
object
(),
copy
);
bp
::
object
m
;
if
(
PyType_IsSubtype
(
reinterpret_cast
<
PyTypeObject
*>
(
CurrentNumpyType
.
ptr
()),
NumpyMatrixType
))
m
=
NumpyMatrixObject
(
bp
::
object
(
bp
::
handle
<>
(
pyObj
)),
bp
::
object
(),
copy
);
else
if
(
PyType_IsSubtype
(
reinterpret_cast
<
PyTypeObject
*>
(
CurrentNumpyType
.
ptr
()),
NumpyArrayType
))
m
=
bp
::
object
(
bp
::
handle
<>
(
pyObj
));
// nothing to do here
Py_INCREF
(
m
.
ptr
());
return
m
;
}
static
void
setNumpyType
(
bp
::
object
&
obj
)
{
PyTypeObject
*
obj_type
=
PyType_Check
(
obj
.
ptr
())
?
reinterpret_cast
<
PyTypeObject
*>
(
obj
.
ptr
())
:
obj
.
ptr
()
->
ob_type
;
if
(
PyType_IsSubtype
(
obj_type
,
getInstance
().
NumpyMatrixType
))
getInstance
().
CurrentNumpyType
=
getInstance
().
NumpyMatrixObject
;
else
if
(
PyType_IsSubtype
(
obj_type
,
getInstance
().
NumpyArrayType
))
getInstance
().
CurrentNumpyType
=
getInstance
().
NumpyArrayObject
;;
}
protected
:
PyMatrixType
()
{
pyModule
=
bp
::
import
(
"numpy"
);
pyMatrixType
=
pyModule
.
attr
(
"matrix"
);
CurrentNumpyType
=
pyModule
.
attr
(
"matrix"
);
// default conversion
NumpyMatrixObject
=
pyModule
.
attr
(
"matrix"
);
NumpyMatrixType
=
reinterpret_cast
<
PyTypeObject
*>
(
NumpyMatrixObject
.
ptr
());
NumpyArrayObject
=
pyModule
.
attr
(
"ndarray"
);
NumpyArrayType
=
reinterpret_cast
<
PyTypeObject
*>
(
NumpyArrayObject
.
ptr
());
}
bp
::
object
pyMatrix
Type
;
bp
::
object
CurrentNumpy
Type
;
bp
::
object
pyModule
;
// Numpy types
bp
::
object
NumpyMatrixObject
;
PyTypeObject
*
NumpyMatrixType
;
bp
::
object
NumpyArrayObject
;
PyTypeObject
*
NumpyArrayType
;
// PyTypeObject * NumpyArrayType;
};
template
<
typename
MatType
>
...
...
@@ -297,7 +323,7 @@ namespace eigenpy
return
obj_ptr
;
}
// Convert obj_ptr into a Eigen
vec
// Convert obj_ptr into a
n
Eigen
::Vector
static
void
construct
(
PyObject
*
pyObj
,
bp
::
converter
::
rvalue_from_python_stage1_data
*
memory
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment