Point Cloud Library (PCL)
1.7.0
|
00001 /* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Point Cloud Library (PCL) - www.pointclouds.org 00005 * Copyright (c) 2010, Willow Garage, Inc. 00006 * Copyright (c) 2012-, Open Perception, Inc. 00007 * 00008 * All rights reserved. 00009 * 00010 * Redistribution and use in source and binary forms, with or without 00011 * modification, are permitted provided that the following conditions 00012 * are met: 00013 * 00014 * * Redistributions of source code must retain the above copyright 00015 * notice, this list of conditions and the following disclaimer. 00016 * * Redistributions in binary form must reproduce the above 00017 * copyright notice, this list of conditions and the following 00018 * disclaimer in the documentation and/or other materials provided 00019 * with the distribution. 00020 * * Neither the name of the copyright holder(s) nor the names of its 00021 * contributors may be used to endorse or promote products derived 00022 * from this software without specific prior written permission. 00023 * 00024 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00025 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00026 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00027 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00028 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00029 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00030 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00031 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00032 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00033 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00034 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00035 * POSSIBILITY OF SUCH DAMAGE. 00036 * 00037 */ 00038 00039 #ifndef PCL_COMMON_FILE_IO_H_ 00040 #define PCL_COMMON_FILE_IO_H_ 00041 00042 #include <iostream> 00043 #ifndef _WIN32 00044 #include <dirent.h> 00045 #endif 00046 #include <vector> 00047 #include <algorithm> 00048 00049 /** 00050 * \file pcl/common/file_io.h 00051 * Define some helper functions for reading and writing files 00052 * \ingroup common 00053 * \todo move this to pcl::console 00054 */ 00055 00056 /*@{*/ 00057 namespace pcl 00058 { 00059 /** \brief Find all *.pcd files in the directory and return them sorted 00060 * \param directory the directory to be searched 00061 * \param file_names the resulting (sorted) list of .pcd files 00062 */ 00063 inline void 00064 getAllPcdFilesInDirectory (const std::string& directory, std::vector<std::string>& file_names); 00065 00066 /** \brief Remove the path from the given string and return only the filename (the remaining string after the 00067 * last '/') 00068 * \param input the input filename (with full path) 00069 * \return the resulting filename, stripped of the path 00070 */ 00071 inline std::string 00072 getFilenameWithoutPath (const std::string& input); 00073 00074 /** \brief Remove the extension from the given string and return only the filename (everything before the last '.') 00075 * \param input the input filename (with the file extension) 00076 * \return the resulting filename, stripped of its extension 00077 */ 00078 inline std::string 00079 getFilenameWithoutExtension (const std::string& input); 00080 00081 /** \brief Get the file extension from the given string (the remaining string after the last '.') 00082 * \param input the input filename 00083 * \return \a input 's file extension 00084 */ 00085 inline std::string 00086 getFileExtension (const std::string& input); 00087 } // namespace end 00088 /*@}*/ 00089 #include <pcl/common/impl/file_io.hpp> 00090 00091 #endif //#ifndef PCL_FILE_IO_H_