Reputation: 47
I need to process many images from a certain folder with my opencv algorithm, but i don't know how. The steps would need to be like this:
Upvotes: 0
Views: 107
Reputation: 4189
For list of files look at this. Moving files or deleting it is more complex problem as there is no simple solution (is OS dependent) but you can use boost::filesystem::rename and boost::filesystem::remove or std::rename and std::remove.
Upvotes: 1