Jetson nx(Jetpack4.6版本)保姆级教程安装安装d435i-SDK流程踩坑,以及安装realsense与code_utils与imu_utils并标定imu内参附上测试demo

本文主要是介绍Jetson nx(Jetpack4.6版本)保姆级教程安装安装d435i-SDK流程踩坑,以及安装realsense与code_utils与imu_utils并标定imu内参附上测试demo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

不知道啥时候自己能买得起这个相机,拍照留个纪念。

NVIDIA Jetson installation (intelrealsense.com)

固件跟新地址Firmware Update Tool (rs-fw-update) (intelrealsense.com)

安装IntelRealsense D435i驱动,注意该过程中不能接入摄像头:git clone https://github.com/jetsonhacks/installRealSenseSDK.git
cd installRealSenseSDK
./buildLibrealsense.sh 

这里可以选择安装版本,默认为V2.5.0


###  一些可以参考的链接:https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md   

等待一个小时左右脚本才会运行结束,连接摄像头,先运行realsense-viewer查看摄像头能否正常使用。然后可以python3 然后import pyrealsense as rs查看是否安装正确。如果出现nomodule的报错则需要找到~/librealsense/build/wrappers/python该路径下的六个gnu文件,复制到 /usr/local/lib/python3.6中,我得设备python版本3.6,注意自己得环境

then find the pyrealsense2 in ~/librealsense/build/wrappers/python   copy the six file use following command
sudo mv ~/pyrealsense2/ /usr/local/lib/python3.6
nvidia@nvidia-desktop:~/librealsense/build/wrappers/python$ ls
CMakeFiles           pybackend2.cpython-36m-aarch64-linux-gnu.so         pyrealsense2Config.cmake                       pyrealsense2.cpython-36m-aarch64-linux-gnu.so.2.50
cmake_install.cmake  pybackend2.cpython-36m-aarch64-linux-gnu.so.2       pyrealsense2ConfigVersion.cmake                pyrealsense2.cpython-36m-aarch64-linux-gnu.so.2.50.0
Makefile             pybackend2.cpython-36m-aarch64-linux-gnu.so.2.50.0  pyrealsense2.cpython-36m-aarch64-linux-gnu.so

我安装完sdk好像就自己生成这个目录了,但是还是拷贝了一下.so文件,该步骤结束后再编辑bashrc修改环境变量

export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python3.6/pyrealsense2

添加这一行至bashrc中再source ~/.bashrc即可再import pyrealsense as rs查看是否安装正确
 

1、建立workspace,已经有的可以跳过可以参考安装ros教程先安装(9条消息) Jetson系列 安装ros自动化安装_无证驾驶梁嗖嗖的博客-CSDN博客_jetson 安装ros 

mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/src/
catkin_init_workspace 
cd ..
catkin_make
echo "source ~/catkin_ws/devel/setup.bash" >> ~/.bashrc
source ~/.bashrc

 2、在catkin_ws/src/下载源程序

cd src
git clone https://github.com/intel-ros/realsense.git
cd ..
catkin_make

CMake Error at /opt/ros/melodic/share/cv_bridge/cmake/cv_bridgeConfig.cmake:113 (message):Project 'cv_bridge' specifies '/usr/local/include/opencv' as an includedir, which is not found.  It does neither exist as an absolute directorynor in '${{prefix}}//usr/local/include/opencv'.  Check the issue tracker'https://github.com/ros-perception/vision_opencv/issues' and considercreating a ticket if the problem has not been reported yet.
Call Stack (most recent call first):/opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:76 (find_package)realsense-ros/realsense2_camera/CMakeLists.txt:11 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/nvidia/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/nvidia/catkin_ws/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

刚开始找得解决办法如下,这个可能是老版本得记录:

 sudo vi /opt/ros/melodic/share/cv_bridge/cmake/cv_bridgeConfig.cmake

真实解决办法如下:

将94和96行得opencv改成opencv4即可

CMake Error at /opt/ros/melodic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):Could not find a package configuration file provided by"ddynamic_reconfigure" with any of the following names:ddynamic_reconfigureConfig.cmakeddynamic_reconfigure-config.cmakeAdd the installation prefix of "ddynamic_reconfigure" to CMAKE_PREFIX_PATHor set "ddynamic_reconfigure_DIR" to a directory containing one of theabove files.  If "ddynamic_reconfigure" provides a separate developmentpackage or SDK, be sure it has been installed.
Call Stack (most recent call first):realsense-ros/realsense2_camera/CMakeLists.txt:11 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/nvidia/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/nvidia/catkin_ws/build/CMakeFiles/CMakeError.log".
Invoking "cmake" failed

解决办法如下:

sudo apt-get install ros-melodic-ddynamic-reconfigure
... logging to /home/nvidia/.ros/log/bb471694-1c79-11ed-bb9d-48b02d359274/roslaunch-nvidia-desktop-9361.log
Checking log directory for disk usage. This may take a while.
Press Ctrl-C to interrupt
Done checking log file disk usage. Usage is <1GB.Resource not found: rgbd_launch
ROS path [0]=/opt/ros/melodic/share/ros
ROS path [1]=/home/nvidia/catkin_ws/src
ROS path [2]=/opt/ros/melodic/share
The traceback for the exception was written to the log file

解决办法如下:

sudo apt-get install ros-melodic-rgbd-launch

最终测试demo如下:

import pyrealsense2 as rs
import numpy as np
import cv2width = 640
height = 360pipeline = rs.pipeline()
config = rs.config()
config.enable_stream(rs.stream.depth, width, height, rs.format.z16, 30)
config.enable_stream(rs.stream.color, width, height, rs.format.bgr8, 30)profile = pipeline.start(config)depth_sensor = profile.get_device().first_depth_sensor()
depth_scale = depth_sensor.get_depth_scale()print("Depth Scale is: ", depth_scale)try:while True:frames = pipeline.wait_for_frames()depth_frame = frames.get_depth_frame()color_frame = frames.get_color_frame()if not depth_frame or not color_frame:continue# convert images to numpy arraysdepth_image = np.asanyarray(depth_frame.get_data())color_image = np.asanyarray(color_frame.get_data())depth_colormap = cv2.applyColorMap(cv2.convertScaleAbs(depth_image, alpha=0.03), cv2.COLORMAP_JET)depth = depth_image[320,240].astype(float)*depth_scalecv2.imshow('rgb', color_image)cv2.imshow('depth', depth_colormap)print(f'Depth: {depth} m')if cv2.waitKey(1) == ord("q"):break
finally:pipeline.stop()

到这里只是能打开无法获取imu,接着干 

 

nvidia@nvidia-desktop:~$ rs-fw-update -s 135122074423 -f Signed_Image_UVC_5_12_13_50.binSearch for device with serial number: 135122074423Updating device:
Name: Intel RealSense D435I, serial number: 135122074423, update serial number: 134523064666, firmware version: 05.12.07.150, USB type: 3.2Firmware update startedFirmware update progress: 100[%]Firmware update done

如果就一个摄像头可以不加序列号 ,fuab3.0和固件改了还是没启动imu,再看看别的原因毕竟第一次用使用手册什么得也没用到,应该还是相机配置问题。

(15条消息) RealSense D435i + imu 标定 Ros Melodic_Y.Finn的博客-CSDN博客_d435i imu标定

(17条消息) Jetson Xavier NX+ubuntu18.04安装Ceres步骤记录_viai_youme的博客-CSDN博客

jetson c++: internal compiler error: Segmentation fault (program cc1plus) Please submit a full bug

 解决方法:sudo gedit /etc/security/limits.conf

                      修改了stack 为8192(8GB)

                       然后重启

                       make 成功

Jetson Xavier NX+ubuntu18.04安装Ceres步骤记录

mkdir ceres-bin
cd ceres-bin
cmake ../ceres-solver-1.14.0
make -j3
sudo make install

Segmentation fault (program cc1plus) when compile code with "ROS_ERROR_STREAM()" - ROS Answers: Open Source Q&A Forum

参考链接(https://www.cnblogs.com/long5683/p/13614352.html)

主要记录一下在jetson xavier上编译的时候由于opencv版本问题导致的错误以及解决方法:

主要流程见参考链接。其中会遇到三个错误:

1、在code_utils下面找到sumpixel_test.cpp,修改#include "backward.hpp"为

#include “code_utils/backward.hpp”

2、在code_utils中的sumpixel_test.cpp和mat_io_test.cpp 中添加如下两行:

       #define CV_LOAD_IMAGE_UNCHANGED   -1

       #define CV_LOAD_IMAGE_GRAYSCALE   0

 #define CV_LOAD_IMAGE_UNCHANGED   -1#define CV_LOAD_IMAGE_GRAYSCALE   0

3、在code_utils中的sumpixel_test.cpp中,将CV_MINMAX换成

NORM_MINMAX

以上是我遇到的问题和解决方法。

注意code是否编译成功


nvidia@nvidia-desktop:~/catkin_ws/src$ ls
6.txt  CMakeLists.txt  code_utils-master  code_utils-master.zip  demo2.py  demo.py  imu.py  imu_utils-master.zip  realsense-ros
nvidia@nvidia-desktop:~/catkin_ws/src$ sudo mv code_utils-master code_utils
nvidia@nvidia-desktop:~/catkin_ws/src$ cd ..
nvidia@nvidia-desktop:~/catkin_ws$ catkin_make
Base path: /home/nvidia/catkin_ws
Source space: /home/nvidia/catkin_ws/src
Build space: /home/nvidia/catkin_ws/build
Devel space: /home/nvidia/catkin_ws/devel
Install space: /home/nvidia/catkin_ws/install
####
#### Running command: "cmake /home/nvidia/catkin_ws/src -DCATKIN_DEVEL_PREFIX=/home/nvidia/catkin_ws/devel -DCMAKE_INSTALL_PREFIX=/home/nvidia/catkin_ws/install -G Unix Makefiles" in "/home/nvidia/catkin_ws/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/nvidia/catkin_ws/devel
-- Using CMAKE_PREFIX_PATH: /home/nvidia/imu_catkin_ws/devel;/home/nvidia/catkin_ws/devel;/opt/ros/melodic
-- This workspace overlays: /home/nvidia/imu_catkin_ws/devel;/home/nvidia/catkin_ws/devel;/opt/ros/melodic
-- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.17", minimum required is "2")
-- Using PYTHON_EXECUTABLE: /usr/bin/python2
-- Using Debian Python package layout
-- Using empy: /usr/bin/empy
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/nvidia/catkin_ws/build/test_results
-- Found gtest sources under '/usr/src/googletest': gtests will be built
-- Found gmock sources under '/usr/src/googletest': gmock will be built
-- Found PythonInterp: /usr/bin/python2 (found version "2.7.17")
-- Using Python nosetests: /usr/bin/nosetests-2.7
-- catkin 0.7.29
-- BUILD_SHARED_LIBS is on
-- BUILD_SHARED_LIBS is on
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~  traversing 3 packages in topological order:
-- ~~  - realsense2_description
-- ~~  - code_utils
-- ~~  - realsense2_camera
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- +++ processing catkin package: 'realsense2_description'
-- ==> add_subdirectory(realsense-ros/realsense2_description)
-- +++ processing catkin package: 'code_utils'
-- ==> add_subdirectory(code_utils)
-- Found OpenCV: /usr (found version "4.1.1")
-- Found installed version of Eigen: /usr/lib/cmake/eigen3
-- Found required Ceres dependency: Eigen version 3.3.4 in /usr/include/eigen3
-- Found required Ceres dependency: glog
-- Found installed version of gflags: /usr/lib/aarch64-linux-gnu/cmake/gflags
-- Detected gflags version: 2.2.1
-- Found required Ceres dependency: gflags
-- Found Ceres version: 1.14.0 installed in: /usr/local with components: [EigenSparse, SparseLinearAlgebraLibrary, LAPACK, SuiteSparse, CXSparse, SchurSpecializations, OpenMP, Multithreading]
-- +++ processing catkin package: 'realsense2_camera'
-- ==> add_subdirectory(realsense-ros/realsense2_camera)
-- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy
-- Create Release Build.
-- realsense2_camera: 3 messages, 1 services
-- Configuring done
-- Generating done
-- Build files have been written to: /home/nvidia/catkin_ws/build
####
#### Running command: "make -j2 -l2" in "/home/nvidia/catkin_ws/build"

/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp: In function ‘void writeData1(std::__cxx11::string, const std::vector<double>&, const std::vector<double>&)’:
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:68:19: error: aggregate ‘std::ofstream out_t’ has incomplete type and cannot be definedstd::ofstream out_t;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:69:19: error: aggregate ‘std::ofstream out_x’ has incomplete type and cannot be definedstd::ofstream out_x;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp: In function ‘void writeData3(std::__cxx11::string, const std::vector<double>&, const std::vector<double>&, const std::vector<double>&, const std::vector<double>&)’:
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:90:19: error: aggregate ‘std::ofstream out_t’ has incomplete type and cannot be definedstd::ofstream out_t;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:91:19: error: aggregate ‘std::ofstream out_x’ has incomplete type and cannot be definedstd::ofstream out_x;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:92:19: error: aggregate ‘std::ofstream out_y’ has incomplete type and cannot be definedstd::ofstream out_y;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:93:19: error: aggregate ‘std::ofstream out_z’ has incomplete type and cannot be definedstd::ofstream out_z;^~~~~
/home/nvidia/catkin_ws/src/imu_utils/src/imu_an.cpp:103:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]for ( int index = 0; index < gyro_ts_x.size( ); ++index )~~~~~~^~~~~~~~~~~~~~~~~~~
imu_utils/CMakeFiles/imu_an.dir/build.make:62: recipe for target 'imu_utils/CMakeFiles/imu_an.dir/src/imu_an.cpp.o' failed
make[2]: *** [imu_utils/CMakeFiles/imu_an.dir/src/imu_an.cpp.o] Error 1

 解决方法添加头文件在报错文件内

#include <fstream>

到这里应该就差不多了明天继续补存测试

这篇关于Jetson nx(Jetpack4.6版本)保姆级教程安装安装d435i-SDK流程踩坑,以及安装realsense与code_utils与imu_utils并标定imu内参附上测试demo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Python中win32包的安装及常见用途介绍

《Python中win32包的安装及常见用途介绍》在Windows环境下,PythonWin32模块通常随Python安装包一起安装,:本文主要介绍Python中win32包的安装及常见用途的相关... 目录前言主要组件安装方法常见用途1. 操作Windows注册表2. 操作Windows服务3. 窗口操作

Spring Security中用户名和密码的验证完整流程

《SpringSecurity中用户名和密码的验证完整流程》本文给大家介绍SpringSecurity中用户名和密码的验证完整流程,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定... 首先创建了一个UsernamePasswordAuthenticationTChina编程oken对象,这是S

深度解析Spring AOP @Aspect 原理、实战与最佳实践教程

《深度解析SpringAOP@Aspect原理、实战与最佳实践教程》文章系统讲解了SpringAOP核心概念、实现方式及原理,涵盖横切关注点分离、代理机制(JDK/CGLIB)、切入点类型、性能... 目录1. @ASPect 核心概念1.1 AOP 编程范式1.2 @Aspect 关键特性2. 完整代码实

Java Web实现类似Excel表格锁定功能实战教程

《JavaWeb实现类似Excel表格锁定功能实战教程》本文将详细介绍通过创建特定div元素并利用CSS布局和JavaScript事件监听来实现类似Excel的锁定行和列效果的方法,感兴趣的朋友跟随... 目录1. 模拟Excel表格锁定功能2. 创建3个div元素实现表格锁定2.1 div元素布局设计2.

使用Python进行GRPC和Dubbo协议的高级测试

《使用Python进行GRPC和Dubbo协议的高级测试》GRPC(GoogleRemoteProcedureCall)是一种高性能、开源的远程过程调用(RPC)框架,Dubbo是一种高性能的分布式服... 目录01 GRPC测试安装gRPC编写.proto文件实现服务02 Dubbo测试1. 安装Dubb

SpringBoot连接Redis集群教程

《SpringBoot连接Redis集群教程》:本文主要介绍SpringBoot连接Redis集群教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 依赖2. 修改配置文件3. 创建RedisClusterConfig4. 测试总结1. 依赖 <de

Python的端到端测试框架SeleniumBase使用解读

《Python的端到端测试框架SeleniumBase使用解读》:本文主要介绍Python的端到端测试框架SeleniumBase使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全... 目录SeleniumBase详细介绍及用法指南什么是 SeleniumBase?SeleniumBase

Android ViewBinding使用流程

《AndroidViewBinding使用流程》AndroidViewBinding是Jetpack组件,替代findViewById,提供类型安全、空安全和编译时检查,代码简洁且性能优化,相比Da... 目录一、核心概念二、ViewBinding优点三、使用流程1. 启用 ViewBinding (模块级

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

MySQL MCP 服务器安装配置最佳实践

《MySQLMCP服务器安装配置最佳实践》本文介绍MySQLMCP服务器的安装配置方法,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下... 目录mysql MCP 服务器安装配置指南简介功能特点安装方法数据库配置使用MCP Inspector进行调试开发指