diff --git a/.gitignore b/.gitignore index 0bac95b..c028557 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,32 @@ -**__pycache__** - -**.vscode** - -**recordings** +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +# Project specific +recordings/ +*.txt repomix-output.xml +# IDE +.vscode/ +.idea/ +*.swp +*~ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..58fbaff --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,26 @@ +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-added-large-files + +- repo: https://github.com/psf/black + rev: 23.3.0 + hooks: + - id: black + language_version: python3 + +- repo: https://github.com/pycqa/isort + rev: 5.12.0 + hooks: + - id: isort + args: ["--profile", "black"] + +- repo: https://github.com/pycqa/flake8 + rev: 6.0.0 + hooks: + - id: flake8 + additional_dependencies: [flake8-docstrings] diff --git a/LICENSE b/LICENSE index f49a4e1..261eeb9 100644 --- a/LICENSE +++ b/LICENSE @@ -198,4 +198,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. diff --git a/README.md b/README.md index e69de29..c545b87 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,105 @@ +# Open Phantom: Training Robots Using Only Human Videos + +## Overview + +Open Phantom is a fully open-source implementation of the approach described in the paper "[Phantom: Training Robots Without Robots Using Only Human Videos.](https://phantom-human-videos.github.io/)" This project focuses on the data collection component of the Phantom pipeline, enabling anyone with a standard RGB camera to generate training data for robot learning without requiring actual robot hardware. + +## Key Features + +- **Camera-Only Data Collection**: Capture hand movements using any standard RGB camera +- **3D Hand Tracking**: Convert 2D video to 3D hand poses using MediaPipe landmarks +- **Advanced Depth Estimation**: Generate depth maps from monocular RGB input using ml-depth-pro +- **Hand Segmentation**: Precisely isolate hand regions with Meta's SAM2 for better depth estimation +- **ICP Registration**: Align hand mesh with depth point cloud for improved 3D accuracy +- **Anatomical Constraints**: Apply natural hand constraints to ensure realistic movements +- **Robot Action Extraction**: Transform hand poses into robot control parameters (position, orientation, gripper width) +- **Visualization Pipeline**: Debug-friendly visualization of each processing stage +- **Commercial-Friendly**: Built entirely with open-source, commercially usable components + +## Project Status + +⚠️ ******Work in Progress******: Open Phantom is currently under active development. Core functionality is implemented, but the codebase is still being refined and tested. We welcome early adopters and contributors to help improve the project. + +Known limitations: + +* ICP registration still being optimized for better alignment +* Depth estimation quality varies with lighting conditions +* Performance optimizations needed for real-time processing + +## Background + +The original Phantom paper demonstrated that robots could learn tasks from human demonstrations without any robot-specific data collection. By capturing hand movements in diverse environments and converting them to robot action parameters, it's possible to train robot policies that perform effectively during zero-shot deployment. + +Unlike the original implementation which relies on [MANO](https://mano.is.tue.mpg.de/index.html) (a hand model not available for commercial use), Open Phantom is built entirely with open-source components that can be used in commercial applications. + +## How It Works + +1. **Video Capture**: Record video of your hand performing a task using a standard RGB camera +2. **Hand Tracking**: Track hand landmarks in the video +3. **Depth Estimation**: Estimate depth information from the monocular RGB input +4. **Segmentation**: Segment the hand using SAM2 (Segment Anything Model 2) +5. **3D Reconstruction**: Create a 3D hand model from the landmarks and depth information +6. **Robot Parameters**: Extract position, orientation, and gripper parameters for robot control + +## Installation + +```bash +# Clone the repository with submodules +git clone https://github.com/yourusername/open-phantom.git +cd open-phantom + +# Create and activate conda environment +conda env create -f environment.yml +conda activate open-phantom + +# Initialize and update submodules +git submodule update --init --recursive + +# Install dependencies for SAM2 +cd external/sam2 +pip install -e . +cd ../.. + +# Install dependencies for ML-Depth-Pro +cd external/ml-depth-pro +pip install -e . +cd ../.. +``` + +## Usage + +```bash +# Run the main script to record and process a video +python open_phantom/main.py +``` + +## Contributing + +We welcome contributions from the community! This project is intended as a resource for researchers and developers interested in robot learning from human demonstrations. Whether you're improving the hand tracking, depth estimation, or adding new features, your contributions help advance the goal of more accessible robot learning. + +## Citation + +If you use Open Phantom in your research, please cite the original Phantom paper: + +
+@article{lepert2025phantom, + title={Phantom: Training Robots Without Robots Using Only Human Videos}, + author={Lepert, Marion and Fang, Jiaying and Bohg, Jeannette}, + journal={arXiv preprint arXiv:2503.00779}, + year={2025} +} ++ +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## Acknowledgments + +* This project is based on the research presented in "Phantom: Training Robots Without Robots Using Only Human Videos" +* We use Meta's SAM2 (Segment Anything Model 2) for hand segmentation +* ML-Depth-Pro from Apple provides advanced depth estimation + +## Disclaimer + +Open Phantom is a community implementation focused on the data collection aspects of the Phantom approach. The original paper authors are not affiliated with this specific implementation. diff --git a/open_phantom/utils/math.py b/open_phantom/utils/math.py deleted file mode 100644 index e69de29..0000000 diff --git a/urdf/SO_5DOF_ARM100_05d.SLDASM/export.log b/urdf/SO_5DOF_ARM100_05d.SLDASM/export.log deleted file mode 100644 index bb174b0..0000000 --- a/urdf/SO_5DOF_ARM100_05d.SLDASM/export.log +++ /dev/null @@ -1,2882 +0,0 @@ -2024-05-21 08:44:37,619 INFO Logger.cs: 70 - --------------------------------------------------------------------------------- -2024-05-21 08:44:37,671 INFO Logger.cs: 71 - Logging commencing for SW2URDF exporter -2024-05-21 08:44:37,672 INFO Logger.cs: 73 - Commit version 1.6.0-1-g15f4949 -2024-05-21 08:44:37,672 INFO Logger.cs: 74 - Build version 1.6.7594.29634 -2024-05-21 08:44:37,677 INFO SwAddin.cs: 192 - Attempting to connect to SW -2024-05-21 08:44:37,677 INFO SwAddin.cs: 197 - Setting up callbacks -2024-05-21 08:44:37,678 INFO SwAddin.cs: 201 - Setting up command manager -2024-05-21 08:44:37,679 INFO SwAddin.cs: 204 - Adding command manager -2024-05-21 08:44:37,682 INFO SwAddin.cs: 263 - Adding Assembly export to file menu -2024-05-21 08:44:37,682 INFO SwAddin.cs: 272 - Adding Part export to file menu -2024-05-21 08:44:37,682 INFO SwAddin.cs: 210 - Adding event handlers -2024-05-21 08:44:37,688 INFO SwAddin.cs: 217 - Connecting plugin to SolidWorks -2024-05-21 10:07:37,624 INFO SwAddin.cs: 294 - Assembly export called for file SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,335 INFO SwAddin.cs: 313 - Saving assembly -2024-05-21 10:07:39,538 INFO SwAddin.cs: 316 - Opening property manager -2024-05-21 10:07:39,580 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,589 INFO ExportHelperExtension.cs: 1136 - Found 87 in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,590 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,591 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2024-05-21 10:07:39,593 INFO ExportHelperExtension.cs: 1160 - 15 components to check -2024-05-21 10:07:39,594 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Wrist_Roll_05g-1 -2024-05-21 10:07:39,595 INFO ExportHelperExtension.cs: 1136 - Found 77 in Wrist_Roll_05g-1 -2024-05-21 10:07:39,596 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Wrist_Roll_05g-1 -2024-05-21 10:07:39,597 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-7 -2024-05-21 10:07:39,597 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-7 -2024-05-21 10:07:39,598 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-7 -2024-05-21 10:07:39,599 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-5 -2024-05-21 10:07:39,599 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-5 -2024-05-21 10:07:39,600 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-5 -2024-05-21 10:07:39,600 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Rotation_Pitch_04c-2 -2024-05-21 10:07:39,601 INFO ExportHelperExtension.cs: 1136 - Found 88 in Rotation_Pitch_04c-2 -2024-05-21 10:07:39,602 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Rotation_Pitch_04c-2 -2024-05-21 10:07:39,602 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Base_03-1 -2024-05-21 10:07:39,603 INFO ExportHelperExtension.cs: 1136 - Found 56 in Base_03-1 -2024-05-21 10:07:39,603 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Base_03-1 -2024-05-21 10:07:39,604 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_ARM100_06b-5 -2024-05-21 10:07:39,605 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-5 -2024-05-21 10:07:39,606 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_ARM100_06b-5 -2024-05-21 10:07:39,607 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Moving_Jaw_04f-1 -2024-05-21 10:07:39,607 INFO ExportHelperExtension.cs: 1136 - Found 53 in Moving_Jaw_04f-1 -2024-05-21 10:07:39,608 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Moving_Jaw_04f-1 -2024-05-21 10:07:39,609 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_ARM100_06b-6 -2024-05-21 10:07:39,609 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-6 -2024-05-21 10:07:39,610 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_ARM100_06b-6 -2024-05-21 10:07:39,611 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Removable_Jaws_01e-1 -2024-05-21 10:07:39,612 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-1 -2024-05-21 10:07:39,612 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Removable_Jaws_01e-1 -2024-05-21 10:07:39,613 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-3 -2024-05-21 10:07:39,614 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-3 -2024-05-21 10:07:39,615 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-3 -2024-05-21 10:07:39,616 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Removable_Jaws_01e-2 -2024-05-21 10:07:39,617 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-2 -2024-05-21 10:07:39,617 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Removable_Jaws_01e-2 -2024-05-21 10:07:39,618 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-4 -2024-05-21 10:07:39,619 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-4 -2024-05-21 10:07:39,620 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-4 -2024-05-21 10:07:39,621 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,622 INFO ExportHelperExtension.cs: 1136 - Found 71 in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,623 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,624 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-6 -2024-05-21 10:07:39,624 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-6 -2024-05-21 10:07:39,625 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-6 -2024-05-21 10:07:39,626 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-8 -2024-05-21 10:07:39,626 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-8 -2024-05-21 10:07:39,627 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-8 -2024-05-21 10:07:39,627 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,628 INFO ExportHelperExtension.cs: 1136 - Found 87 in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,628 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:07:39,629 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2024-05-21 10:07:39,629 INFO ExportHelperExtension.cs: 1160 - 15 components to check -2024-05-21 10:07:39,630 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Wrist_Roll_05g-1 -2024-05-21 10:07:39,630 INFO ExportHelperExtension.cs: 1136 - Found 77 in Wrist_Roll_05g-1 -2024-05-21 10:07:39,631 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Wrist_Roll_05g-1 -2024-05-21 10:07:39,631 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-7 -2024-05-21 10:07:39,632 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-7 -2024-05-21 10:07:39,633 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-7 -2024-05-21 10:07:39,633 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-5 -2024-05-21 10:07:39,634 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-5 -2024-05-21 10:07:39,635 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-5 -2024-05-21 10:07:39,635 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Rotation_Pitch_04c-2 -2024-05-21 10:07:39,636 INFO ExportHelperExtension.cs: 1136 - Found 88 in Rotation_Pitch_04c-2 -2024-05-21 10:07:39,637 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Rotation_Pitch_04c-2 -2024-05-21 10:07:39,637 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Base_03-1 -2024-05-21 10:07:39,637 INFO ExportHelperExtension.cs: 1136 - Found 56 in Base_03-1 -2024-05-21 10:07:39,638 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Base_03-1 -2024-05-21 10:07:39,638 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_ARM100_06b-5 -2024-05-21 10:07:39,639 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-5 -2024-05-21 10:07:39,639 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_ARM100_06b-5 -2024-05-21 10:07:39,640 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Moving_Jaw_04f-1 -2024-05-21 10:07:39,640 INFO ExportHelperExtension.cs: 1136 - Found 53 in Moving_Jaw_04f-1 -2024-05-21 10:07:39,640 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Moving_Jaw_04f-1 -2024-05-21 10:07:39,641 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_ARM100_06b-6 -2024-05-21 10:07:39,641 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-6 -2024-05-21 10:07:39,642 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_ARM100_06b-6 -2024-05-21 10:07:39,642 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Removable_Jaws_01e-1 -2024-05-21 10:07:39,642 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-1 -2024-05-21 10:07:39,643 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Removable_Jaws_01e-1 -2024-05-21 10:07:39,643 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-3 -2024-05-21 10:07:39,644 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-3 -2024-05-21 10:07:39,644 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-3 -2024-05-21 10:07:39,645 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Removable_Jaws_01e-2 -2024-05-21 10:07:39,645 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-2 -2024-05-21 10:07:39,645 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Removable_Jaws_01e-2 -2024-05-21 10:07:39,646 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-4 -2024-05-21 10:07:39,646 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-4 -2024-05-21 10:07:39,647 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-4 -2024-05-21 10:07:39,647 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,648 INFO ExportHelperExtension.cs: 1136 - Found 71 in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,649 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:07:39,649 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-6 -2024-05-21 10:07:39,650 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-6 -2024-05-21 10:07:39,650 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-6 -2024-05-21 10:07:39,651 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-8 -2024-05-21 10:07:39,651 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-8 -2024-05-21 10:07:39,652 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-8 -2024-05-21 10:07:40,103 INFO SwAddin.cs: 339 - Loading config tree -2024-05-21 10:07:40,107 INFO ExportPropertyManagerExtension.cs: 520 - Starting new configuration -2024-05-21 10:07:40,112 INFO SwAddin.cs: 344 - Showing property manager -2024-05-21 10:07:53,678 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:08:23,494 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:09:04,957 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:09:25,898 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:09:56,905 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:10:33,152 INFO ExportPropertyManager.cs: 1136 - OnNumberBoxTrackingCompleted called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:11:01,231 INFO ExportPropertyManager.cs: 422 - Configuration saved -2024-05-21 10:11:01,421 INFO ExportPropertyManager.cs: 1142 - AfterClose called. This method no longer throws an Exception. It just silently does nothing. Ok, except for this logging message -2024-05-21 10:11:04,383 INFO SwAddin.cs: 294 - Assembly export called for file SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,384 INFO SwAddin.cs: 299 - Save is required -2024-05-21 10:11:04,384 INFO SwAddin.cs: 313 - Saving assembly -2024-05-21 10:11:04,772 INFO SwAddin.cs: 316 - Opening property manager -2024-05-21 10:11:04,773 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,774 INFO ExportHelperExtension.cs: 1136 - Found 88 in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,775 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,776 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2024-05-21 10:11:04,776 INFO ExportHelperExtension.cs: 1160 - 15 components to check -2024-05-21 10:11:04,777 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Wrist_Roll_05g-1 -2024-05-21 10:11:04,777 INFO ExportHelperExtension.cs: 1136 - Found 77 in Wrist_Roll_05g-1 -2024-05-21 10:11:04,778 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Wrist_Roll_05g-1 -2024-05-21 10:11:04,779 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-7 -2024-05-21 10:11:04,780 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-7 -2024-05-21 10:11:04,781 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-7 -2024-05-21 10:11:04,781 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-5 -2024-05-21 10:11:04,782 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-5 -2024-05-21 10:11:04,783 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-5 -2024-05-21 10:11:04,783 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Rotation_Pitch_04c-2 -2024-05-21 10:11:04,784 INFO ExportHelperExtension.cs: 1136 - Found 88 in Rotation_Pitch_04c-2 -2024-05-21 10:11:04,785 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Rotation_Pitch_04c-2 -2024-05-21 10:11:04,786 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Base_03-1 -2024-05-21 10:11:04,787 INFO ExportHelperExtension.cs: 1136 - Found 56 in Base_03-1 -2024-05-21 10:11:04,787 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Base_03-1 -2024-05-21 10:11:04,788 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_ARM100_06b-5 -2024-05-21 10:11:04,789 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-5 -2024-05-21 10:11:04,790 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_ARM100_06b-5 -2024-05-21 10:11:04,791 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Moving_Jaw_04f-1 -2024-05-21 10:11:04,791 INFO ExportHelperExtension.cs: 1136 - Found 53 in Moving_Jaw_04f-1 -2024-05-21 10:11:04,792 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Moving_Jaw_04f-1 -2024-05-21 10:11:04,793 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from SO_ARM100_06b-6 -2024-05-21 10:11:04,793 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-6 -2024-05-21 10:11:04,794 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in SO_ARM100_06b-6 -2024-05-21 10:11:04,794 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Removable_Jaws_01e-1 -2024-05-21 10:11:04,795 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-1 -2024-05-21 10:11:04,803 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Removable_Jaws_01e-1 -2024-05-21 10:11:04,803 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-3 -2024-05-21 10:11:04,947 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-3 -2024-05-21 10:11:04,948 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-3 -2024-05-21 10:11:04,949 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Removable_Jaws_01e-2 -2024-05-21 10:11:04,950 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-2 -2024-05-21 10:11:04,950 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Removable_Jaws_01e-2 -2024-05-21 10:11:04,951 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-4 -2024-05-21 10:11:04,952 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-4 -2024-05-21 10:11:04,952 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-4 -2024-05-21 10:11:04,953 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,954 INFO ExportHelperExtension.cs: 1136 - Found 71 in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,955 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,955 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-6 -2024-05-21 10:11:04,956 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-6 -2024-05-21 10:11:04,957 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-6 -2024-05-21 10:11:04,957 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [CoordSys] from STS3215_02a-8 -2024-05-21 10:11:04,958 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-8 -2024-05-21 10:11:04,959 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [CoordSys] in STS3215_02a-8 -2024-05-21 10:11:04,959 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,960 INFO ExportHelperExtension.cs: 1136 - Found 88 in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,961 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_5DOF_ARM100_05d.SLDASM -2024-05-21 10:11:04,962 INFO ExportHelperExtension.cs: 1148 - Proceeding through assembly components -2024-05-21 10:11:04,962 INFO ExportHelperExtension.cs: 1160 - 15 components to check -2024-05-21 10:11:04,963 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Wrist_Roll_05g-1 -2024-05-21 10:11:04,964 INFO ExportHelperExtension.cs: 1136 - Found 77 in Wrist_Roll_05g-1 -2024-05-21 10:11:04,964 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Wrist_Roll_05g-1 -2024-05-21 10:11:04,965 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-7 -2024-05-21 10:11:04,966 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-7 -2024-05-21 10:11:04,966 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-7 -2024-05-21 10:11:04,967 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-5 -2024-05-21 10:11:04,967 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-5 -2024-05-21 10:11:04,968 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-5 -2024-05-21 10:11:04,969 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Rotation_Pitch_04c-2 -2024-05-21 10:11:04,970 INFO ExportHelperExtension.cs: 1136 - Found 88 in Rotation_Pitch_04c-2 -2024-05-21 10:11:04,971 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Rotation_Pitch_04c-2 -2024-05-21 10:11:04,972 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Base_03-1 -2024-05-21 10:11:04,973 INFO ExportHelperExtension.cs: 1136 - Found 56 in Base_03-1 -2024-05-21 10:11:04,974 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Base_03-1 -2024-05-21 10:11:04,975 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_ARM100_06b-5 -2024-05-21 10:11:04,976 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-5 -2024-05-21 10:11:04,977 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_ARM100_06b-5 -2024-05-21 10:11:04,978 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Moving_Jaw_04f-1 -2024-05-21 10:11:04,979 INFO ExportHelperExtension.cs: 1136 - Found 53 in Moving_Jaw_04f-1 -2024-05-21 10:11:04,980 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Moving_Jaw_04f-1 -2024-05-21 10:11:04,980 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from SO_ARM100_06b-6 -2024-05-21 10:11:04,981 INFO ExportHelperExtension.cs: 1136 - Found 98 in SO_ARM100_06b-6 -2024-05-21 10:11:04,982 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in SO_ARM100_06b-6 -2024-05-21 10:11:04,982 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Removable_Jaws_01e-1 -2024-05-21 10:11:04,983 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-1 -2024-05-21 10:11:04,984 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Removable_Jaws_01e-1 -2024-05-21 10:11:04,984 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-3 -2024-05-21 10:11:04,985 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-3 -2024-05-21 10:11:04,986 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-3 -2024-05-21 10:11:04,986 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Removable_Jaws_01e-2 -2024-05-21 10:11:04,987 INFO ExportHelperExtension.cs: 1136 - Found 30 in Removable_Jaws_01e-2 -2024-05-21 10:11:04,987 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Removable_Jaws_01e-2 -2024-05-21 10:11:04,988 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-4 -2024-05-21 10:11:04,988 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-4 -2024-05-21 10:11:04,989 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-4 -2024-05-21 10:11:04,989 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,990 INFO ExportHelperExtension.cs: 1136 - Found 71 in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,991 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in Wrist_Roll_Pitch_04c-2 -2024-05-21 10:11:04,991 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-6 -2024-05-21 10:11:04,991 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-6 -2024-05-21 10:11:04,992 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-6 -2024-05-21 10:11:04,992 INFO ExportHelperExtension.cs: 1125 - Retrieving features of type [RefAxis] from STS3215_02a-8 -2024-05-21 10:11:04,993 INFO ExportHelperExtension.cs: 1136 - Found 68 in STS3215_02a-8 -2024-05-21 10:11:04,993 INFO ExportHelperExtension.cs: 1145 - Found 0 features of type [RefAxis] in STS3215_02a-8 -2024-05-21 10:11:05,365 INFO SwAddin.cs: 339 - Loading config tree -2024-05-21 10:11:05,370 INFO ConfigurationSerialization.cs: 276 - URDF Configuration found -