Ask Your Question

GZ's profile - activity

2019-10-10 09:26:24 -0600 commented question X,Y and RGB data

Here it works try: while True: frames = pipeline.wait_for_frames() depth_frame = frames.

2019-10-10 09:25:59 -0600 commented question X,Y and RGB data

As you see in this picture (its not me LOL), in my case i dont have no information at the bottom of the window like he d

2019-10-10 09:24:49 -0600 commented question X,Y and RGB data

try: while True: frames = pipeline.wait_for_frames() depth_frame = frames.get_depth_fram

2019-10-10 09:24:29 -0600 commented question X,Y and RGB data

try: while True: frames = pipeline.wait_for_frames() depth_frame = frames.get_depth_frame()

2019-10-10 09:17:51 -0600 commented question X,Y and RGB data

As you see in this picture (its not me LOL), i have no information at the bottom of the window https://2.bp.blogspot.com

2019-10-10 09:13:07 -0600 commented question X,Y and RGB data

This is a simplified code. class image_converter: def __init__(self): self.image_pub = rospy.Publisher("/k

2019-10-10 09:12:43 -0600 commented question X,Y and RGB data

This is a simplified code. class image_converter: def __init__(self): self.image_pub = rospy.Publisher("/kodak/

2019-10-10 09:11:35 -0600 commented question X,Y and RGB data

class image_converter: def __init__(self): self.image_pub = rospy.Publisher("/kodak/image_raw2", Image) sel

2019-10-10 09:05:19 -0600 commented question X,Y and RGB data

cv2.line(np_image, (618, 1017), (646, 1017), yellow, thickness=5) cv2.line(np_image, (839, 1017), (807, 1017), y

2019-10-08 17:11:28 -0600 commented question X,Y and RGB data

I added 2 parts of my code. Thanks

2019-10-08 17:10:34 -0600 commented question X,Y and RGB data

crop_img = np_image[608:1195, 266:1137] cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 8

2019-10-08 17:09:58 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:09:45 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:08:56 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", crop_img

2019-10-08 17:08:41 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", crop_img

2019-10-08 17:08:00 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", crop_img

2019-10-08 17:07:41 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", crop_img)

2019-10-08 17:07:28 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:07:03 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:06:50 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", crop_img)

2019-10-08 17:06:13 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:05:46 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:05:16 -0600 commented question X,Y and RGB data

class image_converter: def __init__(self): '''Initialize ros publisher, ros subscriber''' # topic where we publ

2019-10-08 17:02:26 -0600 commented question X,Y and RGB data

class image_converter: def __init__(self): '''Initialize ros publisher, ros subscriber''' # topic where we publ

2019-10-08 17:01:58 -0600 commented question X,Y and RGB data

cv2.namedWindow("Image", cv2.WINDOW_NORMAL) cv2.resizeWindow("Image", 800, 1000) #cv2.imshow("Image", cr

2019-10-08 17:01:21 -0600 commented question X,Y and RGB data

np_image = np.array(cv_image, dtype=np.uint8) cv2.line(np_image, (562, 1185), (591, 1086), red, thickness=5) cv2.line(n

2019-10-08 16:59:11 -0600 commented question X,Y and RGB data

np_image = np.array(cv_image, dtype=np.uint8) cv2.line(np_image, (562, 1185), (591, 1086), red, thic

2019-10-08 16:58:49 -0600 commented question X,Y and RGB data

np_image = np.array(cv_image, dtype=np.uint8) cv2.line(np_image, (562, 1185), (591, 1086), red, thicknes

2019-10-08 16:58:22 -0600 commented question X,Y and RGB data

np_image = np.array(cv_image, dtype=np.uint8) cv2.line(np_image, (562, 1185), (591, 1086), red, thickness=5)

2019-10-08 16:56:02 -0600 commented question X,Y and RGB data

!/usr/bin/env python from __future__ import print_function from cv_bridge import CvBridge, CvBridgeError from sensor_m

2019-10-08 16:55:24 -0600 commented question X,Y and RGB data

!/usr/bin/env python from __future__ import print_function from cv_bridge import CvBridge, CvBridgeError from sensor_m

2019-10-08 10:32:29 -0600 asked a question X,Y and RGB data

X,Y and RGB data Hey, I got two cameras but somehow only one show a bar in the bottom with information of X,Y position