Ask Your Question

pipeline0's profile - activity

2018-12-29 16:02:22 -0600 received badge  Student (source)
2018-05-10 14:35:21 -0600 commented question C++ read rgb+depth images sequentially

Hi, i used a dataset that you download from http://rgbd-dataset.cs.washington.edu/dataset/rgbd-scenes/ Otherwise you can

2018-05-08 08:08:49 -0600 marked best answer C++ read rgb+depth images sequentially

Hi, i have a dataset that contains 250 rgb and depth images. Every rgb image has a depth image, like this: img_1.png, img_1_depth.png, img_2.png, img_2_depth.png ... and so on.

I would read rgb image + depth image and save the associated point cloud on pcd file. I read like this:

cv::Mat input_rgb = cv::imread("src/dataset-path/img_1.png", cv::IMREAD_COLOR);
cv::Mat input_depth = cv::imread("src/dataset-path/image_1_depth.png", cv::IMREAD_ANYDEPTH);

but i can't read, with for loop , every images sequentially.

How can i do?

Thanks!

2018-05-07 08:51:49 -0600 commented answer C++ read rgb+depth images sequentially

Thanks for suggests!

2018-05-07 08:51:48 -0600 commented question C++ read rgb+depth images sequentially

Thank you, it works for me.

2018-05-03 02:53:29 -0600 asked a question C++ read rgb+depth images sequentially

C++ read rgb+depth images sequentially Hi, i have a dataset that contains 250 rgb and depth images. Every rgb image has