Table of Contents
This project autonomously controls a RealSense Camera mounted to an XArm Robot. The repo is comprised of several scripts, which are designed to run synchronously across several different machines (XArm Robot, Local RealSense Camera Machine, and Remote Nautilus Cluster Machine), which utilize NVidia's Isaac Sim and Intel's RealSense Camera.
First the RealSense Camera script sends positional data to the remote machine, using OpenCV and the Camera's depth sensors. Then, the custom Isaac Sim Extension runs a Follow Target task, solving the Kinematic equations, to calculate the correct orientation of the XArm. Finally, these new orientations are sent back to the XArm itself to then update the robot is real life.
This project was headed by Professor Robert Twomey at the University of Nebraska Lincoln and is intented for educational and experimental use.
This project was built using the following.
- Clone the repo into the directory where you would like to store Isaac Sim Extensions
- Open Isaac Sim and go to Windows->Extensions
- Click the Settings Icon (Gear) and add the path to the parent directory of the repo (not XArm or XArmFollowTarget). Now the XArm Follow Target Extention should show up under the Third Party Extensions.
- Enable the XArm Follow Target Extension and check the Autoload setting. The XArm Follow Target Extension will now appear on the top menu bar of the Isaac Sim Application.
- Click the XArm Follow Target to use the Extension
Port Forward local ports to the Container for the realsense camera client.
- once you have a XGL container running you will need to use the kubernetes CLI to get the specific pod name. This can be done with
kubectl get pods -n <your namespace>
once you have your pod name we can now prot forward the local ports to the container for communication,
Run
kubectl port-forward <running XGL pod> 12345:12345 12346:12346 -n <your namespace>
We use these ports by default