当前位置: 首页>>代码示例>>Python>>正文


Python CompressedImage.header方法代码示例

本文整理汇总了Python中sensor_msgs.msg.CompressedImage.header方法的典型用法代码示例。如果您正苦于以下问题:Python CompressedImage.header方法的具体用法?Python CompressedImage.header怎么用?Python CompressedImage.header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sensor_msgs.msg.CompressedImage的用法示例。


在下文中一共展示了CompressedImage.header方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from sensor_msgs.msg import CompressedImage [as 别名]
# 或者: from sensor_msgs.msg.CompressedImage import header [as 别名]
	def __init__(self):
		self.node_name = "Virtual Mirror Nbuckman Tester"
		self.fake_pub_image = rospy.Publisher("/ernie/camera_node/image/compressed", CompressedImage,queue_size=1)
		img_file = rospy.get_param("~img_file","/home/noambuckman/test_images/01_horz.jpg")
		rospy.loginfo(img_file)
		im_cv = cv2.imread(img_file)
		img_str = cv2.imencode('.jpg', im_cv)[1].tostring()		
		pub_im=CompressedImage()
		pub_im.header=rospy.Time.now()
		pub_im.data = img_str
		#pub_im.data = np.array(cv2.imencode('.jpg', im_np)[1]).tostring()
		#flip_im.data = flip_arr.tostring()
		#flip_im.header.stamp = msg.header.stamp
		self.fake_pub_image.publish(pub_im)
开发者ID:71ananab,项目名称:Software,代码行数:16,代码来源:virtual_mirror_nbuckman_tester_node.py


注:本文中的sensor_msgs.msg.CompressedImage.header方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。