-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hi @osamu620, hope all is well! Have you considered adding support for encoding or decoding a folder of
images ? As HTJ2K shows promise for video encoding, I think it would be interesting to see how the workflow
might run for a batch of images, to simulate a video stream. What do you think ?
Fortunately, C++17 supports platform-independent method to list files
#include <string>
#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
std::string path = "/path/to/directory";
for (const auto & entry : fs::directory_iterator(path))
std::cout << entry.path() << std::endl;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request