Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
864d8897
Commit
864d8897
authored
2 years ago
by
Andre Meixner
Browse files
Options
Downloads
Patches
Plain Diff
fixed error in sampling from chained grasp
parent
7e31ad64
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
VirtualRobot/Grasping/ChainedGrasp.cpp
+8
-6
8 additions, 6 deletions
VirtualRobot/Grasping/ChainedGrasp.cpp
VirtualRobot/Grasping/ChainedGrasp.h
+3
-3
3 additions, 3 deletions
VirtualRobot/Grasping/ChainedGrasp.h
with
11 additions
and
9 deletions
VirtualRobot/Grasping/ChainedGrasp.cpp
+
8
−
6
View file @
864d8897
...
...
@@ -150,7 +150,7 @@ bool ChainedGrasp::update(VirtualJoint joint, RobotPtr robot) {
return
true
;
}
void
ChainedGrasp
::
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
RobotPtr
robot
,
int
grid
)
void
ChainedGrasp
::
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
RobotPtr
robot
,
unsigned
int
grid
)
{
if
(
getObjectNode
(
robot
))
{
auto
tcp
=
getTCP
(
robot
);
...
...
@@ -160,13 +160,14 @@ void ChainedGrasp::sampleGraspsUniform(std::vector<Eigen::Matrix4f> &grasps, Rob
}
}
void
ChainedGrasp
::
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
const
std
::
string
&
rootName
,
RobotNodePtr
robotNode
,
int
grid
)
void
ChainedGrasp
::
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
const
std
::
string
&
rootName
,
RobotNodePtr
robotNode
,
unsigned
int
grid
)
{
float
low
=
robotNode
->
getJointLimitLo
();
float
high
=
robotNode
->
getJointLimitHigh
();
VR_INFO
<<
robotNode
->
getName
()
<<
" "
<<
low
<<
" "
<<
high
<<
std
::
endl
;
auto
children
=
robotNode
->
getChildren
();
for
(
auto
value
=
low
;
value
<=
high
;
value
+=
(
high
-
low
)
/
grid
)
unsigned
int
joint_grid
=
abs
(
high
-
low
)
>
1e-6
?
grid
:
1
;
for
(
unsigned
int
i
=
0
;
i
<
joint_grid
;
i
++
)
{
if
(
children
.
empty
())
{
...
...
@@ -178,7 +179,8 @@ void ChainedGrasp::sampleGraspsUniform(std::vector<Eigen::Matrix4f> &grasps, con
}
else
{
robotNode
->
setJointValue
(
value
);
double
percentage
=
joint_grid
==
1
?
0.5
:
((
double
)
i
/
(
joint_grid
-
1
));
robotNode
->
setJointValue
(
low
+
(
high
-
low
)
*
percentage
);
sampleGraspsUniform
(
grasps
,
rootName
,
std
::
dynamic_pointer_cast
<
RobotNode
>
(
children
[
0
]),
grid
);
}
}
...
...
@@ -188,7 +190,7 @@ Eigen::Matrix4f ChainedGrasp::getLocalPose() const {
return
simox
::
math
::
pos_rpy_to_mat4f
(
getPositionXYZ
(),
getOrientationRPY
());
}
std
::
vector
<
RobotPtr
>
ChainedGrasp
::
sampleHandsUniform
(
RobotPtr
robot
,
int
grid
)
{
std
::
vector
<
RobotPtr
>
ChainedGrasp
::
sampleHandsUniform
(
RobotPtr
robot
,
unsigned
int
grid
)
{
std
::
vector
<
RobotPtr
>
hands
;
auto
virtualObject
=
getObjectNode
(
robot
);
auto
endEffector
=
getEndEffector
(
robot
);
...
...
@@ -198,7 +200,7 @@ std::vector<RobotPtr> ChainedGrasp::sampleHandsUniform(RobotPtr robot, int grid)
auto
exampleHand
=
endEffector
->
createEefRobot
(
name
,
name
);
detachChain
(
exampleHand
);
int
i
=
0
;
for
(
auto
grasp
:
grasps
)
{
for
(
const
auto
&
grasp
:
grasps
)
{
auto
name
=
"grasp"
+
std
::
to_string
(
i
++
);
auto
hand
=
exampleHand
->
clone
();
auto
globalPose
=
virtualObject
->
toGlobalCoordinateSystem
(
grasp
);
...
...
This diff is collapsed.
Click to expand it.
VirtualRobot/Grasping/ChainedGrasp.h
+
3
−
3
View file @
864d8897
...
...
@@ -92,8 +92,8 @@ public:
void
detachChain
(
RobotPtr
robot
);
void
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
RobotPtr
robot
,
int
grid
);
std
::
vector
<
RobotPtr
>
sampleHandsUniform
(
RobotPtr
robot
,
int
grid
);
void
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
RobotPtr
robot
,
unsigned
int
grid
);
std
::
vector
<
RobotPtr
>
sampleHandsUniform
(
RobotPtr
robot
,
unsigned
int
grid
);
VirtualJoint
x
;
VirtualJoint
y
;
...
...
@@ -141,7 +141,7 @@ private:
RobotNodePtr
attachChain
(
RobotNodePtr
robotNode
,
GraspableSensorizedObjectPtr
object
,
bool
addObjectVisualization
=
false
);
RobotNodePtr
attach
(
VirtualJoint
joint
,
RobotNodePtr
robotNode
);
bool
update
(
VirtualJoint
joint
,
RobotPtr
robot
);
void
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
const
std
::
string
&
rootName
,
RobotNodePtr
robotNode
,
int
grid
);
void
sampleGraspsUniform
(
std
::
vector
<
Eigen
::
Matrix4f
>
&
grasps
,
const
std
::
string
&
rootName
,
RobotNodePtr
robotNode
,
unsigned
int
grid
);
Eigen
::
Matrix4f
getLocalPose
()
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