Ensenso手眼标定cpp实现

2024-01-27 13:48
文章标签 实现 标定 cpp 手眼 ensenso

本文主要是介绍Ensenso手眼标定cpp实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原理Ensenso SDK有介绍,这里是代码实现的简易版本。

需要修改serial number ,我的是194224。

使用方法:

将halcon标定板固定在机械臂上,运行代码,移动机械臂,输入机械臂上标定板当前的姿态(重复次数大于5即可)

成功的话,相机参数的link就已经被修改了,此时的坐标系统一为机械臂基座标系。

目前机械臂的移动是我手动控制的,也可以固定某些点输入,自动运行。

有问题的话,可以加我QQ:1441405602

#include <stdio.h>#include "nxLib.h"
#include <ros/ros.h>
#include <tf2_ros/transform_broadcaster.h>
#include <tf2_geometry_msgs/tf2_geometry_msgs.h> // Needed for conversion from geometry_msgs to tf2::Transform
#include <geometry_msgs/Pose.h>
#include <geometry_msgs/PoseStamped.h>
#include <geometry_msgs/TransformStamped.h>
#include <string>
#include <tf2_ros/buffer.h>
#include <tf2/LinearMath/Transform.h>#include <tf/transform_listener.h>
#include <tf/transform_broadcaster.h>#include <iostream>
using namespace ros;
using namespace std;
bool poseIsValid(const tf::Pose& pose)
{auto origin = pose.getOrigin();if (std::isnan(origin.x()) || std::isnan(origin.y()) || std::isnan(origin.z())){return false;}auto rotation = pose.getRotation();if (std::isnan(rotation.getAngle())){return false;}auto rotationAxis = rotation.getAxis();if (std::isnan(rotationAxis.x()) || std::isnan(rotationAxis.y()) || std::isnan(rotationAxis.z())){return false;}return true;
}void writePoseToNxLib(tf::Pose const& pose, NxLibItem const& node)
{// Initialize the node to be empty. This is necessary, because there is a bug in some versions of the NxLib that// overwrites the whole transformation node with an identity transformation as soon as a new node in /Links gets// created.node.setNull();if (poseIsValid(pose)){auto origin = pose.getOrigin();node[itmTranslation][0] = origin.x() * 1000;  // ROS transformation is in// meters, NxLib expects it to// be in millimeters.node[itmTranslation][1] = origin.y() * 1000;node[itmTranslation][2] = origin.z() * 1000;auto rotation = pose.getRotation();node[itmRotation][itmAngle] = rotation.getAngle();auto rotationAxis = rotation.getAxis();node[itmRotation][itmAxis][0] = rotationAxis.x();node[itmRotation][itmAxis][1] = rotationAxis.y();node[itmRotation][itmAxis][2] = rotationAxis.z();}else{// Use an identity transformation as a reasonable default value.node[itmTranslation][0] = 0;node[itmTranslation][1] = 0;node[itmTranslation][2] = 0;node[itmRotation][itmAngle] = 0;node[itmRotation][itmAxis][0] = 1;node[itmRotation][itmAxis][1] = 0;node[itmRotation][itmAxis][2] = 0;}
}int main(void)
{try {// Initialize NxLib and enumerate camerasnxLibInitialize(true);// Reference to the first camera in the node BySerialNoNxLibItem root;NxLibItem camera = root[itmCameras][itmBySerialNo][0];// Open the EnsensoNxLibCommand open(cmdOpen);open.parameters()[itmCameras] = camera[itmSerialNumber].asString();open.execute();// We assume that the camera with the serial "1234" is already open. See here for information on how this// can be done.// Move your robot into a suitable starting position here. Make sure that the pattern can be seen from// the selected position.//tf::StampedTransform robotPose;// std::vector<tf::Pose> handEyeCalibrationRobotPoses;vector<tf::Transform> robotPoses;geometry_msgs::Pose robot_pose;// Set the pattern's grid spacing so that we don't need to decode the data from the pattern later. You// will need to adapt this line to the size of the calibration pattern that you are using.NxLibItem()[itmParameters][itmPattern][itmGridSpacing] = 20;// Discard any pattern observations that might already be in the pattern buffer.NxLibCommand(cmdDiscardPatterns).execute();// Turn off the camera's projector so that we can observe the calibration pattern.NxLibItem()[itmCameras]["194224"][itmParameters][itmCapture][itmProjector] = false;NxLibItem()[itmCameras]["194224"][itmParameters][itmCapture][itmFrontLight] = true;// We will observe the pattern 20 times. You can adapt this number depending on how accurate you need the// calibration to be.for (int i = 0; i < 10; i++) {// Move your robot to a new position from which the pattern can be seen. It might be a good idea to// choose these positions randomly.cout<<"Please enter x:";cin>>robot_pose.position.x;cout<<"Please enter y:";cin>>robot_pose.position.y;cout<<"Please enter z:";cin>>robot_pose.position.z;cout<<"Please enter rw:";cin>>robot_pose.orientation.w;cout<<"Please enter rx:";cin>>robot_pose.orientation.x;cout<<"Please enter ry:";cin>>robot_pose.orientation.y;cout<<"Please enter rz:";cin>>robot_pose.orientation.z;tf::Pose tfPose;tf::poseMsgToTF(robot_pose, tfPose);robotPoses.push_back(tfPose);// Make sure that the robot is not moving anymore. You might want to wait for a few seconds to avoid// any oscillations.sleep(2);// Observe the calibration pattern and store the observation in the pattern buffer.NxLibCommand capture(cmdCapture);capture.parameters()[itmCameras] = "194224";capture.execute();bool foundPattern = false;try {NxLibCommand collectPattern(cmdCollectPattern);collectPattern.parameters()[itmCameras] = "194224";collectPattern.execute();foundPattern = true;} catch (NxLibException& e) {printf("An NxLib API error with code %d (%s) occurred while accessing item %s.\n", e.getErrorCode(),e.getErrorText().c_str(), e.getItemPath().c_str());}if (foundPattern) {// We actually found a pattern. Get the current pose of your robot (from which the pattern was// observed) and store it somewhere.cout<< i <<"success"<<endl;} else {// The calibration pattern could not be found in the camera image. When your robot poses are// selected randomly, you might want to choose a different one.}}// You can insert a recalibration here, as you already captured stereo patterns anyway. See here for a// code snippet that does a recalibration.// We collected enough patterns and can start the calibration.NxLibCommand calibrateHandEye(cmdCalibrateHandEye);calibrateHandEye.parameters()[itmSetup] = valFixed; // Or "valMoving" when your have a moving setup.// At this point, you need to put your stored robot poses into the command's Transformations parameter.//calibrateHandEye.parameters()[itmTransformations] = robotPoses;for (size_t i = 0; i < robotPoses.size(); i++){writePoseToNxLib(robotPoses[i], calibrateHandEye.parameters()[itmTransformations][i]);}// Start the calibration. Note that this might take a few minutes if you did a lot of pattern observations.calibrateHandEye.execute();// Store the new calibration to the camera's EEPROM.NxLibCommand storeCalibration(cmdStoreCalibration);storeCalibration.parameters()[itmCameras] = "194224";storeCalibration.parameters()[itmLink] = true;storeCalibration.execute();// Close & finalizeNxLibCommand close(cmdClose);close.execute();} catch (NxLibException& e) { // Display NxLib API exceptions, if anyprintf("An NxLib API error with code %d (%s) occurred while accessing item %s.\n", e.getErrorCode(),e.getErrorText().c_str(), e.getItemPath().c_str());if (e.getErrorCode() == NxLibExecutionFailed)printf("/Execute:\n%s\n", NxLibItem(itmExecute).asJson(true).c_str());} nxLibFinalize();return 0;
}

 

 

这篇关于Ensenso手眼标定cpp实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/650423

相关文章

Python使用python-can实现合并BLF文件

《Python使用python-can实现合并BLF文件》python-can库是Python生态中专注于CAN总线通信与数据处理的强大工具,本文将使用python-can为BLF文件合并提供高效灵活... 目录一、python-can 库:CAN 数据处理的利器二、BLF 文件合并核心代码解析1. 基础合

Python使用OpenCV实现获取视频时长的小工具

《Python使用OpenCV实现获取视频时长的小工具》在处理视频数据时,获取视频的时长是一项常见且基础的需求,本文将详细介绍如何使用Python和OpenCV获取视频时长,并对每一行代码进行深入解析... 目录一、代码实现二、代码解析1. 导入 OpenCV 库2. 定义获取视频时长的函数3. 打开视频文

golang版本升级如何实现

《golang版本升级如何实现》:本文主要介绍golang版本升级如何实现问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录golanwww.chinasem.cng版本升级linux上golang版本升级删除golang旧版本安装golang最新版本总结gola

SpringBoot中SM2公钥加密、私钥解密的实现示例详解

《SpringBoot中SM2公钥加密、私钥解密的实现示例详解》本文介绍了如何在SpringBoot项目中实现SM2公钥加密和私钥解密的功能,通过使用Hutool库和BouncyCastle依赖,简化... 目录一、前言1、加密信息(示例)2、加密结果(示例)二、实现代码1、yml文件配置2、创建SM2工具

Mysql实现范围分区表(新增、删除、重组、查看)

《Mysql实现范围分区表(新增、删除、重组、查看)》MySQL分区表的四种类型(范围、哈希、列表、键值),主要介绍了范围分区的创建、查询、添加、删除及重组织操作,具有一定的参考价值,感兴趣的可以了解... 目录一、mysql分区表分类二、范围分区(Range Partitioning1、新建分区表:2、分

MySQL 定时新增分区的实现示例

《MySQL定时新增分区的实现示例》本文主要介绍了通过存储过程和定时任务实现MySQL分区的自动创建,解决大数据量下手动维护的繁琐问题,具有一定的参考价值,感兴趣的可以了解一下... mysql创建好分区之后,有时候会需要自动创建分区。比如,一些表数据量非常大,有些数据是热点数据,按照日期分区MululbU

MySQL中查找重复值的实现

《MySQL中查找重复值的实现》查找重复值是一项常见需求,比如在数据清理、数据分析、数据质量检查等场景下,我们常常需要找出表中某列或多列的重复值,具有一定的参考价值,感兴趣的可以了解一下... 目录技术背景实现步骤方法一:使用GROUP BY和HAVING子句方法二:仅返回重复值方法三:返回完整记录方法四:

IDEA中新建/切换Git分支的实现步骤

《IDEA中新建/切换Git分支的实现步骤》本文主要介绍了IDEA中新建/切换Git分支的实现步骤,通过菜单创建新分支并选择是否切换,创建后在Git详情或右键Checkout中切换分支,感兴趣的可以了... 前提:项目已被Git托管1、点击上方栏Git->NewBrancjsh...2、输入新的分支的

Python实现对阿里云OSS对象存储的操作详解

《Python实现对阿里云OSS对象存储的操作详解》这篇文章主要为大家详细介绍了Python实现对阿里云OSS对象存储的操作相关知识,包括连接,上传,下载,列举等功能,感兴趣的小伙伴可以了解下... 目录一、直接使用代码二、详细使用1. 环境准备2. 初始化配置3. bucket配置创建4. 文件上传到os

关于集合与数组转换实现方法

《关于集合与数组转换实现方法》:本文主要介绍关于集合与数组转换实现方法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、Arrays.asList()1.1、方法作用1.2、内部实现1.3、修改元素的影响1.4、注意事项2、list.toArray()2.1、方