Click or drag to resize
Accord.NET (logo)

TextureToolsToBitmap Method

Note: This API is now obsolete.

Obsolete. Please use the ImageToMatrix class instead. See remarks for an example.

Namespace:  Accord.Imaging.Textures
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use the MatrixToImage class instead.")]
public static Bitmap ToBitmap(
	float[,] texture
)
Request Example View Source

Parameters

texture
Type: SystemSingle

Return Value

Type: Bitmap
Examples
MatrixToImage i2m = new MatrixToImage();
Bitmap image;
i2m.Convert(texture, out image);
return image;
See Also