View Source Evision.XPhoto.SimpleWB (Evision v0.1.37)

Summary

Types

t()

Type that represents an XPhoto.SimpleWB struct.

Functions

Input image range maximum value

Input image range minimum value

Output image range maximum value

Output image range minimum value

Percent of top/bottom values to ignore

Types

@type t() :: %Evision.XPhoto.SimpleWB{ref: reference()}

Type that represents an XPhoto.SimpleWB struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

@spec getInputMax(t()) :: number() | {:error, String.t()}

Input image range maximum value

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
Return
  • retval: float

@see setInputMax/2

Python prototype (for reference only):

getInputMax() -> retval
@spec getInputMin(t()) :: number() | {:error, String.t()}

Input image range minimum value

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
Return
  • retval: float

@see setInputMin/2

Python prototype (for reference only):

getInputMin() -> retval
@spec getOutputMax(t()) :: number() | {:error, String.t()}

Output image range maximum value

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
Return
  • retval: float

@see setOutputMax/2

Python prototype (for reference only):

getOutputMax() -> retval
@spec getOutputMin(t()) :: number() | {:error, String.t()}

Output image range minimum value

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
Return
  • retval: float

@see setOutputMin/2

Python prototype (for reference only):

getOutputMin() -> retval
@spec getP(t()) :: number() | {:error, String.t()}

Percent of top/bottom values to ignore

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
Return
  • retval: float

@see setP/2

Python prototype (for reference only):

getP() -> retval
@spec setInputMax(t(), number()) :: t() | {:error, String.t()}

setInputMax

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
  • val: float

@see getInputMax/1

Python prototype (for reference only):

setInputMax(val) -> None
@spec setInputMin(t(), number()) :: t() | {:error, String.t()}

setInputMin

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
  • val: float

@see getInputMin/1

Python prototype (for reference only):

setInputMin(val) -> None
@spec setOutputMax(t(), number()) :: t() | {:error, String.t()}

setOutputMax

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
  • val: float

@see getOutputMax/1

Python prototype (for reference only):

setOutputMax(val) -> None
@spec setOutputMin(t(), number()) :: t() | {:error, String.t()}

setOutputMin

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
  • val: float

@see getOutputMin/1

Python prototype (for reference only):

setOutputMin(val) -> None
@spec setP(t(), number()) :: t() | {:error, String.t()}

setP

Positional Arguments
  • self: Evision.XPhoto.SimpleWB.t()
  • val: float

@see getP/1

Python prototype (for reference only):

setP(val) -> None