iVS3D v2.0.0
Loading...
Searching...
No Matches
copyfilecommand.h
1#ifndef COPYFILECOMMAND_H
2#define COPYFILECOMMAND_H
3
4#include <opencv2/core.hpp>
5#include <opencv2/imgcodecs.hpp>
6#include <opencv2/imgproc.hpp>
7
8#include <QString>
9#include <QDir>
10#include <QRect>
11
12#include <vector>
13#include <memory>
14#include <optional>
15
16#include "reader.h"
17#include "imageprocessor.h"
18
20 std::vector<std::string> files;
21 QString folderpath;
22 bool initialized;
23
24public:
25 CopyFileCommand(std::vector<std::string> files_, QString folderpath_);
26 std::optional<QString> execute(ImageContext &ctx) override;
27};
28
29#endif //COPYFILECOMMAND_H
Definition copyfilecommand.h:19
The ImageCommand class is an abstract interface for commands regarding image operations such as resiz...
Definition imageprocessor.h:33
The ImageContext class provides contetx information for executing ImageCommands. This data can be mod...
Definition imageprocessor.h:22