Metadata-Version: 2.4
Name: real_robot
Version: 0.2.1
Summary: Real robot interface and utilities for asynchronous real-time deployment.
Author-email: Kolin Guo <guokolin@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/KolinGuo/RealRobot
Keywords: robotics,sensor,visualization,control
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: POSIX :: Linux
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Framework :: Robot Framework :: Library
Classifier: Framework :: Robot Framework :: Tool
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: loguru>=0.7.3
Provides-Extra: vis
Requires-Dist: opencv-python; extra == "vis"
Requires-Dist: Pillow; extra == "vis"
Requires-Dist: scipy>=1.10.0; extra == "vis"
Requires-Dist: open3d>=0.17.0; extra == "vis"
Requires-Dist: pynput; extra == "vis"
Provides-Extra: vis-all
Requires-Dist: real_robot[vis]; extra == "vis-all"
Requires-Dist: urchin; extra == "vis-all"
Provides-Extra: all
Requires-Dist: real_robot[vis_all]; extra == "all"
Requires-Dist: pyrealsense2==2.54.2.5684; extra == "all"
Requires-Dist: gymnasium; extra == "all"
Requires-Dist: transforms3d; extra == "all"
Requires-Dist: opencv-contrib-python; extra == "all"
Requires-Dist: sapien~=3.0.0.dev; extra == "all"
Dynamic: license-file

# RealRobot
Real robot interface and utilities for asynchronous real-time deployment.  
Previously developed to connect with [ManiSkill2](https://github.com/KolinGuo/ManiSkill2).

Runs camera capturing and visualization as separate processes to make it closer to using ROS.

## Installation

From PyPI
```bash
python3 -m pip install -U real_robot
```

For different functionalities, you can install the optional dependencies as follows:
* `real_robot`: `SharedObject` support only, please only use submodule `real_robot.utils.multiprocessing`.
* `real_robot[vis]`: support for most visualization, use submodule `real_robot.utils.visualization`.
* `real_robot[vis_all]`: include support for URDF.
* `real_robot[all]`: all optional dependencies (e.g., `pyrealsense2`, `sapien`, etc.).

If you need to install the optional `xarm` dependency, you must install from GitHub repo
```bash
python3 -m pip install -U real_robot[all,xarm]@git+https://github.com/KolinGuo/RealRobot.git
```

Run unittests with
```bash
python3 -m pip install -U pytest
python3 -m pytest [--collect-only]
```

---

Calibrated camera poses are stored in [real_robot/assets/hec_camera_poses/](real_robot/assets/hec_camera_poses) and
loaded in [real_robot/sensors/camera.py](real_robot/sensors/camera.py).

## `SharedObject` Notes
* When using `real_robot.utils.multiprocessing.SharedObject`, you might encounter the
following `UserWarning` when `Ctrl-C` your program:
  ```bash
  /usr/lib/python3.12/multiprocessing/resource_tracker.py:254: UserWarning: resource_tracker: There appear to be 10 leaked shared_memory objects to clean up at shutdown
    warnings.warn('resource_tracker: There appear to be %d '
  ```
  This is because of the undefined order of processes (main and child processes) shutdown.
  You can safely ignore it as long as there's no any shared memory object that's created by you
  under `/dev/shm` left.

* If you see warning log messages similar to the following
  ```bash
  Implicitly overwriting data of <SharedObject: name=start_rs_front_camera, data_type=<class 'bool'>, nbytes=10>
  ```
  this can mean one of the following:
  * the shared_memory objects created by previous processes are not properly cleaned up.  
    Run
    ```bash
    find /dev/shm -user $USER -exec rm -v {} \;
    ```
    to clean them all up.
  * there's a bug in your usage of `SharedObject`.  
    By design, `SharedObject` cannot mutate its data type (and data size) after created.  
    So you should first create a new `SharedObject` in process A with
    `SharedObject("test", data=np.ones(10))` to initialize it.  
    Then in process B, you can create it with `SharedObject("test")` and then use the
    `.fetch()`/`.assign()` methods.  
    The warning will appear if the order is reversed.  
    To control the order, you can use the helper methods
    `start_and_wait_for_process()` and `signal_process_ready()` under
    `real_robot.utils.multiprocessing` to synchronize the processes.

## Helpful Tools

* Capture Color/Depth/IR images from RS camera, do
  ```bash
  python3 -m real_robot.tools.rs_capture
  ```
* Get detailed device information of connected RealSense device
  (*e.g.*, supported stream configs, sensor intrinsics, extrinsics between sensors), do
  ```bash
  python3 -m real_robot.tools.enumerate_rs_devices > info.log
  ```
* Convert recorded ROS bag file and save rgb & depth images into .npz, do
  ```bash
  python3 -m real_robot.tools.convert_rosbag_to_frames <bag_path>
  ```

## TODO
- Add type support for `SharedObject`
  - [x] `complex`
  - [x] `bytearray`
  - [ ] `tuple`
  - [ ] `list`
  - [ ] `set`
  - [ ] `dict`
    - [x] [Preliminary] Support only 1 `np.ndarray` as values
- [x] Add string length? A 8-bytes length of strings is `2**(8*8-1)-1 = 8 exa bytes`, which should be enough.
- [ ] Ensure compound data types works with recursive compound structure
- [ ] Add prefixes for all `SharedMemory` created.
- [ ] Proper clean up zombie `SharedMemory` before or after multiprocessing code


## Notes

To fix an unindexed rosbag recorded from `RSDevice`, do
```bash
apt install -y python3-rosbag
rosbag reindex <bag_path>
```

## Known Issue
- [ ] When controlling xArm7 with `motion_mode="cartesian_online"` and `wait=True`,
  sometimes the robot will be stuck indefinitely in `wait_move()` due to `get_state()`
  returns wrong state (i.e., returns `state=1` thinking it's still in motion).
  Simple solution can be just to control briefly via UFACTORY Studio to get it unstuck.

## Changelog

<details>
<summary>0.1.0</summary>
<p>

### New features
* Added `SharedObject` to create/mount objects stored in `SharedMemory`
* Enabled `RSDevice` to run as a separate process (now `Camera` will create
  `RSDevice` as a separate process)
* Enabled `RSDevice` to record camera streams as a rosbag file
* Enabled `XArm7` to run as a separate process (for streaming robot states)
* Enabled `CV2Visualizer` and `O3DGUIVisualizer` to run as separate processes (for visualization)
* Added a default `FileHandler` to all Logger created through `real_robot.utils.logger.get_logger`
* Allow enabling selected camera streams from `RSDevice` and `sensors.camera.Camera`
* Added `sensors.simsense_depth.SimsenseDepth` class to generate depth image from stereo IR images

### API changes
* `real_robot.agents.xarm`
  * Change `XArm7` parameters for clarity (`safety_boundary` => `safety_boundary_mm`, `boundary_clip_eps` => `boundary_clip_mm`)
  * Add `get_gripper_position()` to get gripper opening width in mm or m
  * Add `gripper_speed` parameter to `set_action()` to control gripper speed
* `real_robot.utils.visualization.visualizer`
  * Rename `Visualizer` method `show_observation()` => `show_obs()`
* `real_robot.sensors.camera`
  * `CameraConfig` now accepts a `config` parameter
  * Rename `CameraConfig` parameter `parent_pose_fn` => `parent_pose_so_name`
* `real_robot.utils.realsense`
  * `RSDevice` now accepts `device_sn` instead of an `rs.device`
  * `RSDevice` now accepts `config` as parameter (`width`, `height`, `fps`) instead of `rs.config`

### Other changes
* Switch from `gym` to `gymnasium`
* Rename all `control_mode` by removing `pd_` prefix for clarity. No PD controller is used.
* `real_robot.agents.xarm`
  * `XArm7` will not clear *"Safety Boundary Limit"* error automatically in `set_action()`
  * For `motion_mode == "position"`, switch from using `set_tool_position()` to `set_position()`
  * Enable gripper and set to maximum speed in `reset()`
* Remove all Loggers created as global variables (they will be created
  at import, which might not be saved under `REAL_ROBOT_LOG_DIR`)
* Bugfix in xArm-Python-SDK: enable `wait=True` for modes other than position mode

</p>
</details>

<details>
<summary>0.0.2</summary>
<p>

* Added motion_mode to XArm7 agent
* Added several control_mode: `pd_ee_pos`, `pd_ee_pose_axangle`,
`pd_ee_delta_pose_axangle`, `pd_ee_pose_quat`, `pd_ee_delta_pose_quat`

</p>
</details>
