Advertisement

Realsense之将深度与颜色对齐

阅读量:
复制代码
 ## License: Apache 2.0. See LICENSE file in root directory.

    
 ## Copyright(c) 2017 Intel Corporation. All Rights Reserved.
    
  
    
 #####################################################
    
 ##              将深度与颜色对齐               ##
    
 #####################################################
    
  
    
 # 首先导入库
    
 import pyrealsense2 as rs
    
 # 导入Numpy以便于数组操作
    
 import numpy as np
    
 # 导入OpenCV以便于图像渲染
    
 import cv2
    
  
    
 # 创建一个管道
    
 pipeline = rs.pipeline()
    
  
    
 # Create a config并配置要流​​式传输的管道
    
 # 颜色和深度流的不同分辨率
    
 config = rs.config()

全部评论 (0)

还没有任何评论哟~