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

Hridaynath's profile - activity

2021-11-17 11:33:38 -0500 received badge  Famous Question (source)
2021-11-17 11:33:38 -0500 received badge  Notable Question (source)
2021-01-15 19:40:57 -0500 received badge  Taxonomist
2019-09-16 12:23:04 -0500 received badge  Famous Question (source)
2019-09-16 12:23:04 -0500 received badge  Notable Question (source)
2019-09-16 12:23:04 -0500 received badge  Popular Question (source)
2019-09-16 12:18:17 -0500 received badge  Famous Question (source)
2019-05-06 04:26:20 -0500 received badge  Student (source)
2018-02-13 13:46:37 -0500 received badge  Good Answer (source)
2018-01-08 18:19:47 -0500 received badge  Notable Question (source)
2018-01-08 18:19:47 -0500 received badge  Popular Question (source)
2017-12-03 21:46:47 -0500 received badge  Famous Question (source)
2017-11-24 06:28:22 -0500 received badge  Nice Answer (source)
2017-09-19 23:57:11 -0500 received badge  Necromancer (source)
2017-09-19 23:57:11 -0500 received badge  Teacher (source)
2017-07-13 05:12:47 -0500 asked a question the unpack function parameter

the unpack function parameter the below function is defined in here void unpack(const velodyne_msgs::VelodynePacket &am

2017-07-13 04:10:41 -0500 marked best answer "class ROSBAG_DECL Bag" in bag.h

Will some one please explain me this syntax of defining the class in bag.h

The reason why I have asked this question is - I am facing problem to create a variable/instance/reference to this class.

I don't have much exposure to c++.

Any help would be appreciated.

2017-07-13 04:10:21 -0500 received badge  Popular Question (source)
2017-07-13 03:00:54 -0500 asked a question How to call "velodyne_rawdata::RawData::unpack()" method

How to call "velodyne_rawdata::RawData::unpack()" method Hi, I am currently iterating over velodyne bag and can get Velo

2017-07-11 00:31:17 -0500 received badge  Enthusiast
2017-07-10 06:53:31 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. (I learned something today.) Use

2017-07-10 06:52:23 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. Use the edit button/link to upd

2017-07-10 06:52:15 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. Use the edit button/link to upd

2017-07-10 06:51:47 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. Use the edit button/link to upda

2017-07-10 06:51:31 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. Use the edit button/link to upda

2017-07-10 06:51:17 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much :) The issue is solved and I could go ahead now. Use the edit button/link to upda

2017-07-10 06:49:27 -0500 received badge  Supporter (source)
2017-07-10 06:49:22 -0500 marked best answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

I am using this tutorial. I just want to read the Bag file, but there is linker error: undefined reference to `rosbag::Bag::Bag()'

as per tutorial I added all header files (and those all are present in the place where they are supposed to.) The header files are included successfully. I checked it by :

cout<< rosbag::rosmode::Read<< endl;

which produce the output :

2

Now if I add the following line to source code

rosbag::Bag bag;

it raising an error:

undefined reference to `rosbag::Bag::Bag()'

I have one doubt: Is rosbag/bag.h is responsible to create reference of rosbag::Bag ??

Further I have seen ros.cpp here But this bag.cpp is not there in my system. (I tried to find it with command - locate bag.cpp)

Also I don't want to use any node, launch, workspace or package of ros to do so, As I want to run this in isolation. (I am not a very good c++ programmer, forgive me if I am doing any silly mistake. :) )

Any help would be appreciated. Thank you.

2017-07-10 06:49:22 -0500 received badge  Scholar (source)
2017-07-10 06:26:52 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn I made CMakeLists.txt as you suggested: like below: cmake_minimum_required (VERSION 2.6) project (tutorial) f

2017-07-10 06:26:31 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

what I am missing.. I have almost trying for two days now. please help..

2017-07-10 06:25:57 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

what I am missing..

2017-07-10 06:25:45 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

what I might missing..

2017-07-10 06:25:28 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

both source code and CMakelists.txt is in a directory named "cmake_example". Now I ran cmake . make which does not p

2017-07-10 06:21:10 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

I have following code in my "sampleOne.cpp" source file. rosbag::Bag bag; cout<<rosbag::bagmode::Read<

2017-07-10 06:20:50 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

I have following code in my "sampleOne.cpp" source file. rosbag::Bag bag; cout<<rosbag::bagmode::Read<<

2017-07-10 06:19:02 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn I made CMakeLists.txt as you suggeste: like below: cmake_minimum_required (VERSION 2.6) project (tutorial) fi

2017-07-10 02:52:45 -0500 received badge  Notable Question (source)
2017-07-07 06:49:57 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

I have read some of website but I am clueless.

2017-07-07 06:49:23 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

similarly for some task since there is no python library exist, I have to work in cpp. So my next question is it imposs

2017-07-07 06:46:57 -0500 commented answer I wont be able to create reference to Bag class: undefined reference to `rosbag::Bag::Bag()

@gvdhoorn Thank you very much for your reply. But I am trying to work with ROS Bag file in Isolation (that is no workspa

2017-07-07 02:37:24 -0500 received badge  Popular Question (source)
2017-07-07 02:17:42 -0500 asked a question can anybody help me out with my basic questions. I am new to ROS

can anybody help me out with my basic questions. I am new to ROS I have very basic questions, I am stuck. May be I am do