Sandesh Kumar S
- Total activity 33
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Comments
Recent activity by Sandesh Kumar S-
MartyG Thanks a lot for your help I was able to convert the cv mat frame to rs2::frame using the software device and syncer class. Now in my application I am exploring the python wrapper for realse...
-
Hi MartyG while trying to declare the depth_sensor variable I am getting the following error. error: no matching function for call to ‘rs2::software_sensor::software_sensor()’rs2::software_sensor ...
-
No that method of conversion mentioned in issue 2634 requires the rs2 depth frame to be sent to the processing block as the rs2 frame source. I do not have access to the rs2 depth frame to serve as...
-
Hi MartyG with just the pointer to the depth frame data, how can I construct a rs2::depth_frame ? I cannot use a processing block or a software_device as in my application I do not have the source ...
-
I do not want to create a custom frameset. I want to re-create a rs2::depth_frame from the bytes data of the frame. Also I wanted to understand if there is any API to query the max width, height an...
-
The get_data() member function of the rs2::frame class retrieves data from frame handle. In an application I want to send this data over a message bus. Now at the other end of the application I wan...
-
I have read a depth frame from the RealSense camera and converted it to cv mat format. Now I trying to encode this depth frame by applying jpeg compression using cv imencode and later decode it usi...
-
Consider the following line of code : rs2::video_frame color = data.get_color_frame(); Here the first color frame is returned. Is it possible to create a buffer using malloc and pass the buffer to ...
-
Does RealSense camera allow the user to pass a single allocated buffer to the RealSense APIs which can fill both the color and depth frame data ?
-
Thanks for the quick response