# Unable to save point cloud 3d data video

**URL:** https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024
**Category:** Electronics (Arduino, etc.)
**Created:** [August 27, 2018, 3:46pm UTC](https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024 "2018-08-27T15:46:35Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![vivekbarsaiyan](https://avatars.discourse-cdn.com/v4/letter/v/d6d6ee/32.png) [@vivekbarsaiyan](https://discourse.processing.org/u/vivekbarsaiyan)
#### Post date: [August 27, 2018, 3:46pm UTC](https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024/1 "2018-08-27T15:46:35Z")

</div>

I AM USING LIDAR SENSOR FOR CREATING POINT CLOUD BY INTERFACING WITH ARDUINO UNO BOARD AND PROCESSING I3 SOFTWARE BUT UNABLE TO SAVE THE 3D OUTPUT POINT CLOUD VIDEO DATA. MEAN WHILE I TRIED FOR SAVING EACH POINT CLOUD AS FRAME BY USING SYNTAX “saveFrame(“output/filename\_####.png”);” or other formats like .tif , .tga and then converting them into video by movie maker tool but its not 3d view , its only the merging of all the images in a long shot , but unable to save as full 3d output video.

---

<div class="post-metadata">

### Author: ![kfrajer](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/kfrajer/32/196_2.png) [@kfrajer](https://discourse.processing.org/u/kfrajer)
#### Post date: [August 27, 2018, 5:36pm UTC](https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024/2 "2018-08-27T17:36:38Z")

</div>

> [@vivekbarsaiyan](#):
>
> unable to save as full 3d output video

What are you trying to do? Are you trying to merge your depth data with the image and outputing it as a video?

You need to describe the system that you are using in detail. You will need to provide your code to show your approach and describe the output you are getting vs. the output that you want to see. Notice that if you are using an external library, then your first point of contact would be the owner of that library.

Kf

---

<div class="post-metadata">

### Author: ![vivekbarsaiyan](https://avatars.discourse-cdn.com/v4/letter/v/d6d6ee/32.png) [@vivekbarsaiyan](https://discourse.processing.org/u/vivekbarsaiyan)
#### Post date: [August 28, 2018, 6:53am UTC](https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024/3 "2018-08-28T06:53:27Z")

</div>

PFA

 ![Capture%2013%20hours](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/2X/7/78bc41639711defbaef82f94c7025e00b2c924c2.png)  
THIS IS THE SCREEN SHOT OF A 3D POINT CLOUD BUT I WANT 3D FULL VERSION i.e when i rotate it i want the different angle view but that thing i m not able to save . I MADE ONE CAMERA VIDEO VERSION FOR THAT 3D OUTPUT … PLEASE TELL ME HOW TO SHOW THAT TO YOU, BECAUSE HERE ONLY .PNG .JPG .JPEG FORMATE WE CAN UPLOAD BUT NOT THE .MP4 FORMAT

---

<div class="post-metadata">

### Author: ![MxFxM](https://avatars.discourse-cdn.com/v4/letter/m/71e660/32.png) [@MxFxM](https://discourse.processing.org/u/MxFxM)
#### Post date: [August 28, 2018, 7:36am UTC](https://discourse.processing.org/t/unable-to-save-point-cloud-3d-data-video/3024/4 "2018-08-28T07:36:19Z")

</div>

Hi,

> [@vivekbarsaiyan](#):
>
> PLEASE TELL ME HOW TO SHOW THAT TO YOU

upload to YT and share a link with description.

Do you want to be able to modify the output with a different program like Blender? Then you have to save your 3D points in a data format that can be opened by such programs. Don’t ask me how exactly that works but in essence it will be 1s and 0s so it should be possible.

Do you want to save a file that you can open again in Processing but contains 3D data? Try the

```auto
saveStrings();

```

function. Save each point as a seperate line with this format:  
x\_pos y\_pos z\_pos  
You will be able to read the file again and then seperate at each " ".
