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

HaroldVD's profile - activity

2023-06-08 05:43:49 -0500 received badge  Student (source)
2019-04-07 22:43:26 -0500 marked best answer SLAM localizing methods based on camera?

Are there any SLAM methods that can create a map from the camera output based on colors in ROS? Im working on a project where I can only get an absolute position by using lines that are drawn on the floor, just like a football field.

Most SLAM methods Ive seen like this one: https://vision.in.tum.de/research/vsl... rely a lot on depth-perception. I am just wondering which slam methods can detect (big & long) lines on the floor. I cant rely on walls or objects being detected mostly because the robot sometimes has to navigate in huge halls where the walls are really far away.

2018-11-15 09:00:46 -0500 received badge  Famous Question (source)
2018-05-31 04:54:18 -0500 commented answer Is there a (preferred) syntax for designing ROS applications?

I assume using nodelets doesn't provide any advantages over an implementation where I put all the code in a single node

2018-05-29 19:36:20 -0500 received badge  Notable Question (source)
2018-05-29 15:40:05 -0500 received badge  Popular Question (source)
2018-05-29 12:05:57 -0500 received badge  Notable Question (source)
2018-05-29 11:55:14 -0500 asked a question Is there a (preferred) syntax for designing ROS applications?

Is there a (preferred) syntax for designing ROS applications? Im writing a program for a robot that uses a camera to ana

2018-05-22 07:31:11 -0500 received badge  Popular Question (source)
2018-05-22 06:22:48 -0500 edited question Nodelet basics

Nodelet basics Since I want to implement Nodelets into my ROS projects I have the following questions which I cannot fin

2018-05-22 04:56:46 -0500 asked a question Nodelet basics

Nodelet basics Since I want to implement Nodelets into my ROS projects I have the following questions which I cannot fin

2018-05-17 16:00:40 -0500 received badge  Famous Question (source)
2018-05-15 03:31:57 -0500 marked best answer Latency on camera in ROS

For my project I need to analyse the vision of a robot, I attached a camera to it and I can view the videostream in ROS. I measure the latency by pointing the camera at a stopwatch on my screen and then take a screenshot. I can see the current time on the stopwatch and the current time on the stream, the difference between those is the latency.

Outside ROS, just by using a simple C++ program and openCV I measure a latency of 120ms. In ROS the (almost exact) same code gives me a latency of 230ms.

        while (ros::ok()) {
        thetaCapture.read(frame);
        if (frame.empty()) {
            ROS_ERROR("Empty frame read from camera stream");
            break;
        }

        cv::imshow("Theta Vision", frame);
        // Stop program on any key press
        if (cv::waitKey(1) > 1) break; 

        sensor_msgs::ImagePtr msg = cv_bridge::CvImage(std_msgs::Header(), "bgr8", frame).toImageMsg();
        imagePub.publish(msg);
        //  ros::spinOnce();
        //  rate.sleep();
    }

Basically all this node does is send the camera output to another node. Are there any techniques or ways to lower the camera latency in ROS? I experimented with Ros.Rate() etc. but that didn't change much so far.

2018-05-15 03:31:57 -0500 received badge  Scholar (source)
2018-05-15 02:54:52 -0500 received badge  Supporter (source)
2018-05-15 02:54:26 -0500 received badge  Famous Question (source)
2018-05-14 08:23:27 -0500 commented question Latency on camera in ROS

Yes, I take the time in the callback func.

2018-05-13 00:56:33 -0500 received badge  Notable Question (source)
2018-05-11 11:18:31 -0500 received badge  Popular Question (source)
2018-05-11 08:42:12 -0500 asked a question Latency on camera in ROS

Latency on camera in ROS For my project I need to analyse the vision of a robot, I attached a camera to it and I can vie

2018-03-13 03:04:35 -0500 received badge  Enthusiast
2018-03-06 07:09:50 -0500 received badge  Notable Question (source)
2018-03-05 16:00:14 -0500 received badge  Popular Question (source)
2018-03-05 07:57:55 -0500 asked a question SLAM localizing methods based on camera?

SLAM localizing methods based on camera? Are there any SLAM methods that can create a map from the camera output based o