herrDeng網內搜尋

自訂搜尋

Ads

2021年11月16日 星期二

用intel realsense2顯示depth, ir影格


 intel realsense2顯示depth, ir影格。參閱realsense2 SDK所附範例與intel網站https://dev.intelrealsense.com/docs/api-how-to。顯影部份採openCV,C++程式碼如下:(深度資訊來自ir的資訊,intel 的深度攝影機D435有左右ir顯影,有視角差,可修改程式兩個畫面同時呈現)


  1. #include <librealsense2/rs.hpp>
  2. #include <opencv2/opencv.hpp>
  3. using namespace rs2;
  4. using namespace cv;
  5. using namespace std;
  6.  
  7. int main(int argc, char** argv) try
  8. {
  9. cout << "顯示depth, ir影格。\n";
  10. colorizer color_map(0);
  11. /*著色的代碼如下
  12. 0 - Jet
  13. 1 - Classic
  14. 2 - WhiteToBlack
  15. 3 - BlackToWhite
  16. 4 - Bio
  17. 5 - Cold
  18. 6 - Warm
  19. 7 - Quantized
  20. 8 - Pattern
  21. 9 - Hue
  22. */
  23. pipeline pipe;
  24. config cfg;
  25. int w = 640, h = 360, FPS = 30;
  26. cfg.enable_stream(RS2_STREAM_INFRARED, w, h, RS2_FORMAT_Y8, FPS);
  27. cfg.enable_stream(RS2_STREAM_DEPTH, w, h, RS2_FORMAT_Z16, FPS);
  28. pipe.start(cfg);
  29. // Camera warmup - dropping several first frames to let auto-exposure stabilize
  30. frameset data;
  31. for (int i = 0; i < FPS; i++) data = pipe.wait_for_frames();
  32. while (1)
  33. {
  34. frameset data = pipe.wait_for_frames(); // Wait for next set of frames from the camera
  35. frame depth = data.get_depth_frame().apply_filter(color_map);
  36. frame ir = data.get_infrared_frame() ;
  37. int i = ir.get_frame_number();
  38.  
  39. // Create OpenCV matrix of size (w,h) from the data
  40. Mat depth_im(h, w, CV_8UC3, (void*)depth.get_data());
  41. Mat ir_im(h, w, CV_8UC1, (void*)ir.get_data());
  42.  
  43. applyColorMap(ir_im, ir_im, COLORMAP_JET);
  44. // Update the window with new data
  45. setWindowTitle("depth", "depth" + to_string(i));
  46. setWindowTitle("ir", "ir" + to_string(i));
  47. imshow("depth", depth_im);
  48. imshow("ir", ir_im);
  49.  
  50. int k = waitKey(1);
  51. if (k >0) break;
  52. }
  53. cv::destroyAllWindows();
  54. pipe.stop();
  55.  
  56. return 0;
  57. }
  58. catch (exception& e) {
  59. cerr << e.what();
  60. return 1;
  61. }

沒有留言:

Related Posts Plugin for WordPress, Blogger...

熱門文章