Skip to content

v1.1.0

Compare
Choose a tag to compare
@poslegm poslegm released this 19 May 21:13
· 31 commits to master since this release

Safe API

Solved #1. Now you can compute hashes in two ways:

val hash1: Either[Throwable, DCTHash] = dctHash(image) // safe way
val hash2: DCTHash = unsafeDctHash(image) // can throw an exception

Improved readability

Added trait PHashAlgebra with public functions signatures and docs for comfortable API overview.