Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

v3.3.2

Choose a tag to compare

@obartra obartra released this 09 Oct 22:20
· 8 commits to master since this release
3be9c57
perf(ssim): improve rgb and weber speed (#284)

Weber algorithm improvements:
- No interim rounding
- No division
- Removed branching
- Keeps all numbers as floating points at the end

RGB to Grayscale improvements:
- Makes integer rgb calculation the default.
- Old behavior can be restored by setting the option `rgb2grayVersion`
  to 'original'
- Value changes are ~±0.001

Closes #276, closes #277, closes #278, closes #279, closes #281

BREAKING CHANGE