SyB3R - Synthetic Benchmark for 3D Reconstruction
RenderJob.h
1 #ifndef RENDERJOB_H
2 #define RENDERJOB_H
3 
4 #include <syb3r/tools/ShellExec.h>
5 
6 #include <vector>
7 #include <string>
8 
9 namespace syb3r {
10 namespace synthesis {
11 
12 class RenderJob : protected tools::ShellExec
13 {
14  public:
15  std::string blenderCmd = "blender";
16 
17  bool render(const std::string &blendFile, const std::string &scriptFile);
18  protected:
19  std::vector<std::string> m_log;
20 
21  virtual void parseLine(const char *line);
22 };
23 
24 }
25 }
26 
27 #endif // RENDERJOB_H
Definition: CameraPathEvaluation.cpp:10
Definition: ShellExec.h:9
Definition: RenderJob.h:12