Class

toolkit.filtering.contourlets

Filter

Related Doc: package contourlets

Permalink

class Filter extends AnyRef

A filter is a matrix with an origin at some place other than (0, 0).

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Filter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Filter(minRow: Int, maxRow: Int, minColumn: Int, maxColumn: Int)

    Permalink

    minRow

    Minimum row coordinate in filter.

    maxRow

    Maximum row coordinate in filter.

    minColumn

    Minimum column coordinate in filter.

    maxColumn

    Maximum column coordinate in filter.

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(row: Int, col: Int): Float

    Permalink

    Read an element in the filter coordinate system.

    Read an element in the filter coordinate system.

    row

    The row of the element.

    returns

    The value at location (row, column).

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def columnIndices: Inclusive

    Permalink

    The column indices, from min to max inclusive.

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  14. val maxColumn: Int

    Permalink

    Maximum column coordinate in filter.

  15. val maxRow: Int

    Permalink

    Maximum row coordinate in filter.

  16. val minColumn: Int

    Permalink

    Minimum column coordinate in filter.

  17. val minRow: Int

    Permalink

    Minimum row coordinate in filter.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def rowIndices: Inclusive

    Permalink

    The row indices, from min to max inclusive.

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

    Permalink
    Definition Classes
    AnyRef
  23. def toMatrix: libcog.Matrix

    Permalink

    Convert filter to a matrix.

  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def update(m: libcog.Matrix): Unit

    Permalink

    Write the filter with the values of a matrix that has the same shape.

    Write the filter with the values of a matrix that has the same shape.

    m

    Matrix used to write filter values.

  26. def update(row: Int, col: Int, value: Float): Unit

    Permalink

    Write an element in the filter coordinate system.

    Write an element in the filter coordinate system.

    row

    The row of the element.

    value

    The value to be written to location (row, column).

  27. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped