5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Resemble.jsをとにかく使う

Last updated at Posted at 2019-09-09

とにかくResemble.jsを使ってみたかったので、最短で動かす方法を調べました。

比較する画像

a.jpg
a.jpg
b.jpg
b.jpg

名称未設定のフォルダの有無です。


環境設定

$ node -v
v8.11.3
$ npm -v
6.4.1
$ npm i resemblejs
$ npm i fs

nodeとnpmが入っている環境に、resemblejsとfsをinstallする。


実行ソース

【Ionic + Electron】Resemble.jsを使って画像比較を行うデスクトップアプリを作成
を参考に、以下のソースで実行

const fs = require('fs');
const resemble = require('resemblejs');

// 比較したい画像のパスを指定
const image1 = fs.readFileSync("a.jpg");
const image2 = fs.readFileSync("b.jpg");

resemble(image1).compareTo(image2).onComplete(data => {
  if (data.misMatchPercentage >= 0.01) {
    console.log('差分を検知しました。');
    fs.writeFileSync("./diff_image.jpg", data.getBuffer());
  }else{
    console.log("差分なし");
  }
});

出力結果

結果、以下の画像が作成された。
diff_image.jpg
diff_image.jpg

これで動作確認完了!

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?