PutdownObjectUtil.cpp
Go to the documentation of this file.
1 #include "PutdownObjectUtil.h"
2 
3 #include <VirtualRobot/Grasping/GraspSet.h>
4 #include <VirtualRobot/ManipulationObject.h>
5 #include <VirtualRobot/RobotNodeSet.h>
6 
8 
9 namespace armarx::skills
10 {
11  namespace grasp_control::util
12  {
13  GetPlatformOffsetForObjectPutdownOutput
15  {
17 
18  auto tcpPoseLocal = in.synchronizedRobot.getRobotNode(in.tcpName)->getPoseInRootFrame();
19  Eigen::Matrix4f targetPlatformPoseLocal = Eigen::Matrix4f::Identity();
20 
21  targetPlatformPoseLocal(1, 3) += 190;
22  if (tcpPoseLocal(0, 3) < 0) // Left Hand
23  {
24  targetPlatformPoseLocal(0, 3) += 0;
25  }
26  else
27  {
28  targetPlatformPoseLocal(0, 3) += -0;
29  }
30 
31  out.platformGlobalPose =
32  in.synchronizedRobot.getRootNode()->getGlobalPose() * targetPlatformPoseLocal;
33  out.distanceToDrive =
34  (in.synchronizedRobot.getRootNode()->getGlobalPose().block<3, 1>(0, 3) -
35  out.platformGlobalPose.block<3, 1>(0, 3))
36  .norm(); // only calc cartesian distance
37 
38  //ARMARX_INFO << "In order to putdown an object the robot should drive from " << in.synchronizedRobot.getRootNode()->getGlobalPose() << " to " << out.platformGlobalPose << "(distance: " << out.distanceToDrive << ").";
39  return out;
40  }
41 
42  GetPlatformOffsetAfterObjectPutdownOutput
44  {
46 
47  Eigen::Matrix4f targetPlatformPoseLocal = Eigen::Matrix4f::Identity();
48  targetPlatformPoseLocal(1, 3) += -190;
49 
50  out.platformGlobalPose =
51  in.synchronizedRobot.getRootNode()->getGlobalPose() * targetPlatformPoseLocal;
52  out.distanceToDrive =
53  (in.synchronizedRobot.getRootNode()->getGlobalPose().block<3, 1>(0, 3) -
54  out.platformGlobalPose.block<3, 1>(0, 3))
55  .norm(); // only calc cartesian distance
56 
57  return out;
58  }
59  } // namespace grasp_control::util
60 } // namespace armarx::skills
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownOutput::distanceToDrive
float distanceToDrive
Definition: PutdownObjectUtil.h:19
armarx::skills::grasp_control::util::GetPlatformOffsetAfterObjectPutdownInput::synchronizedRobot
VirtualRobot::Robot & synchronizedRobot
Definition: PutdownObjectUtil.h:27
armarx::skills::grasp_control::util::GetPlatformOffsetAfterObjectPutdownInput
Definition: PutdownObjectUtil.h:25
armarx::skills
This file is part of ArmarX.
Definition: PeriodicUpdateWidget.cpp:11
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownInput
Definition: PutdownObjectUtil.h:10
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::skills::grasp_control::util::GetGlobalPlatformPoseForObjectPutdown
GetPlatformOffsetForObjectPutdownOutput GetGlobalPlatformPoseForObjectPutdown(const GetPlatformOffsetForObjectPutdownInput &in)
Definition: PutdownObjectUtil.cpp:14
armarx::skills::grasp_control::util::GetPlatformOffsetAfterObjectPutdownOutput
Definition: PutdownObjectUtil.h:30
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownOutput::platformGlobalPose
Eigen::Matrix4f platformGlobalPose
Definition: PutdownObjectUtil.h:18
PutdownObjectUtil.h
GfxTL::Identity
void Identity(MatrixXX< N, N, T > *a)
Definition: MatrixXX.h:570
FramedPose.h
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownOutput
Definition: PutdownObjectUtil.h:16
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownInput::tcpName
std::string tcpName
Definition: PutdownObjectUtil.h:13
armarx::skills::grasp_control::util::GetPlatformOffsetAfterObjectPutdownOutput::distanceToDrive
float distanceToDrive
Definition: PutdownObjectUtil.h:33
armarx::skills::grasp_control::util::GetPlatformOffsetForObjectPutdownInput::synchronizedRobot
VirtualRobot::Robot & synchronizedRobot
Definition: PutdownObjectUtil.h:12
armarx::skills::grasp_control::util::GetGlobalPlatformPoseAfterObjectPutdown
GetPlatformOffsetAfterObjectPutdownOutput GetGlobalPlatformPoseAfterObjectPutdown(const GetPlatformOffsetAfterObjectPutdownInput &in)
Definition: PutdownObjectUtil.cpp:43
armarx::skills::grasp_control::util::GetPlatformOffsetAfterObjectPutdownOutput::platformGlobalPose
Eigen::Matrix4f platformGlobalPose
Definition: PutdownObjectUtil.h:32
norm
double norm(const Point &a)
Definition: point.hpp:102