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

can-43811's profile - activity

2023-05-13 13:35:50 -0500 received badge  Good Question (source)
2022-01-14 03:33:41 -0500 received badge  Famous Question (source)
2022-01-14 03:33:41 -0500 received badge  Popular Question (source)
2022-01-14 03:33:41 -0500 received badge  Notable Question (source)
2021-04-03 18:58:37 -0500 received badge  Famous Question (source)
2021-03-30 15:09:49 -0500 received badge  Famous Question (source)
2021-02-03 12:24:29 -0500 received badge  Popular Question (source)
2021-02-03 12:24:29 -0500 received badge  Notable Question (source)
2021-01-01 08:01:24 -0500 received badge  Famous Question (source)
2021-01-01 08:01:24 -0500 received badge  Notable Question (source)
2020-12-16 07:23:19 -0500 received badge  Notable Question (source)
2020-12-16 07:23:19 -0500 received badge  Popular Question (source)
2020-12-16 07:10:28 -0500 received badge  Famous Question (source)
2020-08-28 12:30:09 -0500 received badge  Famous Question (source)
2020-06-01 03:50:14 -0500 received badge  Notable Question (source)
2020-05-09 23:02:06 -0500 received badge  Famous Question (source)
2020-04-15 04:48:28 -0500 received badge  Notable Question (source)
2020-04-15 04:48:28 -0500 received badge  Popular Question (source)
2020-01-02 16:08:11 -0500 received badge  Nice Question (source)
2019-09-20 02:42:58 -0500 marked best answer Log scheduling and archival policy in ROS

I am looking for log archival package which should be able to help me in based on below policy. (1) whenever log file (system.log) size >30859 or file is 3 day old then it should archive the same with new name system.log1 and again start the feeding the log in system.log file from start after truncating its content. I am going to write all the debug statements in log file through ROS c++ code in linux environment. Any immediate help will be appreciated.

2019-05-20 02:30:29 -0500 marked best answer Fix for - OpenCV Error:Unspeicifed Error -

error:

OpenCV Error: Unspecified error (could not find a writer for the specified extension) in imwrite_, file /temp/binarydeb/ros-kinetic-opencv3-3.2.0/modules/imgcodecs/src/loadsave.cpp, line 531
terminate called after throwing an instance of 'cv::Exception'

  what():  /temp/binarydeb/ros-kinetic-opencv3-3.2.0/modules/imgcodecs/src/loadsave.cpp, line 531: error: (-2) could not find a writer for the specified extension in function imwrite_

Aborted(core dumped)

while running my application i am facing openCE Error and my code is getting core dumped and halting my code execution , please provide fix for this issue asap.

Here is the code snippet.

           vector<int> compression_params; //vector that stores the compression parameters of the image

    compression_params.push_back(CV_IMWRITE_JPEG_QUALITY); //specify the compression technique

    compression_params.push_back(98); //specify the compression quality

    bool bSuccess = imwrite(jpegImage.c_str(), img, compression_params); //exception is received here

Below is the jpegImage name with .jpg extension .

string socket_server::jpegImage = "TestImage.jpg";

Regards Anjaneyulu

2019-05-20 02:29:11 -0500 received badge  Famous Question (source)
2019-05-20 02:27:15 -0500 marked best answer communication between two roscore

Hi, I want to how to communicate between two roscore . in my scenario one robot wants to invoke other robot's service but how to communicate them through their respective roscore so that roscore data can be hacked. How to perform book keeping on roscore about topics . so that on run time communication between one to another roscore can be configured .

2019-05-20 02:23:30 -0500 marked best answer how to identify topic and data type mapping in ros

Hi All, I want to know the exact data type of topic published. So in some scenario data type integer related information published under some topics or it might be image or string data. in some scenario published information under topic might be collection of some of the data types (int, bool, string, float, double) . so how to identify through command line or API what data type is published under particular topic.

2019-05-20 02:21:39 -0500 marked best answer Quanergy’s 3D LiDAR M8-1 sensors driver code reference in Ros kinetic

I am looking driver code for Quanergy’s 3D LiDAR M8-1 sensors in ros kinetic , but couldn't find it the same.

i can only get reference for velodyne (3D Lidar) in github :

https://github.com/ros-drivers/velodyne

can anybody suggest where i should look for driver implementation of Quanergy’s 3D LiDAR M8-1 sensors.

2019-05-20 01:41:05 -0500 marked best answer log level in diagnostics package.

Hi, As we can see that below API can be used for setting the default log level for console. can anybody suggest how to set the leg level for diagnostics.Here same i am expecting i.e. (ros::diagnostics_updater::levels::Debug)

ros::console::set_logger_level(ROSCONSOLE_DEFAULT_NAME, ros::console::levels::Debug)

2019-04-10 22:07:08 -0500 received badge  Notable Question (source)
2019-04-10 22:04:54 -0500 received badge  Popular Question (source)
2019-04-10 22:04:54 -0500 received badge  Notable Question (source)
2019-01-14 00:44:34 -0500 received badge  Notable Question (source)
2018-11-09 05:38:51 -0500 received badge  Famous Question (source)
2018-11-09 05:38:51 -0500 received badge  Popular Question (source)
2018-11-09 05:38:51 -0500 received badge  Notable Question (source)
2018-11-06 08:59:21 -0500 received badge  Popular Question (source)
2018-08-21 12:25:23 -0500 received badge  Famous Question (source)
2018-08-08 01:47:43 -0500 marked best answer How to compile paython package in c++ work space

Hi ,

I want to use paython package in c++ workspace as package available in paython not in c++ . Could you let me know the approach for the same . Is it advisable to use paython package in c++ workspace ? I don't have any experience in paython but want to use paython package so that information can be published through topics .

2018-08-08 01:29:57 -0500 marked best answer How to notify from publisher to subscriber before stopping publishing data.

How to know from subscriber's end that publisher stopped the publishing data. in my subscriber code i am performing clean up operations and would like to know if publisher stopped publishing the data.Here i am publishing the data based on topic not a service so how to create link or notification between publisher and subscriber in case publisher stopped publishing data. Usually if publisher node is not publishing the data then subscriber node callback itself won't be called.

2018-07-02 15:54:15 -0500 received badge  Notable Question (source)
2018-06-28 09:21:00 -0500 marked best answer memory and cpu utilization of all running nodes

Hi All, I would like to know if ros provides to capture the memory and cpu utilization of all the running node. Usually rosnode all command will give the list of the all running node but not sure how to list the memory and cpu utilization of all the running nodes.does this facility provide by the ros framework ?

2018-06-28 03:37:44 -0500 received badge  Famous Question (source)
2018-06-28 03:36:16 -0500 received badge  Famous Question (source)
2018-06-28 03:35:59 -0500 received badge  Famous Question (source)
2018-06-28 02:28:24 -0500 received badge  Famous Question (source)
2018-06-26 02:37:53 -0500 marked best answer sensor package for audio driver

Hi All,

I am looking package for microphone (ekuilt) sensor. Could you suggest a good ros package for audio purpose.

Regards,

2018-06-20 13:20:36 -0500 received badge  Popular Question (source)
2018-04-27 14:08:29 -0500 marked best answer utliity/package for monitoring the node

Hi, I am looking a package for monitoring the running node health status.Apart from this i should be able to start/stop/kill all (particular node) Could you please help in this regard.

2018-04-27 14:08:13 -0500 received badge  Famous Question (source)
2018-04-27 14:01:28 -0500 marked best answer API to know whether node is active or not

Hi, I would like to know what is the API in roscpp which can be used whether particular node is active or not.

~can-43811