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

Kirill_Sokolov's profile - activity

2017-03-13 04:47:14 -0500 received badge  Famous Question (source)
2015-04-03 05:28:39 -0500 received badge  Famous Question (source)
2015-04-01 12:44:11 -0500 received badge  Taxonomist
2015-01-16 02:25:00 -0500 received badge  Famous Question (source)
2014-11-06 17:14:50 -0500 received badge  Notable Question (source)
2014-07-14 02:36:26 -0500 received badge  Notable Question (source)
2014-07-14 02:36:26 -0500 received badge  Popular Question (source)
2014-04-28 18:17:43 -0500 received badge  Notable Question (source)
2014-04-26 06:07:31 -0500 commented answer hector_qrcode_detection

I added output rosnode list and output rosnode info /qrcode_detection_kinect. But how we can see the node is runnig, but it doesn't have any subscribers or publisher.

2014-04-24 01:07:36 -0500 received badge  Popular Question (source)
2014-04-23 23:52:03 -0500 commented answer hector_qrcode_detection

I edited question with outputs. I hope it helps. Honestly I don't know a lot about nodelets, but I'll of course read about it.

2014-04-23 23:34:05 -0500 received badge  Editor (source)
2014-04-23 01:54:31 -0500 received badge  Popular Question (source)
2014-04-23 01:24:10 -0500 asked a question hector_qrcode_detection

I can't to start work with hector_qrcode_detection. I edited this launch file I only change this sector

<remap from="openni/image"             to="/image_raw" />
<remap from="openni/image_percept"     to="worldmodel/image_percept" />
<remap from="openni/image/qrcode"      to="image/qrcode" />
<remap from="openni/image/camera_info" to="/camera_info" />

Because I use uvc_camera for testing, but I going to use this package with kinect. So when I start this launch file, I didn't see that any topic supsribes to image_raw. Where is problem? What I'm doing wrong?

rostopic info /image_raw

Type: sensor_msgs/Image

Publishers: 
 * /uvc_camera (http://turtle-comp:34051/)

Subscribers: None

rostopic list | grep image

/image_raw
/image_raw/compressed
/image_raw/compressed/parameter_descriptions
/image_raw/compressed/parameter_updates
/image_raw/compressedDepth
/image_raw/compressedDepth/parameter_descriptions
/image_raw/compressedDepth/parameter_updates
/image_raw/theora
/image_raw/theora/parameter_descriptions
/image_raw/theora/parameter_updates

rosnode list

/qrcode_detection_kinect
/qrcode_detection_pseye_left
/qrcode_detection_pseye_right
/rosout
/uvc_camera

rosnode info /qrcode_detection_kinect

Node [/qrcode_detection_]
Publications: None

Subscriptions: None

Services: None
2014-03-19 09:40:17 -0500 asked a question Hector_qrcode_detection problem

Hello, I have some issue with this package. I change in a launch file

<remap from="image" to="camera/rgb/image_raw" />

to

<remap from="image" to="/image_raw" />

where /image_raw my camera topic. But nodes only starts and in rostopic list i don't see any topics, and of course nothing publishing. Where is a problem? Please help, or you can to advise to me another qr code detection package?

2014-03-05 18:33:40 -0500 received badge  Enthusiast
2014-03-05 10:48:16 -0500 asked a question Turtlebot searching figures in office

Hi, I have a "checkpoint" and several numbered "stations". At the checkpoint turtlebot have to scan nameplate with one-digit number. Determine what it is and go to station with this number. And repeat. So, I guess this is done in the following way...

Preparation: In the teleop mode (in future of course autonomous way better) the robot explore a room: build a map, find "stations" and remember station's coordinates.

Execute: Go to the checkpoint coordinates, find and scan number, realize what station we need and go to this station coordinates.

Questions: How to remember station's coordinates, and where to store it? How to associate a picture with the number and the desired station?

2014-02-26 05:35:58 -0500 commented answer Where to start with turtlebot?

Thanks, it can help me

2014-02-25 21:12:08 -0500 received badge  Notable Question (source)
2014-02-25 11:59:41 -0500 received badge  Popular Question (source)
2014-02-24 21:23:18 -0500 asked a question Where to start with turtlebot?

Hi, I start to learn ros and have the turtlebot. I did all tutorials and don't know how to go on. I have an assignment - turtlebot have to scan a figure from paper and after it must search the figure in the room, move to this figure and stop nearly.

As I understand, turtlebot have a ready base controller, navigation, odomentry and so on, I don't need creating it myself, in bringup minimal I saw this packages and used. But I don't understand how to use it separately, and I couldn't find their sources. Personally, I think to write node for global control, but also can't figure out what topics I need publish, subscribre, what services i need, what I must to write myself and what I can use ready-prepared?

I hope my questions is clear, if not asking please.

2013-05-15 02:27:04 -0500 received badge  Famous Question (source)
2013-04-09 09:12:39 -0500 commented answer Need help, where to start.

I think I do not need to use this stack, because it is realy dificult for me now=)

2013-04-09 09:09:27 -0500 commented answer Need help, where to start.

O good, it is what I need, thanks Martin=). So at node "driver" i have only implementation of the protocol modbus. And so turtlebot_teleop publishing messages of type Twist?

2013-04-09 08:49:01 -0500 received badge  Supporter (source)
2013-04-08 21:35:19 -0500 received badge  Notable Question (source)
2013-04-08 06:26:37 -0500 received badge  Popular Question (source)
2013-04-08 05:03:18 -0500 received badge  Student (source)
2013-04-08 04:13:56 -0500 asked a question Need help, where to start.

Hi, I'm beginner in ROS, and don't know where to start my task. I'm studied beginner tutorials and want to build robot. My robot is tricycle with two drive wheels and one slave respectively. Drivers are control by two servo, and servo must controled by ROS via modbus protocol. For a start I want moving it (forward, backward, left, right) from keyboard. And dont know what nodes me need.