Class

scalismo.common

VectorField

Related Doc: package common

Permalink

case class VectorField[D <: Dim, DO <: Dim](domain: Domain[D], f: (Point[D]) ⇒ Vector[DO]) extends Field[D, Vector[DO]] with Product with Serializable

An vector valued image.

Linear Supertypes
Serializable, Serializable, Product, Equals, Field[D, Vector[DO]], (Point[D]) ⇒ Vector[DO], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. VectorField
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Field
  7. Function1
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new VectorField(domain: Domain[D], f: (Point[D]) ⇒ Vector[DO])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *(s: Double): VectorField[D, DO]

    Permalink

    scalar multiplication of a vector field

  4. def +(that: VectorField[D, DO]): VectorField[D, DO]

    Permalink

    adds two images.

    adds two images. The domain of the new image is the intersection of both

  5. def -(that: VectorField[D, DO]): VectorField[D, DO]

    Permalink

    subtract two images.

    subtract two images. The domain of the new image is the intersection of the domains of the individual images

  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def andThen[A](g: (Vector[DO]) ⇒ A): (Point[D]) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  8. def apply(x: Point[D]): Vector[DO]

    Permalink

    The value of the image at a given point.

    The value of the image at a given point. if an image is accessed outside of its definition, an exception is thrown

    Definition Classes
    Field → Function1
  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def compose[A](g: (A) ⇒ Point[D]): (A) ⇒ Vector[DO]

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  12. val domain: Domain[D]

    Permalink

    The domain on which the image is defined

    The domain on which the image is defined

    Definition Classes
    VectorFieldField
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. val f: (Point[D]) ⇒ Vector[DO]

    Permalink

    a function that defines the image values.

    a function that defines the image values. It must be defined on the full domain

    Definition Classes
    VectorFieldField
  15. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def isDefinedAt(pt: Point[D]): Boolean

    Permalink

    True if the image is defined at the given point

    True if the image is defined at the given point

    Definition Classes
    Field
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def liftValues: (Point[D]) ⇒ Option[Vector[DO]]

    Permalink

    Lifts the definition of the value function such that it is defined everywhere, but yields none if the value is outside of the domain

    Lifts the definition of the value function such that it is defined everywhere, but yields none if the value is outside of the domain

    Definition Classes
    Field
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    Function1 → AnyRef → Any
  25. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Field[D, Vector[DO]]

Inherited from (Point[D]) ⇒ Vector[DO]

Inherited from AnyRef

Inherited from Any

Ungrouped