mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
Simplified rtabmap-imagesJoiner tools
This commit is contained in:
@@ -229,6 +229,17 @@ std::string UDirectory::getNextFileName()
|
||||
return fileName;
|
||||
}
|
||||
|
||||
std::string UDirectory::getNextFilePath()
|
||||
{
|
||||
std::string filePath;
|
||||
if(iFileName_ != fileNames_.end())
|
||||
{
|
||||
filePath = path_+separator()+*iFileName_;
|
||||
++iFileName_;
|
||||
}
|
||||
return filePath;
|
||||
}
|
||||
|
||||
void UDirectory::rewind()
|
||||
{
|
||||
iFileName_ = fileNames_.begin();
|
||||
|
||||
Reference in New Issue
Block a user