MartyG
- Total activity 5964
- Last activity
- Member since
- Following 0 users
- Followed by 7 users
- Votes 3
- Subscriptions 1820
Comments
Recent activity by MartyG-
You are very welcome! Based on past cases involving IMU problems on Jetson, the best chance of the IMU working on Jetson Nano may be to use the Ubuntu 18.04 OS and either JetPack 4.5.1 or 4.6. ...
-
In theory, code that works on a laptop should work on a single board computer but sometimes in practise there are problems on the single-board computer. There are more likely to be problems if the...
-
There are a range of Jetson board models, such as Xavier and Orin. The link below lists the models. https://developer.nvidia.com/buy-jetson Another brand of RealSense compatible boards is Up Boa...
-
The best recommendation that I can give for a single-board computing device comparable to Raspberry Pi's price that can stream both depth and color and that the RealSense IMU will work with is Nvid...
-
Hi Sohampadhye1998 There are known problems with accessing the IMU on Raspberry Pi (depth and color work normally). An example of this issue is discussed at the link below. There is not a fix fo...
-
A Python program is only likely to stop at 15 frames if an append instruction is used in the script.
-
Hi Bobcatkai If you record the color and depth into a bag file then the streams will be stored separately. The bag file can then be loaded back into the computer and have alignment applied to the...
-
Hi Gunasekaran S If you have installed librealsense from both packages and source code on the same computer in Linux then there could be a conflict between two different sets of udev rules (which ...
-
1. On line 200 of measurement_task.py that is responsible for displaying the text using putText, does changing 'color_image' to 'coord_color_image' cause the text to only appear on the coord_color...
-
If you wanted to have identical color frames but overlay different text on each image then using OpenCV's cv2.putText function may achieve your goal. https://www.tutorialspoint.com/display-text-on-...