Add Flop, LowQ, JPEG, Hue, Brighten

Extra mutators yay
This commit is contained in:
Mark Hoekveen
2018-08-14 16:46:04 +02:00
parent 1de3961ece
commit 22479a1a5a
3 changed files with 67 additions and 1 deletions
+5
View File
@@ -21,6 +21,11 @@ DescriptorManager::DescriptorManager(const fs::path & image_path) {
mutators[0] = new Grayscale();
mutators[1] = new Flip();
mutators[2] = new Flop();
mutators[3] = new JPEG();
mutators[4] = new LowQ();
mutators[5] = new Hue();
mutators[6] = new Brighten();
}
//No need to call destructor.. yet?