Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-manipulation
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
Humanoid Path Planner
hpp-manipulation
Commits
f109a665
Commit
f109a665
authored
9 years ago
by
Florent Lamiraux
Browse files
Options
Downloads
Patches
Plain Diff
Update Handle::Create(Pre)Grasp to new definition of transformation constraint.
parent
891ca966
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/axial-handle.cc
+38
-33
38 additions, 33 deletions
src/axial-handle.cc
src/handle.cc
+35
-21
35 additions, 21 deletions
src/handle.cc
with
73 additions
and
54 deletions
src/axial-handle.cc
+
38
−
33
View file @
f109a665
...
@@ -35,61 +35,66 @@ namespace hpp {
...
@@ -35,61 +35,66 @@ namespace hpp {
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
fals
e
)(
true
)(
tru
e
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
tru
e
)(
true
)(
fals
e
);
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
return
RelativeTransformation
::
create
return
RelativeTransformation
::
create
(
"Transformation_(1,1,1,
0
,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
(
"Transformation_(1,1,1,
1
,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
(),
mask
);
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
AxialHandle
::
createGraspComplement
DifferentiableFunctionPtr_t
AxialHandle
::
createGraspComplement
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
false
)(
false
)(
false
)(
true
)
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
(
false
);
return
RelativeOrientation
::
create
(
"Orientation_(1,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
return
RelativeTransformation
::
create
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
.
getRotation
(),
mask
);
(
"Transformation_(0,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGrasp
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGrasp
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
true
)(
true
)(
false
)(
true
)(
true
);
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
true
)(
true
)(
true
)(
true
)(
false
);
return
RelativeTransformation
::
create
(
"Transformation_(0,1,1,0,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
return
RelativeTransformation
::
create
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
(
"Transformation_(0,1,1,1,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
(),
mask
);
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGraspComplement
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGraspComplement
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
true
)
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
(
false
);
fcl
::
Vec3f
target
=
transform
.
getTranslation
()
Transform3f
transform
(
gripper
->
objectPositionInJoint
().
getRotation
(),
+
fcl
::
Vec3f
(
clearance
()
+
gripper
->
clearance
(),
0
,
0
);
gripper
->
objectPositionInJoint
().
getTranslation
()
return
RelativePosition
::
create
(
"Position_(1,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
+
fcl
::
Vec3f
(
gripper
->
clearance
()
+
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
target
,
fcl
::
Vec3f
(
0
,
0
,
0
),
mask
);
clearance
(),
0
,
0
));
return
RelativeTransformation
::
create
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
,
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGraspComplement
DifferentiableFunctionPtr_t
AxialHandle
::
createPreGraspComplement
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
{
{
//using boost::assign::list_of;
//std::vector <bool> mask = list_of (true)(false)(false)(true)(false)(false);
//Transform3f transform = inverse (localPosition()) * gripper->objectPositionInJoint ();
//transform.setTranslation (transform.getTranslation () + fcl::Vec3f (shift,0,0));
//return RelativeTransformation::create
//(gripper->joint()->robot(), gripper->joint (), joint(), transform, mask);
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
true
)
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
(
false
);
fcl
::
Vec3f
target
=
transform
.
getTranslation
()
+
fcl
::
Vec3f
(
shift
,
0
,
0
);
Transform3f
transform
(
gripper
->
objectPositionInJoint
().
getRotation
(),
return
RelativePosition
::
create
(
"Position_(1,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
objectPositionInJoint
().
getTranslation
()
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
target
,
fcl
::
Vec3f
(
0
,
0
,
0
),
mask
);
+
fcl
::
Vec3f
(
gripper
->
clearance
()
+
clearance
()
+
shift
,
0
,
0
));
return
RelativeTransformation
::
create
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
,
localPosition
(),
mask
);
}
}
HandlePtr_t
AxialHandle
::
clone
()
const
HandlePtr_t
AxialHandle
::
clone
()
const
...
...
This diff is collapsed.
Click to expand it.
src/handle.cc
+
35
−
21
View file @
f109a665
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
// hpp-manipulation. If not, see
// hpp-manipulation. If not, see
// <http://www.gnu.org/licenses/>.
// <http://www.gnu.org/licenses/>.
#include
<hpp/util/debug.hh>
#include
<hpp/manipulation/handle.hh>
#include
<hpp/manipulation/handle.hh>
#include
<boost/assign/list_of.hpp>
#include
<boost/assign/list_of.hpp>
...
@@ -37,19 +38,22 @@ namespace hpp {
...
@@ -37,19 +38,22 @@ namespace hpp {
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
true
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
true
);
return
RelativeTransformation
::
create
(
"Transformation_(1,1,1,1,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
return
RelativeTransformation
::
create
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
(
"Transformation_(1,1,1,1,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
(),
mask
);
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
Handle
::
createGraspComplement
DifferentiableFunctionPtr_t
Handle
::
createGraspComplement
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
false
)(
false
)(
false
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
false
)(
false
)(
false
)(
false
)
return
RelativeTransformation
::
create
(
"Transformation_(0,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
(
false
);
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
return
RelativeTransformation
::
create
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
(),
mask
);
(
"Transformation_(0,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
Handle
::
createPreGrasp
DifferentiableFunctionPtr_t
Handle
::
createPreGrasp
...
@@ -57,32 +61,42 @@ namespace hpp {
...
@@ -57,32 +61,42 @@ namespace hpp {
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
true
)(
true
)(
true
)(
true
)(
true
);
std
::
vector
<
bool
>
mask
=
list_of
(
false
)(
true
)(
true
)(
true
)(
true
)(
true
);
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
return
RelativeTransformation
::
create
return
RelativeTransformation
::
create
(
"Transformation_(0,1,1,1,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
(
"Transformation_(0,1,1,1,1,1)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
,
mask
);
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
gripper
->
objectPositionInJoint
(),
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
Handle
::
createPreGraspComplement
DifferentiableFunctionPtr_t
Handle
::
createPreGraspComplement
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
false
)
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
(
false
);
fcl
::
Vec3f
target
=
transform
.
getTranslation
()
Transform3f
transform
(
gripper
->
objectPositionInJoint
().
getRotation
(),
+
fcl
::
Vec3f
(
clearance
()
+
gripper
->
clearance
(),
0
,
0
);
gripper
->
objectPositionInJoint
().
getTranslation
()
return
RelativePosition
::
create
(
"Position_(1,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
+
fcl
::
Vec3f
(
gripper
->
clearance
()
+
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
target
,
fcl
::
Vec3f
(
0
,
0
,
0
),
mask
);
clearance
(),
0
,
0
));
return
RelativeTransformation
::
create
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
,
localPosition
(),
mask
);
}
}
DifferentiableFunctionPtr_t
Handle
::
createPreGraspComplement
DifferentiableFunctionPtr_t
Handle
::
createPreGraspComplement
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
(
const
GripperPtr_t
&
gripper
,
const
value_type
&
shift
)
const
{
{
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
false
)
Transform3f
transform
=
inverse
(
localPosition
())
*
gripper
->
objectPositionInJoint
();
(
false
);
fcl
::
Vec3f
target
=
transform
.
getTranslation
()
+
fcl
::
Vec3f
(
shift
,
0
,
0
);
Transform3f
transform
(
gripper
->
objectPositionInJoint
().
getRotation
(),
return
RelativePosition
::
create
(
"Position_(1,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
objectPositionInJoint
().
getTranslation
()
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
target
,
fcl
::
Vec3f
(
0
,
0
,
0
),
mask
);
+
fcl
::
Vec3f
(
gripper
->
clearance
()
+
clearance
()
+
shift
,
0
,
0
));
return
RelativeTransformation
::
create
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
+
"_"
+
gripper
->
name
(),
gripper
->
joint
()
->
robot
(),
gripper
->
joint
(),
joint
(),
transform
,
localPosition
(),
mask
);
}
}
HandlePtr_t
Handle
::
clone
()
const
HandlePtr_t
Handle
::
clone
()
const
...
...
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