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

HugoLqsticot's profile - activity

2018-03-21 08:12:50 -0500 received badge  Good Question (source)
2017-08-10 05:45:39 -0500 received badge  Favorite Question (source)
2016-09-30 16:53:02 -0500 received badge  Nice Question (source)
2016-02-23 06:04:55 -0500 received badge  Famous Question (source)
2015-10-15 08:53:19 -0500 received badge  Famous Question (source)
2015-08-28 08:40:31 -0500 received badge  Notable Question (source)
2015-06-30 22:51:22 -0500 commented question RGB (640*480) + Depth Image to Real World Kinect

Thanks! Works Great !

2015-06-29 21:17:07 -0500 commented question RGB (640*480) + Depth Image to Real World Kinect

Because, I recognize my object with colour in openCV in a RGB image, that's my problem. And I think I couldn't do that with a pointCloud

2015-06-29 21:15:53 -0500 received badge  Popular Question (source)
2015-06-28 21:29:36 -0500 asked a question RGB (640*480) + Depth Image to Real World Kinect

Hello, I'm looking for an easy way to Convert kinect RGB and depth values to XYZ coordinates in ROS. My goal is a function with an input of: RGB and depth values of each point of my object, and output of: x,y and z values of each point.

Does anyone have an idea for that ?

2015-06-12 14:31:01 -0500 received badge  Student (source)
2015-06-12 14:29:02 -0500 received badge  Notable Question (source)
2015-06-02 06:43:35 -0500 received badge  Popular Question (source)
2015-06-02 00:29:59 -0500 received badge  Enthusiast
2015-05-21 23:10:04 -0500 asked a question Pick and Place using Moveit

Hello, I'm using Moveit and Rviz to move my robot. I wrote a simple code to use the Pick and Place. My pick works very well, but my Place don't. Do you have any idea ?

I'm under Hydro.

And I have this error :

Fail: ABORTED: Must specify group in motion plan request

Here is my code.

import sys
import rospy
from moveit_commander import RobotCommander, MoveGroupCommander
from moveit_commander import PlanningSceneInterface, roscpp_initialize, roscpp_shutdown
from geometry_msgs.msg import PoseStamped, Pose
from moveit_msgs.msg import Grasp, GripperTranslation, PlaceLocation
from trajectory_msgs.msg import JointTrajectoryPoint


if __name__=='__main__':

 roscpp_initialize(sys.argv)
 rospy.init_node('moveit_py_demo', anonymous=True)

 scene = PlanningSceneInterface()
 robot = RobotCommander()
 right_arm = MoveGroupCommander("right_arm")
 end_effector_link = right_arm.get_end_effector_link()  

 print "======= PICK"
 right_arm.pick("part")
 rospy.sleep(2)  

 p = PoseStamped()
 p.header.frame_id = "base_footprint"
 p.pose.position.x = 0.8
 p.pose.position.y = -0.3
 p.pose.position.z = 0.7
 p.pose.orientation.w = 1.0

 print "======= PLACE"
 right_arm.place("part",p)