Open3D (C++ API)  0.18.0+5c982c7
FeatureIO.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - Open3D: www.open3d.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2023 www.open3d.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 #include <string>
11 
13 
14 namespace open3d {
15 namespace io {
16 
19 bool ReadFeature(const std::string &filename,
20  pipelines::registration::Feature &feature);
21 
24 bool WriteFeature(const std::string &filename,
25  const pipelines::registration::Feature &feature);
26 
27 bool ReadFeatureFromBIN(const std::string &filename,
28  pipelines::registration::Feature &feature);
29 
30 bool WriteFeatureToBIN(const std::string &filename,
31  const pipelines::registration::Feature &feature);
32 
33 } // namespace io
34 } // namespace open3d
bool WriteFeatureToBIN(const std::string &filename, const pipelines::registration::Feature &feature)
Definition: FileBIN.cpp:73
bool ReadFeatureFromBIN(const std::string &filename, pipelines::registration::Feature &feature)
Definition: FileBIN.cpp:60
bool WriteFeature(const std::string &filename, const pipelines::registration::Feature &feature)
Definition: FeatureIO.cpp:21
bool ReadFeature(const std::string &filename, pipelines::registration::Feature &feature)
Definition: FeatureIO.cpp:16
Definition: PinholeCameraIntrinsic.cpp:16