Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.

Fix case where alpha value is an exponent #29

Closed
wants to merge 1 commit into from
Closed

Fix case where alpha value is an exponent #29

wants to merge 1 commit into from

Conversation

jacobp100
Copy link
Contributor

From error,

! Exception ocurred when performing image diff for tiedChords-ipad-pro-portrait@1-p1
[Error: Expected `image-diff's stderr` to contain 'all' but received "/tmp/tmp-76818mswa0g.png PNG 1024x1366 1024x1366+0+0 8-bit DirectClass 14.2KB 0.010u 0:00.019
/tmp/tmp-76818m6035c.png PNG 1024x1366 1024x1366+0+0 8-bit DirectClass 14.2KB 0.010u 0:00.019
Image: /tmp/tmp-76818mswa0g.png
  Channel distortion: RMSE
    gray: 0.532272 (8.12195e-06)
    alpha: 0 (0)
    all: 0.460961 (7.03381e-06)
/tmp/tmp-76818mswa0g.png=>artifacts/diff/features/tie/[email protected] PNG 1024x1366 1024x1366+0+0 8-bit PseudoClass 3c 0.150u 0:00.149
"]

From error,

```
! Exception ocurred when performing image diff for tiedChords-ipad-pro-portrait@1-p1
[Error: Expected `image-diff's stderr` to contain 'all' but received "/tmp/tmp-76818mswa0g.png PNG 1024x1366 1024x1366+0+0 8-bit DirectClass 14.2KB 0.010u 0:00.019
/tmp/tmp-76818m6035c.png PNG 1024x1366 1024x1366+0+0 8-bit DirectClass 14.2KB 0.010u 0:00.019
Image: /tmp/tmp-76818mswa0g.png
  Channel distortion: RMSE
    gray: 0.532272 (8.12195e-06)
    alpha: 0 (0)
    all: 0.460961 (7.03381e-06)
/tmp/tmp-76818mswa0g.png=>artifacts/diff/features/tie/[email protected] PNG 1024x1366 1024x1366+0+0 8-bit PseudoClass 3c 0.150u 0:00.149
"]
```
@twolfson
Copy link
Contributor

twolfson commented Oct 2, 2015

Can we add a test case for this comment? Maybe we should break out the extraction method so we can test it more independently (i.e. without needing an image)

@@ -79,7 +79,7 @@ ImageDiff.createDiff = function (options, cb) {
// DEV: According to http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=17284
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we update the comment in the previous line to include the E/e format?

// Attempt to find variant between 'all: 0 (0)' or 'all: 40131.8 (0.612372)'

@jacobp100
Copy link
Contributor Author

Do you want a test with two images that are so similar to cause this scenario?

@twolfson
Copy link
Contributor

twolfson commented Oct 2, 2015

Nah, I imagine that would require very large images to be stored in the repo. We should relocate the .match into its own function so it can be tested independently

@jacobp100
Copy link
Contributor Author

It’s certainly possible to add these tests. Although Imagemagick is pretty bad for maintaining compatibility, so it might not be the best use of time.

@twolfson
Copy link
Contributor

twolfson commented Oct 3, 2015

Yea, but this will also put us in a more flexible state for the future. I am going to open a secondary PR to add that functionality. This PR looks good for now.

@@ -79,7 +79,7 @@ ImageDiff.createDiff = function (options, cb) {
// DEV: According to http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=17284
// DEV: These values are the total square root mean square (RMSE) pixel difference across all pixels and its percentage
// TODO: This is not very multi-lengual =(
var resultInfo = stderr.match(/all: (\d+\.?\d*) \((\d+\.?\d*)\)/);
var resultInfo = stderr.match(/all: (\d+(?:\.\d+)?) \((\d+(?:\.\d+)?(?:[Ee]-?\d+)?)\)/);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This regexp grew a lot in complexity. Why are we moving to ?: for some of the groups?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I see. We are trying to be more accurate with the matches.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For extra safety, I am going to copy over the Ee- logic to the first half as well.

@twolfson
Copy link
Contributor

twolfson commented Oct 3, 2015

I have opened up #30 which brings this PR over the finish line and ready for landing.

@mlmorg
Copy link
Contributor

mlmorg commented Oct 19, 2015

Sorry for the delay. Thanks!

@mlmorg mlmorg closed this Oct 19, 2015
@twolfson
Copy link
Contributor

Woot, thanks @mlmorg =)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants