-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Align depth to color #2534
Comments
Hi @nawara72 |
[Realsense Customer Engineering Team Comment] |
@dorodnic |
[Realsense Customer Engineering Team Comment] You can try to use the code like below to read the depth raw file. fp = fopen(fileName, "rb"); |
Hi I have no trouble reading a png depth image into a cv::Mat. The issue is how can I pass that depth cv::Mat to the synthetic sensor's depth frame similiar to the rs_softawre-device example? I would also appreciate any info u can give me on the raw format. I only have png depth images which I convert to raw but I am guessing the raw format is different in realsense. Thanks again for your help, really appreciate it |
[Realsense Customer Engineering Team Comment] The ".RAW" data layout is according to the UVC spec for the depth stream. |
[Realsense Customer Engineering Team Comment] Still need support for this topic? |
@RealSense-Customer-Engineering |
Hi
I have some depth and color images (both in png format) saved from D435. I would like to align the depth image to the color image. I have all the intrinsics, extrinsic parameters. I studied the rs_align example, but couldn't figure out how to pass in the png images to align them.
I also studied the software_device example and was wondering is there a way to pass a depth png format to the custom_frame_source as a depth frame (I don't have the raw data), cause then that will simplify things for me and i can use rs_align way easily.
Would really appreciate your help
The text was updated successfully, but these errors were encountered: