3.1 Function reference

toImage( array)
Convert array to a QImage, where array must be a two-dimensional NumPy, numarray, or Numeric array of type uint8 or uint32. This function is always available, even when PyQwt has been built without support for NumPy, numarray and Numeric.

toNumarray( image)
Convert image of type QImage to a numarray array. This function is only available if PyQwt has been built with support for numarray.

toNumeric( image)
Convert image of type QImage to a Numeric array. This function is only available if PyQwt has been built with support for Numeric.

toNumpy( image)
Convert image of type QImage to a NumPy array. This function is only available if PyQwt has been built with support for NumPy.

to_na_array( image)
Convert image of type QImage to a Numarray array. This function has been deprecated and is only available if PyQwt has been built with support for Numarray. building PyQwt. Use toNumarray(image).

to_np_array( image)
Convert image of type QImage to a Numeric array. This function has been deprecated and is is only available if PyQwt has been built with support for Numeric. Use toNumeric(image)