Switch to Butteraugli and simpel CLI

This commit is contained in:
Surma
2020-09-08 00:18:01 +01:00
parent 483daa0493
commit 4b6334a212
14 changed files with 286 additions and 563 deletions

7
cli/image_data.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = class ImageData {
constructor(data, width, height) {
this.data = data;
this.width = width;
this.height = height;
}
};