生活随笔
收集整理的這篇文章主要介紹了
IntelRealSense d415深度相机拍照制作数据集python脚本
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
IntelRealSense d415深度相機拍照制作數據集python腳本
最近想做一個陰影數據集,手上d415相機像素好一點,就用來調用拍照啦。
上源碼:
import pyrealsense2
as rs
import numpy
as np
import cv2
pipeline
= rs
.pipeline
()
config
= rs
.config
()
config
.enable_stream
(rs
.stream
.depth
, 1280, 720, rs
.format.z16
, 30)
config
.enable_stream
(rs
.stream
.color
, 1280, 720, rs
.format.bgr8
, 30)
pipeline
.start
(config
)
filePath
= "/home/qyt/DataSet/Shadow/"
id = "1"i
= 0
j
=0
while i
<=50:frames
= pipeline
.wait_for_frames
()color_frame
= frames
.get_color_frame
()color_image
= np
.asanyarray
(color_frame
.get_data
())cv2
.namedWindow
('MyD415')cv2
.imshow
('MyD415', color_image
)key
= cv2
.waitKey
(0)if i
< 10:imageName
= "shadow" + id + "_0" + str(i
) + ".jpg"else:imageName
= "shadow" + id + "_" + str(i
) + ".jpg"imagePath
= filePath
+ imageName
if key
& 0xFF == ord('q') or key
== 27:cv2
.destroyAllWindows
()pipeline
.stop
()breakelif key
== ord('s'): cv2
.imwrite
(imagePath
, color_image
)i
+= 1j
=j
+1print("iter:",j
,"i:", i
)
總結
以上是生活随笔為你收集整理的IntelRealSense d415深度相机拍照制作数据集python脚本的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。