ImageProcessor.h 231 B

1234567891011
  1. #pragma once
  2. #include <string>
  3. #include <vector>
  4. class ImageProcessor {
  5. public:
  6. static std::vector<std::string> getImagesInDirectory(const std::string& directory);
  7. static bool isImageFile(const std::string& filename);
  8. };