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

ffzj's profile - activity

2020-10-07 08:50:37 -0500 received badge  Student (source)
2020-05-15 03:31:45 -0500 received badge  Famous Question (source)
2020-05-15 03:31:45 -0500 received badge  Notable Question (source)
2020-05-15 03:31:45 -0500 received badge  Popular Question (source)
2020-04-28 16:20:35 -0500 received badge  Famous Question (source)
2019-07-09 01:37:48 -0500 edited question how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file?

how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file? I add the kinect camera in t

2019-07-09 01:36:11 -0500 asked a question how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file?

how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file? I add the kinect camera in t

2019-07-09 01:36:07 -0500 asked a question how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file?

how can i get the internal parameters of the kinect camera in the kinect_gazebo.xacro file? I add the kinect camera in t

2019-06-22 07:10:09 -0500 marked best answer use objectdetection model predict the image subscribed by kinect topic

I use the tensorflow object detection API train a model, I want to use the image topic in the kinect camera and identify it with the trained model. I found that recognition is much less effective than using image recognition directly. Why is that? Is it caused by predicting the image in rosimage format after converting it to cv::mat? Is there any way to solve it?

image_topic = "/kinect2/qhd/image_color"

self._cv_bridge = CvBridge()

self._sub = rospy.Subscriber(image_topic, Image, self.mycallback, queue_size=1) 

def mycallback(self,image):

    cv_image = self._cv_bridge.imgmsg_to_cv2(image_msg, "bgr8")
    pil_img = Image.fromarray(cv_image)
2019-06-22 06:49:28 -0500 commented question use objectdetection model predict the image subscribed by kinect topic

I have solved the problem, bgr8 is not the suitable type foe the model ,i have changed the cv_image type to rgb8.

2019-06-22 05:11:02 -0500 edited question use objectdetection model predict the image subscribed by kinect topic

use objectdetection model predict the image subscribed by kinect topic I use the tensorflow object detection API train a

2019-06-22 05:11:02 -0500 received badge  Editor (source)
2019-06-22 05:08:24 -0500 edited question use objectdetection model predict the image subscribed by kinect topic

use objectdetection model predict the image subscribed by kinect topic I use the tensorflow object detection API train a

2019-06-22 04:54:48 -0500 asked a question use objectdetection model predict the image subscribed by kinect topic

use objectdetection model predict the image subscribed by kinect topic I use the tensorflow object detection API train a

2019-06-17 05:08:26 -0500 received badge  Notable Question (source)
2019-05-30 09:10:13 -0500 marked best answer How to use C++ subscribe to a custom msg array published by Python

I use python publish a msg like this:

InfoData.msg
    int32 Num
    string color
    string name
 InfoDataArray.msg
   InfoData[] Infos

Now I want to use C++ subscribe the InfoDataArray.mag and store in the Structure. how to do this ?

2019-05-30 09:10:13 -0500 received badge  Scholar (source)
2019-05-30 08:09:26 -0500 received badge  Popular Question (source)
2019-05-30 06:01:57 -0500 asked a question How to use C++ subscribe to a custom msg array published by Python

How to use C++ subscribe to a custom msg array published by Python I use python publish a msg like this: InfoData.msg