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

cagatay's profile - activity

2021-02-20 05:05:48 -0500 received badge  Nice Answer (source)
2020-07-23 14:57:37 -0500 received badge  Nice Answer (source)
2020-03-20 02:52:34 -0500 received badge  Great Answer (source)
2020-03-20 02:52:34 -0500 received badge  Guru (source)
2019-06-18 15:40:13 -0500 received badge  Good Answer (source)
2018-12-24 12:23:57 -0500 received badge  Good Answer (source)
2018-05-26 04:33:26 -0500 edited answer How do package.xml and CMakeLists.txt work

Taken from package.xml This file defines properties about the package such as the package name, version numbers, author

2018-05-26 04:32:10 -0500 answered a question How do package.xml and CMakeLists.txt work

Taken from package.xml This file defines properties about the package such as the package name, version numbers, author

2018-04-26 09:37:26 -0500 answered a question How to build a map without teleop commands turtlebot

I don't know how much you are expecting from autonomous map building, it is an active field of research but there are se

2018-04-26 09:30:34 -0500 received badge  Civic Duty (source)
2018-04-26 09:28:42 -0500 commented question How to reduce particle deprivation in AMCL?

maybe increasing min number of particles parameter would help ?

2018-01-25 18:00:36 -0500 received badge  Nice Answer (source)
2018-01-25 18:00:31 -0500 received badge  Nice Answer (source)
2018-01-25 18:00:09 -0500 received badge  Nice Answer (source)
2018-01-25 18:00:05 -0500 received badge  Nice Answer (source)
2018-01-22 13:12:15 -0500 edited answer /apriltag_detector node crashes after viewing an apriltag. Receive openCV error

Hello, if you are using this repo http://wiki.ros.org/apriltags_ros, the pull request https://github.com/RIVeR-Lab/apr

2018-01-22 09:35:10 -0500 answered a question /apriltag_detector node crashes after viewing an apriltag. Receive openCV error

Hello, if you are using the repo here http://wiki.ros.org/apriltags_ros, the pull request here solved our problem http

2017-09-27 05:54:41 -0500 received badge  Guru (source)
2017-09-27 05:54:41 -0500 received badge  Great Answer (source)
2017-09-15 16:25:23 -0500 received badge  Nice Answer (source)
2017-07-03 05:11:02 -0500 received badge  Good Answer (source)
2017-04-13 11:56:48 -0500 received badge  Good Answer (source)
2017-04-13 11:55:22 -0500 received badge  Good Answer (source)
2017-04-13 11:53:44 -0500 received badge  Guru (source)
2017-04-13 11:53:44 -0500 received badge  Great Answer (source)
2017-04-13 11:53:04 -0500 received badge  Great Answer (source)
2017-04-13 11:53:04 -0500 received badge  Guru (source)
2017-04-13 11:52:13 -0500 received badge  Good Answer (source)
2017-04-06 05:36:21 -0500 received badge  Good Answer (source)
2017-02-05 13:40:48 -0500 received badge  Nice Answer (source)
2016-07-29 01:14:12 -0500 commented answer Is there a robot monitor node?

you can publish messages via rqt, just take a look

2016-07-27 09:29:41 -0500 answered a question Is there a robot monitor node?

Take a look at rqt You can view all of the things you listed rqt wiki

2016-07-25 01:06:31 -0500 commented answer Localization vs Navigation

you can start with reading the tutorials here http://wiki.ros.org/navigation/Tutorials

2016-07-21 07:31:06 -0500 commented answer Localization vs Navigation

I edited my response regarding to ROS, yeah it may be subjective but generally speaking, the navigation concept can be extended to involve mapping and exploration

2016-07-21 05:47:02 -0500 commented answer Localization vs Navigation

I am referring to nav_stack of ros

2016-07-21 03:45:06 -0500 commented answer Localization vs Navigation

also exploring and mapping the enviroment that robot is operating

2016-07-21 01:22:56 -0500 answered a question Localization vs Navigation

Broadly speaking, Navigation Stack of ROS involves the folllowings

1) Localization 2) Collision Avoidance 3) Trajectory Planning

Localization involves one question: Where is the robot now? or where am I, keeping in mind that "here" is relative to some landmark.

2016-07-20 01:08:45 -0500 answered a question Obstacle avoidance with navigation stack without map!

I am assuming that you are trying to use dwa_local_planner provided by navigation stack and
given a global plan to follow and a costmap, the local planner produces velocity commands to send to a mobile base. But you can code your own obstacle avoidance

check out costmap and global planner's wiki

2016-07-19 01:00:41 -0500 commented question ros_arduino_bridge error help

I installed it and launched it but i did not get the same error :(

2016-07-19 01:00:00 -0500 received badge  Enthusiast
2016-07-19 01:00:00 -0500 received badge  Enthusiast
2016-07-18 07:34:25 -0500 commented question ros_arduino_bridge error help

Are you sure that you have the latest version of the bridge ? Could you follow the install instructions again

2016-07-18 06:55:27 -0500 commented question ros_arduino_bridge error help

and the yaml file my_arduino_params.yaml

2016-07-18 06:02:55 -0500 edited answer How to include a library in CMakeLists

compile your i2c library similar to

add_library(mylib src/mylib.cpp)

then compile your node then link your library to your node

add_executable(mynode src/mynode.cpp)
target_link_libraries(mynode mylib)

If it is an external library

find_package( PkgConfig REQUIRED)
pkg_check_modules( mylib REQUIRED mylib )

or

FIND_LIBRARY(mylib_LIBRARIES mylib /path/to/lib)

then link the library to your node

add_executable(mynode src/mynode.cpp)
target_link_libraries(mynode ${mylib_LIBRARIES})

hope this helps

2016-07-18 05:58:16 -0500 commented question ros_arduino_bridge error help

could you please print your launch file