cls_Texture2D - almarklein/visvis GitHub Wiki
Inherits from BaseTexture.
A data type that represents structured data in two dimensions (an image). Supports grayscale, RGB, and RGBA images.
Texture2D objects can be created with the function vv.imshow().
The Texture2D class implements the following properties:
aa
Get/Set anti aliasing quality. * 0 or False for no anti aliasing * 1 for anti aliasing using 3-element kernel. * 2 for anti aliasing using 5-element kernel. * 3 for anti aliasing using 7-element kernel.
Higher numbers result in better quality anti-aliasing, but may be slower on older hardware.
Note that in previous versions of visvis, this property influenced the amount of aliasing. We now use a better kernel (Lanczos instead of Gaussian), such that the amount can be fixed without negatively affecting the visualization.