Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ////////////////////////
  2. // INCLUDES
  3.  
  4. //// System
  5. #include <iostream>
  6. #include <string>
  7.  
  8. //// User Defined
  9. #include "../../Sequencer.h"
  10.  
  11. int main(int argc, char **argv)
  12. {
  13. std::string image_filename = "prefix.00000.ext";
  14. std::string out_filename = "prefix_signature.00000.ppm";
  15. Sequencer sequencer(image_filename);
  16.  
  17. bool tmp = true;
  18. do
  19. {
  20. tmp = sequencer.get_next_frame(image_filename, out_filename);
  21. if (tmp)
  22. std::cout << image_filename << ", " << out_filename << std::endl;
  23. } while (tmp);
  24.  
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement