module Imatcher

Compare PNG images using different algorithms

Public Class Methods

compare(path_a, path_b, options = {}) click to toggle source
# File lib/imatcher.rb, line 11
def self.compare(path_a, path_b, options = {})
  Matcher.new(options).compare(path_a, path_b)
end