Questions tagged [e57]

The libE57 software is an open source implementation of the ASTM E2807 Standard Specification for 3D Imaging Data Exchange known as the E57 format in the C++ language.

The libE57 software is an open source implementation of the ASTM E2807 Standard Specification for 3D Imaging Data Exchange known as the E57 format in the C++ language.

The E57 file format is a compact, vendor-neutral format for storing point clouds, images, and metadata produced by 3D imaging systems, such as laser scanners.

The libE57 software consists of a library, supporting utilities and example programs, and documentation.

The software includes two separate application programming interfaces (APIs) for reading, writing, and manipulating E57 files - the Foundation API and the Simple API.

The Foundation API is a full-featured interface that operates at a relatively low-level, allowing control over all aspects of an E57 file, including custom extensions.

The Simple API is a simplified interface (built on top of the Foundation API) that supports the most common use cases for reading and writing E57 files.

9 questions
7
votes
0 answers

how to use LibE57 in a project

first of all I am a beginner with c++, my question is how to use e57 library ( that I got from the official Website ), I have tried almost every tutorial, and I have got different problems, i have tried to install boost, Xerces Eigen ... and Im…
1
vote
0 answers

PCD data needs to be converted in range which is understood by the OpenGL?

Context : We are working on the 3D modelling project where the lidar camera data is used to view 3D object on the Web Portal, the processing of the 3D model happens at the desktop CPP application. The Desktop CPP application is responsible for…
1
vote
0 answers

How to use e57xmldump.exe? (e57 to xml)

I have .e57 file. And I try to convert it to .xml file using e57xmldump.exe, which I downloaded from this site: http://www.libe57.org/data.html I drag and drop my .e57 file in e57xmldump.exe. Then it's running in a terminal, doing some operations.…
Ihor Kram
  • 41
  • 5
1
vote
0 answers

Download point cloud as e57 from ROS topic

I am currently working with point clouds in Gazebo and when trying to download the point cloud information it downloads as a PCD file. Do others with more experience have any tips for getting this information in a more standardized form?
GazzaB
  • 11
  • 1
0
votes
0 answers

Creating Vuforia - Area Targets failed - E57 shall contain one or more Image2D structures

so i am trying to create an Area Target with the "Vuforia Area Target Generator" for Unity3d.Therefore i need a e57-file containing the scanned PointCloud. Im getting this error: E57 processing: Validation of the E57 file failed. [ FAIL ] E57…
Moritz
  • 1
0
votes
1 answer

open3d voxel_size too small : down sampling not working for e57 binaries

I'm trying to downsample a point cloud. I have 2 data formats for different parts of my data. The .bin files cause no problems, but when I'm trying to downsample the .e57 files I encounter a strange problem. Here's what I do: import numpy as…
0
votes
0 answers

libe57 read file 65536 points

I compiled the libe57 in order to use it in my project. I did it and now I'm trying to use it. (I'm on windows 10 x64) Basing on this tutorial, I did this int main(int argc, char** argv) { char sFile[] = "PTX/file.e57"; _bstr_t bsFile =…
Raph Schim
  • 528
  • 7
  • 30
0
votes
1 answer

Can I read a point clouds from a .e57 files without any library?

The libE57 is okay but I have to try to do this without any library. I found presentation and there I found next: Binary Encoding Blobs : Opaque encoding Images, user-defined data .... "Opaque encoding" means that I can't read .e57 without…
v.slobodzian
  • 453
  • 6
  • 16
0
votes
2 answers

changing locals for all io on a c++ code

I am using e57 library (http://www.libe57.org/) and I have a e57 data set that I can read them correctly, when the decimal point in windows is set to '.', but on a system that decimal point is ',', it doesn't work properly (for example on windows…
mans
  • 17,104
  • 45
  • 172
  • 321