Point Cloud Library (PCL)
1.7.1
Main Page
Modules
Namespaces
Classes
common
include
pcl
common
file_io.h
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Point Cloud Library (PCL) - www.pointclouds.org
5
* Copyright (c) 2010, Willow Garage, Inc.
6
* Copyright (c) 2012-, Open Perception, Inc.
7
*
8
* All rights reserved.
9
*
10
* Redistribution and use in source and binary forms, with or without
11
* modification, are permitted provided that the following conditions
12
* are met:
13
*
14
* * Redistributions of source code must retain the above copyright
15
* notice, this list of conditions and the following disclaimer.
16
* * Redistributions in binary form must reproduce the above
17
* copyright notice, this list of conditions and the following
18
* disclaimer in the documentation and/or other materials provided
19
* with the distribution.
20
* * Neither the name of the copyright holder(s) nor the names of its
21
* contributors may be used to endorse or promote products derived
22
* from this software without specific prior written permission.
23
*
24
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35
* POSSIBILITY OF SUCH DAMAGE.
36
*
37
*/
38
39
#ifndef PCL_COMMON_FILE_IO_H_
40
#define PCL_COMMON_FILE_IO_H_
41
42
#include <iostream>
43
#ifndef _WIN32
44
#include <dirent.h>
45
#endif
46
#include <vector>
47
#include <algorithm>
48
49
/**
50
* \file pcl/common/file_io.h
51
* Define some helper functions for reading and writing files
52
* \ingroup common
53
* \todo move this to pcl::console
54
*/
55
56
/*@{*/
57
namespace
pcl
58
{
59
/** \brief Find all *.pcd files in the directory and return them sorted
60
* \param directory the directory to be searched
61
* \param file_names the resulting (sorted) list of .pcd files
62
*/
63
inline
void
64
getAllPcdFilesInDirectory
(
const
std::string& directory, std::vector<std::string>& file_names);
65
66
/** \brief Remove the path from the given string and return only the filename (the remaining string after the
67
* last '/')
68
* \param input the input filename (with full path)
69
* \return the resulting filename, stripped of the path
70
*/
71
inline
std::string
72
getFilenameWithoutPath
(
const
std::string& input);
73
74
/** \brief Remove the extension from the given string and return only the filename (everything before the last '.')
75
* \param input the input filename (with the file extension)
76
* \return the resulting filename, stripped of its extension
77
*/
78
inline
std::string
79
getFilenameWithoutExtension
(
const
std::string& input);
80
81
/** \brief Get the file extension from the given string (the remaining string after the last '.')
82
* \param input the input filename
83
* \return \a input 's file extension
84
*/
85
inline
std::string
86
getFileExtension
(
const
std::string& input);
87
}
// namespace end
88
/*@}*/
89
#include <pcl/common/impl/file_io.hpp>
90
91
#endif //#ifndef PCL_FILE_IO_H_