44 #include <pcl/common/io.h>
45 #include <pcl/io/file_io.h>
46 #include <pcl/io/ply/ply_parser.h>
47 #include <pcl/PolygonMesh.h>
90 : origin_ (
Eigen::Vector4f::Zero ())
91 , orientation_ (
Eigen::Matrix3f::Identity ())
95 : origin_ (
Eigen::Vector4f::Zero ())
96 , orientation_ (
Eigen::Matrix3f::Identity ())
107 orientation_ = p.orientation_;
108 range_grid_ = p.range_grid_;
109 polygons_ = p.polygons_;
138 Eigen::Vector4f &origin, Eigen::Quaternionf &orientation,
139 int &ply_version,
int &data_type,
unsigned int &data_idx,
const int offset = 0)
override;
155 Eigen::Vector4f &origin, Eigen::Quaternionf &orientation,
int& ply_version,
const int offset = 0)
override;
170 Eigen::Vector4f origin;
171 Eigen::Quaternionf orientation;
173 return read (file_name, cloud, origin, orientation, ply_version, offset);
185 template<
typename Po
intT>
inline int
191 ply_version, offset);
215 Eigen::Vector4f &origin, Eigen::Quaternionf &orientation,
216 int& ply_version,
const int offset = 0);
235 parse (
const std::string& istream_filename);
243 infoCallback (
const std::string& filename, std::size_t line_number,
const std::string& message)
245 PCL_DEBUG (
"[pcl::PLYReader] %s:%lu: %s\n", filename.c_str (), line_number, message.c_str ());
254 warningCallback (
const std::string& filename, std::size_t line_number,
const std::string& message)
256 PCL_WARN (
"[pcl::PLYReader] %s:%lu: %s\n", filename.c_str (), line_number, message.c_str ());
265 errorCallback (
const std::string& filename, std::size_t line_number,
const std::string& message)
267 PCL_ERROR (
"[pcl::PLYReader] %s:%lu: %s\n", filename.c_str (), line_number, message.c_str ());
274 std::tuple<std::function<void ()>, std::function<void ()> >
275 elementDefinitionCallback (
const std::string& element_name, std::size_t count);
278 endHeaderCallback ();
284 template <
typename ScalarType> std::function<void (ScalarType)>
285 scalarPropertyDefinitionCallback (
const std::string& element_name,
const std::string& property_name);
291 template <
typename SizeType,
typename ScalarType>
292 std::tuple<std::function<void (SizeType)>, std::function<void (ScalarType)>, std::function<void ()> >
293 listPropertyDefinitionCallback (
const std::string& element_name,
const std::string& property_name);
298 template <
typename SizeType>
void
299 vertexListPropertyBeginCallback (
const std::string& property_name, SizeType size);
304 template <
typename ContentType>
void
305 vertexListPropertyContentCallback (ContentType value);
309 vertexListPropertyEndCallback ();
315 template<
typename Scalar>
void
316 vertexScalarPropertyCallback (Scalar value);
345 originXCallback (
const float& value) { origin_[0] = value; }
351 originYCallback (
const float& value) { origin_[1] = value; }
357 originZCallback (
const float& value) { origin_[2] = value; }
363 orientationXaxisXCallback (
const float& value) { orientation_ (0,0) = value; }
369 orientationXaxisYCallback (
const float& value) { orientation_ (0,1) = value; }
375 orientationXaxisZCallback (
const float& value) { orientation_ (0,2) = value; }
381 orientationYaxisXCallback (
const float& value) { orientation_ (1,0) = value; }
387 orientationYaxisYCallback (
const float& value) { orientation_ (1,1) = value; }
393 orientationYaxisZCallback (
const float& value) { orientation_ (1,2) = value; }
399 orientationZaxisXCallback (
const float& value) { orientation_ (2,0) = value; }
405 orientationZaxisYCallback (
const float& value) { orientation_ (2,1) = value; }
411 orientationZaxisZCallback (
const float& value) { orientation_ (2,2) = value; }
417 cloudHeightCallback (
const int &height) { cloud_->height = height; }
423 cloudWidthCallback (
const int &width) { cloud_->width = width; }
430 template<
typename Scalar>
void
431 appendScalarProperty (
const std::string& name,
const std::size_t& count = 1);
442 amendProperty (
const std::string& old_name,
const std::string& new_name, std::uint8_t datatype = 0);
446 vertexBeginCallback ();
450 vertexEndCallback ();
454 rangeGridBeginCallback ();
470 rangeGridVertexIndicesEndCallback ();
474 rangeGridEndCallback ();
478 objInfoCallback (
const std::string& line);
482 faceBeginCallback ();
498 faceVertexIndicesEndCallback ();
505 Eigen::Vector4f origin_;
508 Eigen::Matrix3f orientation_;
512 std::size_t vertex_count_{0};
513 int vertex_offset_before_{0};
515 std::vector<std::vector <int> > *range_grid_{
nullptr};
516 std::size_t rgb_offset_before_{0};
517 bool do_resize_{
false};
519 std::vector<pcl::Vertices> *polygons_{
nullptr};
525 std::int32_t r_{0}, g_{0}, b_{0};
527 std::uint32_t a_{0}, rgba_{0};
554 const Eigen::Vector4f &origin,
555 const Eigen::Quaternionf &orientation,
557 bool use_camera =
true)
559 return (generateHeader (cloud, origin, orientation,
true, use_camera, valid_points));
573 const Eigen::Vector4f &origin,
574 const Eigen::Quaternionf &orientation,
576 bool use_camera =
true)
578 return (generateHeader (cloud, origin, orientation,
false, use_camera, valid_points));
592 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
593 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
595 bool use_camera =
true);
606 const Eigen::Vector4f& origin = Eigen::Vector4f::Zero (),
const Eigen::Quaternionf& orientation= Eigen::Quaternionf::Identity (),
607 bool use_camera=
true);
619 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
620 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
621 bool use_camera =
true);
633 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
634 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
635 const bool binary =
false)
override
638 return (this->writeBinary (file_name, cloud, origin, orientation,
true));
639 return (this->writeASCII (file_name, cloud, origin, orientation, 8,
true));
654 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
655 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
657 bool use_camera =
true)
660 return (this->writeBinary (file_name, cloud, origin, orientation, use_camera));
661 return (this->writeASCII (file_name, cloud, origin, orientation, 8, use_camera));
676 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
677 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
679 bool use_camera =
true)
681 return (
write (file_name, *cloud, origin, orientation, binary, use_camera));
692 template<
typename Po
intT>
inline int
693 write (
const std::string &file_name,
696 bool use_camera =
true)
705 return (this->
write (file_name, blob, origin, orientation, binary, use_camera));
715 const Eigen::Vector4f &origin,
716 const Eigen::Quaternionf &orientation,
722 writeContentWithCameraASCII (
int nr_points,
724 const Eigen::Vector4f &origin,
725 const Eigen::Quaternionf &orientation,
729 writeContentWithRangeGridASCII (
int nr_points,
731 std::ostringstream& fs,
732 int& nb_valid_points);
750 return (p.
read (file_name, cloud));
763 Eigen::Vector4f &origin, Eigen::Quaternionf &orientation)
767 return (p.
read (file_name, cloud, origin, orientation, ply_version));
775 template<
typename Po
intT>
inline int
779 return (p.
read (file_name, cloud));
795 return (p.
read (file_name, mesh));
809 const Eigen::Vector4f &origin = Eigen::Vector4f::Zero (),
810 const Eigen::Quaternionf &orientation = Eigen::Quaternionf::Identity (),
811 bool binary_mode =
false,
bool use_camera =
true)
814 return (w.
write (file_name, cloud, origin, orientation, binary_mode, use_camera));
824 template<
typename Po
intT>
inline int
828 return (w.
write<
PointT> (file_name, cloud, binary_mode));
837 template<
typename Po
intT>
inline int
841 return (w.
write<
PointT> (file_name, cloud,
false));
849 template<
typename Po
intT>
inline int
863 template<
typename Po
intT>
int
872 return (w.
write<
PointT> (file_name, cloud_out, binary_mode));
Point Cloud Data (FILE) file format reader interface.
Point Cloud Data (FILE) file format writer.
Point Cloud Data (PLY) file format reader.
int read(const std::string &file_name, pcl::PCLPointCloud2 &cloud, const int offset=0)
Read a point cloud data from a PLY file and store it into a pcl/PCLPointCloud2.
int read(const std::string &file_name, pcl::PointCloud< PointT > &cloud, const int offset=0)
Read a point cloud data from any PLY file, and convert it to the given template format.
int read(const std::string &file_name, pcl::PolygonMesh &mesh, const int offset=0)
Read a point cloud data from a PLY file and store it into a pcl/PolygonMesh.
int read(const std::string &file_name, pcl::PCLPointCloud2 &cloud, Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &ply_version, const int offset=0) override
Read a point cloud data from a PLY file and store it into a pcl/PCLPointCloud2.
PLYReader(const PLYReader &p)
int readHeader(const std::string &file_name, pcl::PCLPointCloud2 &cloud, Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &ply_version, int &data_type, unsigned int &data_idx, const int offset=0) override
Read a point cloud data header from a PLY file.
int read(const std::string &file_name, pcl::PolygonMesh &mesh, Eigen::Vector4f &origin, Eigen::Quaternionf &orientation, int &ply_version, const int offset=0)
Read a point cloud data from a PLY file and store it into a pcl/PolygonMesh.
Point Cloud Data (PLY) file format writer.
std::string generateHeaderBinary(const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin, const Eigen::Quaternionf &orientation, int valid_points, bool use_camera=true)
Generate the header of a PLY v.7 file format.
int write(const std::string &file_name, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), bool binary=false, bool use_camera=true)
Save point cloud data to a PLY file containing n-D points.
int writeBinary(const std::string &file_name, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), bool use_camera=true)
Save point cloud data to a PLY file containing n-D points, in BINARY format.
~PLYWriter() override=default
Destructor.
int write(const std::string &file_name, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), const bool binary=false) override
Save point cloud data to a PLY file containing n-D points.
int write(const std::string &file_name, const pcl::PointCloud< PointT > &cloud, bool binary=false, bool use_camera=true)
Save point cloud data to a PLY file containing n-D points.
int writeBinary(std::ostream &os, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), bool use_camera=true)
Save point cloud data to a std::ostream containing n-D points, in BINARY format.
int write(const std::string &file_name, const pcl::PCLPointCloud2::ConstPtr &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), bool binary=false, bool use_camera=true)
Save point cloud data to a PLY file containing n-D points.
std::string generateHeaderASCII(const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin, const Eigen::Quaternionf &orientation, int valid_points, bool use_camera=true)
Generate the header of a PLY v.7 file format.
int writeASCII(const std::string &file_name, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), int precision=8, bool use_camera=true)
Save point cloud data to a PLY file containing n-D points, in ASCII format.
PLYWriter()=default
Constructor.
PointCloud represents the base class in PCL for storing collections of 3D points.
Eigen::Quaternionf sensor_orientation_
Sensor acquisition pose (rotation).
Eigen::Vector4f sensor_origin_
Sensor acquisition pose (origin/translation).
Class ply_parser parses a PLY file and generates appropriate atomic parsers for the body.
#define PCL_MAKE_ALIGNED_OPERATOR_NEW
Macro to signal a class requires a custom allocator.
void copyPointCloud(const pcl::PointCloud< PointInT > &cloud_in, pcl::PointCloud< PointOutT > &cloud_out)
Copy all the fields from a given point cloud into a new point cloud.
int savePLYFileBinary(const std::string &file_name, const pcl::PointCloud< PointT > &cloud)
Templated version for saving point cloud data to a PLY file containing a specific given cloud format.
int savePLYFileASCII(const std::string &file_name, const pcl::PointCloud< PointT > &cloud)
Templated version for saving point cloud data to a PLY file containing a specific given cloud format.
int loadPLYFile(const std::string &file_name, pcl::PCLPointCloud2 &cloud)
Load a PLY v.6 file into a PCLPointCloud2 type.
int savePLYFile(const std::string &file_name, const pcl::PCLPointCloud2 &cloud, const Eigen::Vector4f &origin=Eigen::Vector4f::Zero(), const Eigen::Quaternionf &orientation=Eigen::Quaternionf::Identity(), bool binary_mode=false, bool use_camera=true)
Save point cloud data to a PLY file containing n-D points.
Defines functions, macros and traits for allocating and using memory.
void read(std::istream &stream, Type &value)
Function for reading data from a stream.
void fromPCLPointCloud2(const pcl::PCLPointCloud2 &msg, pcl::PointCloud< PointT > &cloud, const MsgFieldMap &field_map, const std::uint8_t *msg_data)
Convert a PCLPointCloud2 binary data blob into a pcl::PointCloud<T> object using a field_map.
void toPCLPointCloud2(const pcl::PointCloud< PointT > &cloud, pcl::PCLPointCloud2 &msg, bool padding)
Convert a pcl::PointCloud<T> object to a PCLPointCloud2 binary data blob.
IndicesAllocator<> Indices
Type used for indices in PCL.
void write(std::ostream &stream, Type value)
Function for writing data to a stream.
Defines all the PCL and non-PCL macros used.
shared_ptr< const ::pcl::PCLPointCloud2 > ConstPtr
A point structure representing Euclidean xyz coordinates, and the RGB color.