keystoneml.nodes.images

Convolver

object Convolver extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Convolver
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply(filters: Array[Image], imgInfo: ImageMetadata, whitener: Option[ZCAWhitener] = None, normalizePatches: Boolean = true, varConstant: Double = 10.0, flipFilters: Boolean = false): Convolver

    User-friendly constructor interface for the Conovler.

    User-friendly constructor interface for the Conovler.

    filters

    An array of images with which we convolve each input image. These images should *not* be pre-whitened.

    imgInfo

    Metadata of a typical image we will be convolving. All images must have the same size/shape.

    whitener

    Whitener to be applied to both the input images and the filters before convolving.

    normalizePatches

    Should the patches be normalized before convolution?

    varConstant

    Constant to be used in scaling.

    flipFilters

    Should the filters be flipped before convolution is applied (used for comparability to MATLAB's convnd function.)

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def convolve(img: Image, patchMat: DenseMatrix[Double], resWidth: Int, resHeight: Int, imgChannels: Int, convSize: Int, normalizePatches: Boolean, whitener: Option[ZCAWhitener], convolutions: DenseMatrix[Double], varConstant: Double = 10.0): Image

  10. def convolvePartitions(imgs: Iterator[Image], resWidth: Int, resHeight: Int, imgChannels: Int, convSize: Int, normalizePatches: Boolean, whitener: Option[ZCAWhitener], convolutions: DenseMatrix[Double], varConstant: Double): Iterator[Image]

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. def makePatches(img: Image, patchMat: DenseMatrix[Double], resWidth: Int, resHeight: Int, imgChannels: Int, convSize: Int, normalizePatches: Boolean, whitener: Option[ZCAWhitener], varConstant: Double): DenseMatrix[Double]

    This function takes an image and generates a matrix of all of its patches.

    This function takes an image and generates a matrix of all of its patches. Patches are expected to have indexes of the form: c + x*numChannels + y*numChannels*xDim

    img
    returns

  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. def packFilters(filters: Array[Image]): DenseMatrix[Double]

    Given an array of filters, packs the filters into a DenseMatrix[Double] which has the following form: for a row i, column c+y*numChannels+x*numChannels*yDim corresponds to the pixel value at (x,y,c) in image i of the filters array.

    Given an array of filters, packs the filters into a DenseMatrix[Double] which has the following form: for a row i, column c+y*numChannels+x*numChannels*yDim corresponds to the pixel value at (x,y,c) in image i of the filters array.

    filters

    Array of filters.

    returns

    DenseMatrix of filters, as described above.

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped