Kinect Depth Image and Rasterization for GIS program

7 ビュー (過去 30 日間)
condor3420
condor3420 2016 年 10 月 24 日
編集済み: ErCondor 2016 年 10 月 26 日
Hello everyone,
I want to transform the depth image that I got from my Kinect V2 (one frame of the scanned object), and turn it into a readable GIS format as .tiff or other common file type.
That would be somehow possible? Cheers

回答 (2 件)

KSSV
KSSV 2016 年 10 月 24 日

ErCondor
ErCondor 2016 年 10 月 26 日
編集済み: ErCondor 2016 年 10 月 26 日
The object that I'm trying to analyse (the yellow rectangle) is not showing the objects that are on the top of it (it's a rough surface). How can I get around this problem?
Basically that's my code:
depthDevice = imaq.VideoDevice('kinect',2)
step(depthDevice);
depthImage = step(depthDevice);
xyzPoints = depthToPointCloud(depthImage,depthDevice);
pcshow(xyzPoints,'VerticalAxis','y','VerticalAxisDir','down');
xlabel('X (m)');
ylabel('Y (m)');
zlabel('Z (m)');
release(depthDevice);
and then I'm exporting the model with
dlmwrite(image.tif, depthImage)

タグ

タグが未入力です。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by