tool
Credits: id144
Did you ever needed to reduce the size of a point-cloud file without reducing the point count?
I've made this tool which shrinks the text file by removing arbitrary amount of fraction point digits, decreasing the precision as well.
After:
12.13 6.12 0.30 48 47 50
XYZPointcloudReduce [-n:0..9] input_file output_file
input_file Input point-cloud file containing space separated values as strings. Supported formats: ASC, XYZ, etc. input_file Output point-cloud file containing space separated values as strings.
-n:0..9 Specify the count of digits after decimal point, lower number results in lower file size. Default value is 3.
https://github.com/id144/XYZPointcloudReduce
anonymous user login
~2h ago
~6d ago
~6d ago
~7d ago
~20d ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
Cool!! can't open it though...it pops up a window but disappears in mil seconds..Tried to run it as an administrator but same..
@vasilis it's a console application :). use it from command line with command line arguments. i had a vvvv patch of this, but it was ugly and slow.
now comes the 1 million dollar question for the industry stuck with these things: why on earth you want to store millions of floating point numbers in plain text human readable format? what's the problem with binary format? if you need it in a start-string/end-string situation (like json or xml or a badly written communication protocol) why not code it in base64? it always puzzled me.
@microdee many softs like Pix4d or agisoft give you the option to save as binary... I think X Y Z is still used in plain text because for many surveyor aplication/tools still use that format as imput, Microsft Excel is still used :D
I would like to get any other tools for heavy pointcloud visualizations in vvvv
@andresc4 converting the pointcloud into dds and visualizing it is quite straight forward. later it would be cool to have some octree system to visualize even extra large (30M+) pointclouds.
this tools was made for services that have limit on maximum file size and work only with text pointclouds. :)
obviously, you want to compress the file when possible. 7z gave me the best results.
You should at least try to round the values instead of just truncating them, if you only use a few decimal digits the loss in accuracy could be rather significant depending on the data.
@if144 are you zipping rgb on one dds and xyz on a second dds , 2 filereaders and a shader like dx9 ?
@beyon sure, it does round the values, same function as FormatValue node.
converted to:
@andresc4 Yes, FileTexture and shaders. Many DX9 particle systems actually used bitmaps/textures to store the values. This one for example ciantparticles-16000000p-gpu-particle-system- -rotations. In DX11 shader, you would use Load function instead of SampleLevel to read the values from texture. But that is for another contribution ;)
I was so amazed when I saw Photosynt for the first time
I remember this post of 2012 https://discourse.vvvv.org/t/photosynth-pointcloud-successfully-imported-to-vvvv/8559/13
On the end of the post I said I was about to take pictures of a huge landmark
A few years latter Pix4d was popular, this is the result
http://amdrones.com/pointcloud2/amd/monumento.html
If a webbrowser can render that... why not vvvv? well, because im doing it so wrong :P
I will give it a try latter, thanks for your help, and btw, great contribution
@andresc4
Made a small test with pointcloud data stored in DDS. Loads and renders really fast and it's easy to control pointcount too!
particles-from-dds
For reconstructions I use RealityCapture, the sample is from project Forest which we made back in 2014.
1. I've exported photogrametric reconstruction into .XYZ pointcloud
2. In my tool I've added export to two binary files (.raw) (xyz coordinates stored as Single, rgb as bytes)
3. Opened the binary files in Photoshop using RAW import
4. Saved as DDS
5. Loaded as textures and connected to a custom particle shader.
For huge pointclouds it would be best to have LOD management, something like octree. (Potree for WebGL which you posted does have octree)
@id44 I just looked at your example numbers in your original post which looked like proper rounding wasn't used.
Also, I should have some dynamic plugins somewhere to convert plain-text point cloud files to texture inside vvvv if anyone is interested.