日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

用python开启相机_如何用Python打开realsenseD435相机并获取相机参数

發布時間:2024/7/5 python 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用python开启相机_如何用Python打开realsenseD435相机并获取相机参数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

如何用Python打開realsenseD435相機

import pyrealsense2 as rs

import numpy as np

import cv2

if __name__ == "__main__":

# Configure depth and color streams

pipeline = rs.pipeline()

config = rs.config()

config.enable_device_from_file("666.bag")#這是打開相機錄制的視頻

# config.enable_stream(rs.stream.depth, 640, 480, rs.format.z16, 30)這是打開相機

#config.enable_stream(rs.stream.color, 640, 480, rs.format.bgr8, 30)

# Start streaming

pipeline.start(config)

try:

while True:

# Wait for a coherent pair of frames: depth and color

frames = pipeline.wait_for_frames()

depth_frame = frames.get_depth_frame()

color_frame = frames.get_color_frame()

if not depth_frame or not color_frame:

continue

# Convert images to numpy arrays

depth_image = np.asanyarray(depth_frame.get_data())

color_image = np.asanyarray(color_frame.get_data())

# Apply colormap on depth image (image must be converted to 8-bit per pixel first)

depth_colormap = cv2.applyColorMap(cv2.convertScaleAbs(depth_image, alpha=0.03), cv2.COLORMAP_JET)

# Stack both images horizontally

images = np.hstack((color_image, depth_colormap))

# Show images

cv2.namedWindow('RealSense', cv2.WINDOW_AUTOSIZE)

cv2.imshow('RealSense', images)

key = cv2.waitKey(1)

# Press esc or 'q' to close the image window

if key & 0xFF == ord('q') or key == 27:

cv2.destroyAllWindows()

break

finally:

# Stop streaming

pipeline.stop()

如何用Python獲取深度相機參數

pipeline = rs.pipeline()

config = rs.config()

config.enable_stream(rs.stream.depth, 640, 480, rs.format.z16, 30)

config.enable_stream(rs.stream.color, 640, 480, rs.format.bgr8, 30)

pipeline.start(config)

# 創建對齊對象(深度對齊顏色)

align = rs.align(rs.stream.color)

try:

while True:

frames = pipeline.wait_for_frames()

# 獲取對齊幀集

aligned_frames = align.process(frames)

# 獲取對齊后的深度幀和彩色幀

aligned_depth_frame = aligned_frames.get_depth_frame()

color_frame = aligned_frames.get_color_frame()

# 獲取顏色幀內參

color_profile = color_frame.get_profile()

cvsprofile = rs.video_stream_profile(color_profile)

color_intrin = cvsprofile.get_intrinsics()

color_intrin_part = [color_intrin.ppx, color_intrin.ppy, color_intrin.fx, color_intrin.fy]

print(color_intrin_part)

# [318.48199462890625, 241.16720581054688, 616.5906372070312, 616.7650146484375]

if not aligned_depth_frame or not color_frame:

continue

finally:

pipeline.stop()

總結

以上是生活随笔為你收集整理的用python开启相机_如何用Python打开realsenseD435相机并获取相机参数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。