Packages

c

geotrellis.spark.matching

RDDSinglebandMatchingMethods

abstract class RDDSinglebandMatchingMethods[K, V] extends MethodExtensions[RDD[(K, V)]]

Linear Supertypes
MethodExtensions[RDD[(K, V)]], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RDDSinglebandMatchingMethods
  2. MethodExtensions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RDDSinglebandMatchingMethods()(implicit arg0: (V) ⇒ Tile)

Abstract Value Members

  1. abstract def self: RDD[(K, V)]
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def matchHistogram[T1 <: AnyVal, T2 <: AnyVal](sourceHistogram: Histogram[T1], targetHistogram: Histogram[T2]): RDD[(K, Tile)]

    Given a source histogram (ostensibly that of the tiles in the RDD), and a target histogram, this function produces an RDD of key-tile pairs where the histograms of the result tiles have been matched to the target histogram.

    Given a source histogram (ostensibly that of the tiles in the RDD), and a target histogram, this function produces an RDD of key-tile pairs where the histograms of the result tiles have been matched to the target histogram.

    sourceHistogram

    The ostensible histogram of the tiles of the RDD

    targetHistogram

    The histogram that the tiles should be matched to

    returns

    An RDD key-tile pairs where the histograms have been matched

  2. def matchHistogram[T <: AnyVal](targetHistogram: Histogram[T]): RDD[(K, Tile)]

    Given a target histogram, this function produces an RDD of key-tile pairs where the histograms of the result tiles have been matched to the target histogram.

    Given a target histogram, this function produces an RDD of key-tile pairs where the histograms of the result tiles have been matched to the target histogram.

    targetHistogram

    The histogram that the tiles should be matched to

    returns

    An RDD key-tile pairs where the histograms have been matched