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

jenanaputra's profile - activity

2024-01-26 13:45:58 -0500 received badge  Famous Question (source)
2024-01-26 13:45:58 -0500 received badge  Notable Question (source)
2024-01-26 13:45:58 -0500 received badge  Popular Question (source)
2023-06-07 23:24:47 -0500 asked a question Parameters from Yaml file did not appear when doing ros2 param list

Parameters from Yaml file did not appear when doing ros2 param list I am using ros2 humble in my jammy ubuntu distro. I

2023-05-13 03:00:00 -0500 asked a question Empty grey area instead of 3D grid with rviz2 on WSL

Empty grey area instead of 3D grid with rviz2 on WSL I am using Ubuntu 22.04.2 LTS on my WSL2 with ROS2 humble installed

2023-04-30 13:09:24 -0500 received badge  Famous Question (source)
2023-04-30 13:09:24 -0500 received badge  Notable Question (source)
2023-01-17 21:30:46 -0500 received badge  Famous Question (source)
2023-01-05 09:15:01 -0500 received badge  Famous Question (source)
2022-12-11 23:27:04 -0500 received badge  Popular Question (source)
2022-09-22 07:54:22 -0500 received badge  Famous Question (source)
2022-09-16 15:39:55 -0500 received badge  Notable Question (source)
2022-08-27 07:38:12 -0500 asked a question PyQT GUI + ROS melodic get freezing

PyQT GUI + ROS melodic get freezing I tried to make a GUI in ROS melodic using PyQT. I tried monitoring my robot's attit

2022-06-26 10:20:37 -0500 received badge  Famous Question (source)
2022-05-03 06:46:28 -0500 received badge  Notable Question (source)
2022-05-03 06:46:28 -0500 received badge  Popular Question (source)
2021-11-23 19:51:43 -0500 received badge  Notable Question (source)
2021-11-23 19:51:43 -0500 received badge  Popular Question (source)
2021-11-14 07:26:00 -0500 received badge  Popular Question (source)
2021-10-26 09:10:16 -0500 received badge  Famous Question (source)
2021-10-26 09:10:16 -0500 received badge  Notable Question (source)
2021-10-26 09:10:16 -0500 received badge  Popular Question (source)
2021-09-20 13:53:18 -0500 received badge  Famous Question (source)
2021-09-08 10:35:28 -0500 asked a question Does anyone know how to run sonar's SDK in ROS ?

Does anyone know how to run sonar's SDK in ROS ? I am using Gemini 720 im for my robot. I tried to run that SDK in ROS.

2021-08-26 00:24:17 -0500 received badge  Famous Question (source)
2021-08-26 00:03:46 -0500 received badge  Notable Question (source)
2021-06-21 11:40:07 -0500 asked a question convert uint8 data in sensor_msgs/Image to be integer

convert uint8 data in sensor_msgs/Image to be integer Hello, Iam using ros melodic and ubuntu 18.04. I tried to subscrib

2021-06-20 11:11:22 -0500 received badge  Notable Question (source)
2021-06-20 06:15:01 -0500 marked best answer sensor_msgs/Image

This is my first time dealing with sensor_msgs/Image. I am using ros melodic in ubuntu 18.04. I tried to subscribe the content of sensor_msgs/Image and tried to visualize the data from the msg for validating the image. it cunfused me when I print the width, height , and the size of the matrice data in sensor_msgs/Image. Why is the size value of matrice data in that msg different with height x width value ? Could anyone explain me about this ? (As I know the data is in the type of std::vector so I want to arrange it by dividing the data to an array[height][width] so I can validate and visualize those datas in Matlab)

2021-06-17 15:54:21 -0500 received badge  Popular Question (source)
2021-06-17 01:32:13 -0500 asked a question sensor_msgs/Image

sensor_msgs/Image This is my first time dealing with sensor_msgs/Image. I am using ros melodic in ubuntu 18.04. I tried

2021-06-07 01:09:01 -0500 edited question Laser plugin always get inf value ?

Laser plugin always get inf value ? I am using ubuntu 18.04, ROS Melodic , and Gazebo9 in Virtual Box to simulate my ro

2021-06-04 12:22:24 -0500 commented question Laser plugin always get inf value ?

This is the file.gazebo : <?xml version="1.0"?> <robot> <gazebo reference="MyRobot/base_link">

2021-06-04 12:21:32 -0500 edited question Laser plugin always get inf value ?

Laser plugin always get inf value ? I am using ubuntu 18.04, ROS Melodic , and Gazebo9 in Virtual Box to simulate my ro

2021-06-04 12:20:48 -0500 edited question Laser plugin always get inf value ?

Laser plugin always get inf value ? I am using ubuntu 18.04, ROS Melodic , and Gazebo9 in Virtual Box to simulate my ro

2021-06-04 12:18:56 -0500 asked a question Laser plugin always get inf value ?

Laser plugin always get inf value ? I am using ubuntu 18.04, ROS Melodic , and Gazebo9 in Virtual Box to simulate my ro

2021-06-04 11:23:00 -0500 marked best answer Frame does not exist when run Gazebo

I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I create a dynamic node to move the robot. When I publish gazebo_msgs/ModelState with reference_frame set as "world_ned" in the dynamic node I created before, I was getting an error : "Updating ModelState: for model[MyrobotName], specified reference frame entity [world_ned] does not exist " , even though I already used a static_transform_publisher in my launch file. But when I simulate it in my rviz, there is no error like I said before. This is my tf tree : image description and this is my launch file :

<launch>
<!-- Configurable arguments -->
<arg name="enable_rviz" default="true"/>
<arg name="robot_name" default="MyrobotName"/>    
<node name="world2ned" pkg="tf" type="static_transform_publisher" args="0 0 0 0 0 3.1415 world world_ned 100"/>

<!-- Robot description -->
<arg name="model" default="$(find gb_description)/urdf/myrobotname.urdf"/>
<param name="robot_description" command="$(find xacro)/xacro $(arg model)" />

<arg name="x_pos" default="0.0"/>
<arg name="y_pos" default="0.0"/>
<arg name="z_pos" default="0.5"/>

<include file="$(find gazebo_ros)/launch/empty_world.launch">
<arg name="paused" value="false"/>
<arg name="use_sim_time" value="true"/>
<arg name="gui" value="true"/>
<arg name="headless" value="false"/>
<arg name="debug" value="false"/>
</include>

<!-- Load configs in their node namespace -->
<rosparam command="load" file="$(find gb_sim)/config/dynamics.yaml"/>


<!-- Start nodes -->
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" output="screen"/>
<node name="dynamics_node" pkg="gb_sim" type="dynamics_node.py" output="screen"/>


<!-- RViz -->
<node if="$(arg enable_rviz)" pkg="rviz" type="rviz" name="rviz" args="-d $(find gb_description)/scene/test1.rviz"/>

<node pkg="gazebo_ros" type="spawn_model" name="spawn_urdf"  args="-urdf -model MyrobotName -x $(arg x_pos) -y $(arg y_pos) -z $(arg z_pos) -param robot_description" />
</launch>

Does anyone know how to solve it ?

2021-06-04 11:22:48 -0500 received badge  Notable Question (source)
2021-06-04 07:00:16 -0500 received badge  Supporter (source)
2021-06-01 20:28:26 -0500 commented answer Frame does not exist when run Gazebo

I set my_new_frame to world_ned

2021-06-01 20:24:51 -0500 received badge  Popular Question (source)
2021-06-01 19:53:26 -0500 commented answer Frame does not exist when run Gazebo

Sure , I've already update my question above, so you can give me an advice about that. I just realized that when I remo

2021-06-01 19:52:34 -0500 commented answer Frame does not exist when run Gazebo

Sure , I've already update my question above, so you can give me an advice about that. I just realized that when I remo

2021-06-01 19:44:44 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr

2021-06-01 19:43:56 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr

2021-06-01 19:42:32 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr

2021-06-01 19:40:06 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr

2021-06-01 19:38:18 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr

2021-06-01 19:35:37 -0500 edited question Frame does not exist when run Gazebo

Frame does not exist when run Gazebo I am using ubuntu 18.04, ros melodic to simulate my URDF robot in gazebo. Then I cr