| 544 | } |
| 545 | |
| 546 | std::string zeroPadding(const unsigned int number, const unsigned int length) |
| 547 | { |
| 548 | ostringstream out; |
| 549 | out << std::internal << std::setfill('0') << std::setw(length) << number; |
| 550 | return out.str(); |
| 551 | } |
| 552 | |
| 553 | std::string convertFileName(const std::string &inputFileName, const unsigned int currentFrame) |
| 554 | { |