Packages

class ImageCV extends AnyRef

The ImageCV class ...

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImageCV
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ImageCV(path: String)

    path

    ...

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def countNonZeros(mat: MatriI): Int

    Return the number of elements in the matrix that are not zeros.

  7. def deNoise(): Unit

    Reduce the noise (denoise) image 'buffImage' using a simple local neighborhood mean method.

  8. def deNoising(): Unit

    The 'deNoising' method calls 'deNoise' repeatedly to reduce the noise in the image.

  9. def displayImage(): Unit

    Display the image.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def getAlpha: MatriI

    Return values from alpha channel from the image.

    Return values from alpha channel from the image. FIX.

  13. def getBlue: MatriI

    Return values from blue channel from the image.

    Return values from blue channel from the image. FIX.

  14. def getBuffImage: BufferedImage
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getGreen: MatriI

    Return values from green channel from the image.

    Return values from green channel from the image. FIX.

  17. def getRed: MatriI

    Return values from red channel from the image.

    Return values from red channel from the image. FIX.

  18. def getRgbMatrix: MatriI

    Return a matrix of RGB values of size (imageWidth, imageHeight).

  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def height: Int

    Return the height of the image.

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def laplaceFilter: BufferedImage
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def reset(): Unit
  27. def similarity(mat: MatriI): Double

    Compare the values pixel by pixel.

    Compare the values pixel by pixel. Pixels having exactly similar RGB values are considered similar.

  28. def smoothingMean(): Unit

    Perform one way of De-Noising the image by taking the mean of the kernal image values and assigns it one pixel FIX - under development

  29. def smoothingMedian(ksize: Int): Unit

    Perform De-Noising by enumerates the pixel value based on the median of the kernal for that pixel.

  30. def subAbs(mat1: MatriI, mat2: MatriI): MatriI

    Absolute subtraction of two matrices.

  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toBW(): Unit

    Convert a color image to a black and white image using the iterative threshold mechanism to obtain a b/w matrix.

  33. def toBuffImage: BufferedImage

    Convert a rgbMatrix to buffered image.

  34. def toBuffImage(mat: MatriI): BufferedImage

    Convert a given matrix to buffered image.

  35. def toFile(path: String, format: String): Unit

    Save the image to file for a given path and format.

  36. def toGray(): Unit

    Convert the image into a gray scale image and assign it to 'buffImage'.

    Convert the image into a gray scale image and assign it to 'buffImage'.

    See also

    en.wikipedia.org/wiki/Grayscale

  37. def toMatrix(arr: Array[Int], height: Int, width: Int): MatriI

    Convert an array to matrix.

  38. def toMatrix(vec: VectorI, height: Int, width: Int): MatriI

    Convert a vector to matrix.

  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. def width: Int

    Return the width of the image.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped