class ImageCV extends AnyRef
The ImageCV
class ...
- Alphabetic
- By Inheritance
- ImageCV
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
ImageCV(path: String)
- path
...
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
countNonZeros(mat: MatriI): Int
Return the number of elements in the matrix that are not zeros.
-
def
deNoise(): Unit
Reduce the noise (denoise) image 'buffImage' using a simple local neighborhood mean method.
-
def
deNoising(): Unit
The 'deNoising' method calls 'deNoise' repeatedly to reduce the noise in the image.
-
def
displayImage(): Unit
Display the image.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
getAlpha: MatriI
Return values from alpha channel from the image.
Return values from alpha channel from the image. FIX.
-
def
getBlue: MatriI
Return values from blue channel from the image.
Return values from blue channel from the image. FIX.
- def getBuffImage: BufferedImage
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getGreen: MatriI
Return values from green channel from the image.
Return values from green channel from the image. FIX.
-
def
getRed: MatriI
Return values from red channel from the image.
Return values from red channel from the image. FIX.
-
def
getRgbMatrix: MatriI
Return a matrix of RGB values of size (imageWidth, imageHeight).
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
height: Int
Return the height of the image.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def laplaceFilter: BufferedImage
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def reset(): Unit
-
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.
-
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
-
def
smoothingMedian(ksize: Int): Unit
Perform De-Noising by enumerates the pixel value based on the median of the kernal for that pixel.
-
def
subAbs(mat1: MatriI, mat2: MatriI): MatriI
Absolute subtraction of two matrices.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toBW(): Unit
Convert a color image to a black and white image using the iterative threshold mechanism to obtain a b/w matrix.
-
def
toBuffImage: BufferedImage
Convert a rgbMatrix to buffered image.
-
def
toBuffImage(mat: MatriI): BufferedImage
Convert a given matrix to buffered image.
-
def
toFile(path: String, format: String): Unit
Save the image to file for a given path and format.
-
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
-
def
toMatrix(arr: Array[Int], height: Int, width: Int): MatriI
Convert an array to matrix.
-
def
toMatrix(vec: VectorI, height: Int, width: Int): MatriI
Convert a vector to matrix.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
width: Int
Return the width of the image.