rpdiff 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rpdiff.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f1447a1f0f2a6f54eaf67cdd5cb0f60e40dc9ea
|
4
|
+
data.tar.gz: 5c8365e67294b411f0702ef87c6c80997afc2560
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89d9fe65bb72501dcc64b5fe71df111e65374d7ac29ec9789a27066f149c36d935bb376c0d7714f1b7407b695ca5c9018cb5f55fbfd2397d2bd3d981b6756625
|
7
|
+
data.tar.gz: 6362579a759f6a945cdbb6b3632163659684ac520eb1754a4f30ea12fdb5a438965ad6db85dfcd1952380caecb8f01f455df6f037e96bb10b3a1610b5e685998
|
data/lib/rpdiff.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
class RPDiff
|
2
2
|
|
3
3
|
attr_reader :visibly_different, :identical, :indistinguishable, :pixel_difference,
|
4
|
-
:img1, :img2, :fov, :threshold, :gamma, :luminance
|
4
|
+
:img1, :img2, :fov, :threshold, :gamma, :luminance, :match_percentage
|
5
5
|
|
6
6
|
def initialize(img1, img2, options={})
|
7
7
|
@img1, @img2, @options = img1, img2, options
|
@@ -24,6 +24,7 @@ class RPDiff
|
|
24
24
|
@visibly_different = true if line =~ /FAIL: Images are visibly different/
|
25
25
|
@identical = true if line =~ /PASS: Images are binary identical/
|
26
26
|
@indistinguishable = true if line =~ /PASS: Images are perceptually indistinguishable/
|
27
|
+
@incomparable = true if line =~ /FAIL: Images dimensions do not match/
|
27
28
|
end
|
28
29
|
|
29
30
|
if @options[:match_percentage]
|
@@ -36,6 +37,7 @@ class RPDiff
|
|
36
37
|
#Optional gem requirement to get a % value out of image similarity.
|
37
38
|
def calculate_match_percentage
|
38
39
|
require 'fastimage'
|
40
|
+
return 0 if @incomparable
|
39
41
|
@image_sizes = FastImage.size(@img1)
|
40
42
|
@match_percentage = 100 - (@pixel_difference.to_f * 100 / (@image_sizes.first * @image_sizes.last).to_f)
|
41
43
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rpdiff
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Benmergui
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A thin wrapper on Perceptual Diff for ease of use.
|
14
14
|
email: gabriel.benmergui@gmail.com
|