Trait

scalismo.faces.image

ContinuousPixelImage

Related Doc: package image

Permalink

trait ContinuousPixelImage[Pixel] extends (Double, Double) ⇒ Pixel

continuous access image

Linear Supertypes
(Double, Double) ⇒ Pixel, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContinuousPixelImage
  2. Function2
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(x: Double, y: Double): Pixel

    Permalink

    Image value at specified position (x, y) - this is not the pixel position but the coordinates of a point! The center of pixel (0, 0) lies at (0.5, 0.5) in the coordinate system (cell-centered)

    Image value at specified position (x, y) - this is not the pixel position but the coordinates of a point! The center of pixel (0, 0) lies at (0.5, 0.5) in the coordinate system (cell-centered)

    x

    x coordinate (0.5 <-> 0 in discrete case)

    y

    y coordinate (0.5 <-> 0 in discrete case)

    Definition Classes
    ContinuousPixelImage → Function2
  2. abstract val height: Double

    Permalink
  3. abstract def map[B](g: (Pixel) ⇒ B): ContinuousPixelImage[B]

    Permalink

    apply function to each pixel

  4. abstract val width: Double

    Permalink

Concrete 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 andThen[B](g: (Pixel) ⇒ B): ContinuousPixelImage[B]

    Permalink

    andThen is identical to map, compatibility with scalismo interface

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def atContinuousPixel(x: Double, y: Double): Pixel

    Permalink

    Access the image value at the "continuous" pixel position, (0.0, 0.0) corresponds to pixel at (0, 0)

    Access the image value at the "continuous" pixel position, (0.0, 0.0) corresponds to pixel at (0, 0)

    x

    continuous pixel coordinate (0.0 <-> 0 in discrete case)

    y

    continuous pixel coordinate (0.0 <-> 0 in discrete case)

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  8. def curried: (Double) ⇒ (Double) ⇒ Pixel

    Permalink
    Definition Classes
    Function2
    Annotations
    @unspecialized()
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. def sample(w: Int, h: Int)(implicit tag: ClassTag[Pixel]): PixelImage[Pixel]

    Permalink

    sample the continuous image to produce a discrete PixelImage

    sample the continuous image to produce a discrete PixelImage

    w

    Number of samples along x axis (width of image)

    h

    Number of samples along y axis (height of image)

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

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

    Permalink
    Definition Classes
    Function2 → AnyRef → Any
  20. def tupled: ((Double, Double)) ⇒ Pixel

    Permalink
    Definition Classes
    Function2
    Annotations
    @unspecialized()
  21. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from (Double, Double) ⇒ Pixel

Inherited from AnyRef

Inherited from Any

Ungrouped