scala-phash v1.1.0 Release Notes

Release Date: 2018-05-19 // almost 6 years ago
  • Safe API

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

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

    👌 Improved readability

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