Base class for different types of input sources for images.
| ImageInput | Base class for different types of input sources for images. |
| Functions | |
| read | Read an image (abstract method). |
| status? | Indicates whether input still is available (abstract method). |
| read_ubyte | Read an image and convert to two-dimensional array of 8-bit unsigned greyscale values. |
| read_byte | Read an image and convert to two-dimensional array of 8-bit signed greyscale values. |
| read_usint | Read an image and convert to two-dimensional array of 16-bit unsigned greyscale values. |
| read_sint | Read an image and convert to two-dimensional array of 16-bit signed greyscale values. |
| read_uint | Read an image and convert to two-dimensional array of 32-bit unsigned greyscale values. |
| read_int | Read an image and convert to two-dimensional array of 32-bit signed greyscale values. |
| read_ulong | Read an image and convert to two-dimensional array of 64-bit unsigned greyscale values. |
| read_long | Read an image and convert to two-dimensional array of 64-bit signed greyscale values. |
| read_sfloat | Read an image and convert it to a two-dimensional array of single-precision floating-point greyscale values. |
| read_dfloat | Read an image and convert it to a two-dimensional array of double precision floating-point greyscale values. |
| read_ubytergb | Read an image and convert to two-dimensional array of 8-bit unsigned RGB values. |
| read_bytergb | Read an image and convert to two-dimensional array of 8-bit signed RGB values. |
| read_usintrgb | Read an image and convert to two-dimensional array of 16-bit unsigned RGB values. |
| read_sintrgb | Read an image and convert to two-dimensional array of 16-bit signed RGB values. |
| read_uintrgb | Read an image and convert to two-dimensional array of 32-bit unsigned RGB values. |
| read_intrgb | Read an image and convert to two-dimensional array of 32-bit signed RGB values. |
| read_ulongrgb | Read an image and convert to two-dimensional array of 64-bit unsigned RGB values. |
| read_longrgb | Read an image and convert to two-dimensional array of 64-bit signed RGB values. |
| read_sfloatrgb | Read an image and convert it to a two-dimensional array of single-precision floating-point RGB values. |
| read_dfloatrgb | Read an image and convert it to a two-dimensional array of double precision floating-point RGB values. |
Read an image (abstract method).
def read
Indicates whether input still is available (abstract method).
def status?
Read an image and convert to two-dimensional array of 8-bit unsigned greyscale values.
def read_ubyte
Read an image and convert to two-dimensional array of 8-bit signed greyscale values.
def read_byte
Read an image and convert to two-dimensional array of 16-bit unsigned greyscale values.
def read_usint
Read an image and convert to two-dimensional array of 16-bit signed greyscale values.
def read_sint
Read an image and convert to two-dimensional array of 32-bit unsigned greyscale values.
def read_uint
Read an image and convert to two-dimensional array of 32-bit signed greyscale values.
def read_int
Read an image and convert to two-dimensional array of 64-bit unsigned greyscale values.
def read_ulong
Read an image and convert to two-dimensional array of 64-bit signed greyscale values.
def read_long
Read an image and convert it to a two-dimensional array of single-precision floating-point greyscale values.
def read_sfloat
Read an image and convert it to a two-dimensional array of double precision floating-point greyscale values.
def read_dfloat
Read an image and convert to two-dimensional array of 8-bit unsigned RGB values.
def read_ubytergb
Read an image and convert to two-dimensional array of 8-bit signed RGB values.
def read_bytergb
Read an image and convert to two-dimensional array of 16-bit unsigned RGB values.
def read_usintrgb
Read an image and convert to two-dimensional array of 16-bit signed RGB values.
def read_sintrgb
Read an image and convert to two-dimensional array of 32-bit unsigned RGB values.
def read_uintrgb
Read an image and convert to two-dimensional array of 32-bit signed RGB values.
def read_intrgb
Read an image and convert to two-dimensional array of 64-bit unsigned RGB values.
def read_ulongrgb
Read an image and convert to two-dimensional array of 64-bit signed RGB values.
def read_longrgb
Read an image and convert it to a two-dimensional array of single-precision floating-point RGB values.
def read_sfloatrgb
Read an image and convert it to a two-dimensional array of double precision floating-point RGB values.
def read_dfloatrgb