Realsense D435i通过opencv调用摄像头too many indices for array: array is 2-dimensional, but 3 were indexed

最近在使用Intel Realsense D435i深度相机,调用部分代码如图:

 

cap = cv2.VideoCapture(1)
index = 0
while True:
    img = cap.read()
    data_preds, img_ret = pose_landmark(box_model, pose_model, img[1])
    save_path = save_root + '\image-' + str(index) + '.json'
    ret_path = ret_root + '\image-' + str(index) + '.json'
    np.savetxt(save_path, data_preds, fmt='%0.8f', delimiter='\t')
    subprocess.run( [program_exe, target_model, intrinsic, save_path, ret_path])
    cv2.imshow('imshow', img_ret)
    index = index + 1
    k = cv2.waitKey(1)
    if k == 27:
        cv2.destroyAllWindows()
        break

出现错误为:

原因是调用的不是d435i的RGB相机,

更改为cap = cv2.VideoCapture(2)即可。

可在终端使用 ls /dev/video* 查看相机端口:

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值