libE57Format
libE57Format copied to clipboard
Library for reading & writing the E57 file format
I'm very interested in using this project, I'm having difficulty setting it up, e.g correct file paths, linkers etc It would incredible if there was some documentation/video on the setup/installation...
I'm using `libE57Format` through [pye57](https://github.com/davidcaron/pye57) and noticed that `E57_ERROR_OPEN_FAILED` is raised for any error, including standard cases such as: * `no such file or directory` * `permission denied` * `too...
In testing we noticed that E57 files are not completely deterministic. Turns out to be due to random GUIDs generated at the file and Data3D scope. This change is necesssary...
One of the things of interest with E57 is the possibility of reading portions of a point cloud. Ideally we wouldn't need to read from start to end, when only...
For accepting E57 data in automated processing, it would be awesome if libE57Format could offer a simple way to verify (the checsums of) an entire file with a simple function...
i have points(for example PCD datas) and imgs ,how can i write them into e57 format files ,is there anyone can give a demo code ,thank you !
I was just looking over some code and ran across this in **SourceDestBufferImpl.cpp**: ```cpp void SourceDestBufferImpl::setNextInt64( int64_t value ) { ... case E57_BOOL: *reinterpret_cast( p ) = ( value ?...
An exception "Unknown error" is thrown, when trying to read from (or writing to) a file, which name includes mutated vowels/umlauts like ä,ö,ü. Maybe even other characters, but those are...
Hello, Some e57 files contain 2D images with their different elements. However, it can happen that these 2D images are not present inside the e57 but generated outside. These images...
I am working with e57 file format and PCL: https://github.com/dogod621/E57Converter but I do not like to install a lot of dependency library when building the project, so I use Xerces-C...