ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Martin Bischoff's profile - activity

2021-05-13 23:38:20 -0500 received badge  Great Answer (source)
2020-09-01 20:57:34 -0500 received badge  Student (source)
2018-10-01 08:17:40 -0500 received badge  Good Answer (source)
2018-01-19 07:48:02 -0500 received badge  Enthusiast
2017-11-23 04:26:58 -0500 commented answer Has anyone integrated ROS with Unity 3d?

@Demian23 please provide a clear error description so that we can help you. Problems with ROS#: Please write detailed i

2017-11-23 04:26:43 -0500 commented answer Has anyone integrated ROS with Unity 3d?

@Demian23 please provide a clear error description so that we can help you. Problems with ROS#: Please write detailed i

2017-11-23 04:26:29 -0500 commented answer Has anyone integrated ROS with Unity 3d?

@Demian23 please provide a clear error description so that we can help you. Problems wirh ROS#: Please write detailed is

2017-11-23 04:26:11 -0500 commented answer Has anyone integrated ROS with Unity 3d?

@Demian23 please provide a clear error description so that we can help you. Problems wirh ROS#: Please write detailed is

2017-10-13 09:38:34 -0500 received badge  Nice Answer (source)
2017-10-13 09:31:20 -0500 commented answer rosbridge_suite to recieve meshes

Thank you! We brought it open source only recently. We haven't made much advertisement outside the company (yet). We are

2017-10-13 09:24:29 -0500 received badge  Necromancer (source)
2017-10-13 09:23:51 -0500 received badge  Scholar (source)
2017-10-13 09:19:07 -0500 received badge  Self-Learner (source)
2017-10-13 09:19:07 -0500 received badge  Teacher (source)
2017-10-13 09:10:56 -0500 commented answer rosbridge_suite to recieve meshes

I didn't forget your question. We published the code open source recently. See https://github.com/siemens/ros-sharp/tree

2017-10-13 09:08:07 -0500 answered a question Has anyone integrated ROS with Unity 3d?

We have recently published our ROS-Unity3D Toolbox ROS# on GitHub: https://github.com/siemens/ros-sharp We use rosbrid

2017-09-07 11:29:27 -0500 received badge  Famous Question (source)
2017-02-15 05:45:07 -0500 received badge  Notable Question (source)
2017-02-15 05:36:32 -0500 commented answer Decode compressedDepth message from compressed_depth_image_transport

Thank you so much gariepya! Removing these first 12 bytes is the solution to the problem with which I honestly wasted days of precious working time.

2017-01-20 10:35:19 -0500 received badge  Popular Question (source)
2017-01-20 10:19:24 -0500 answered a question rosbridge_suite to recieve meshes

I solved my problem by writing a ROS service that requires a "package://..." filename as input and returns the contents of that file. It is basically a very simple read-only ROS file server.

I like this solution since: - i do not need to set up additional server beside ROSbridge - in contrast to the ros3djs solution, i can load the meshes directly from the ROS PC and do not need any external repositories. - i can read the Collada mesh files in a very similar way as i read the urdf JSON message on the client side.

2017-01-19 07:23:46 -0500 received badge  Supporter (source)
2017-01-19 07:22:54 -0500 commented answer rosbridge_suite to recieve meshes

Setting up a http server beside the ROSbridge server on the ROS PC definitely is an option. I was already think about doing it that way. But I was hoping that ROS(bridge) had the possiblity to send the mesh data in a similar way to the URDF data.

2017-01-19 07:22:42 -0500 commented answer rosbridge_suite to recieve meshes

If I understood the Robot Web Tools URDF demo right, the meshes are downloaded from a server, and are not communicated via rosbridge: http://wiki.ros.org/ros3djs#Mesh_Reso...

2017-01-19 07:22:06 -0500 commented answer rosbridge_suite to recieve meshes

Thanks for these hints gvdhoorn! (Multiple comments due to limited space...)

I currently use rosbridge_suite only: On the client side, I resolve the JSON messages driectly in C#, without using any of those great javascript libraries from Robot Web Tools.

2017-01-19 06:58:32 -0500 asked a question rosbridge_suite to recieve meshes

Hi,

I'm using rosbridge_suite to visualize the robot on a windows machine in VR. Ideally, I would like to recieve the complete robot's description directly from the robot.

I managed to recieve the plain URDF xml via "/rosapi/getparam robot_description".

Is there any possiblity to load the meshes which are referenced in the URDF in a similar way? Or do I have to copy them manually?

Thank you for your advise!

2017-01-19 06:58:32 -0500 asked a question ROSbridge: send mesh

Hi,

I'm using rosbridge_suite to visualize the robot on a windows machine in VR. Ideally, I would like to recieve the complete robot's description directly from the robot.

I managed to recieve the plain URDF xml via "/rosapi/getparam robot_description".

Is there any possiblity to load the meshes which are referenced in the URDF in a similar way? Or do I have to copy them manually?

Thank you for your advise!