You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
193 B

  1. package com.sothr.imagetools.hash
  2. /**
  3. * Created by dev on 1/22/14.
  4. */
  5. object AHash extends PerceptualHasher {
  6. def getHash(imageData: Array[Array[Int]]): Long = {
  7. return 0L
  8. }
  9. }