Packages

o

ij_plugins.color.util

WhiteBalance

object WhiteBalance

Methods for performing white balancing of RGB color images.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WhiteBalance
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def measureROI(imp: ImagePlus, roi: Roi): Seq[ImageStatistics]
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def slices(imp: ImagePlus): Seq[ImageProcessor]
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toRGBStackImp(cp: ColorProcessor): ImagePlus
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. def whiteBalance(imp: ImagePlus, redMult: Double, blueMult: Double): ImagePlus

    White balance an image using provided multiplier for read and blue channel.

    White balance an image using provided multiplier for read and blue channel. Green chanel is not changed.

    imp

    source image

    redMult

    red channel multiplier

    blueMult

    blue channel multiplier

    returns

    white-balanced image

  24. def whiteBalance(imp: ImagePlus, roi: Roi, averagingMode: AveragingMode): (ImagePlus, Double, Double)

    White balance an image using provided ROI.

    White balance an image using provided ROI.

    imp

    input colr images with an ROI over a neutral color area.

    averagingMode

    what method is used to find an average channel value within the ROI.

    returns

    white-balanced image.

  25. def whiteBalance(imp: ImagePlus, roi: Roi): (ImagePlus, Double, Double)

    White balance an image using provided ROI.

    White balance an image using provided ROI. Median color value within ROI is used.

    imp

    image to correct

    roi

    area to use for computing white balance

    returns

    white-balanced image

  26. def whiteBalance(cp: ColorProcessor, roi: Roi, averagingMode: AveragingMode): (ColorProcessor, Double, Double)

    White balance an image using provided ROI.

    White balance an image using provided ROI.

    cp

    input colr images with an ROI over a neutral color area.

    averagingMode

    what method is used to find an average channel value within the ROI.

    returns

    white-balanced image.

  27. def whiteBalance(cp: ColorProcessor, roi: Roi): (ColorProcessor, Double, Double)

    White balance an image using provided ROI.

    White balance an image using provided ROI. Median color value within ROI is used.

    cp

    image to correct

    roi

    area to use for computing white balance

    returns

    white-balanced image

  28. def whiteBalanceRGBStack(imp: ImagePlus, roi: Roi, averagingMode: AveragingMode): (ImagePlus, Double, Double)

    White balance an image using provided ROI.

    White balance an image using provided ROI. Assume that the source image is a stack with 3 gray level bands corresponding to Red, Green, and Blue.

    imp

    input colr images with an ROI over a neutral color area.

    averagingMode

    what method is used to find an average channel value within the ROI.

    returns

    white-balanced image

Inherited from AnyRef

Inherited from Any

Ungrouped