Solución:
Hay un módulo node-opencv, puede usarlo para realizar operaciones pesadas como la comparación de imágenes. Buen tema sobre eso está aquí: método simple y rápido para comparar imágenes por similitud
También hay image-diff que parece muy prometedor, está hecho por Uber.
var imageDiff = require('image-diff')
imageDiff({
actualImage: 'checkerboard.png',
expectedImage: 'white.png'
}, function (err, imagesAreSame) {
// error will be any errors that occurred
// imagesAreSame is a boolean whether the images were the same or not
// diffImage will have an image which highlights differences
})
Encontré esta biblioteca, que puede serle útil.
https://github.com/HumbleSoftware/js-imagediff
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)