Implement an option to choose path color. Refs #1.

This commit is contained in:
2018-04-03 16:43:23 +02:00
parent 62153d9c6d
commit f62c2859e3
7 changed files with 33 additions and 3 deletions

View File

@@ -4,6 +4,7 @@
#include <string>
#include <vector>
#include "utils.hpp"
#include "PNGDumper.hpp"
namespace fmri {
@@ -18,13 +19,14 @@ namespace fmri {
const string& model() const;
const string& weights() const;
const string& means() const;
const Color& pathColor() const;
std::optional<vector<string>> labels() const;
std::optional<fmri::PNGDumper> imageDumper() const;
const vector<string>& inputs() const;
private:
std::array<float, 4> pathColor_;
Color pathColor_;
string modelPath;
string weightsPath;
string meansPath;