Click or drag to resize
Accord.NET (logo)

TextureToolsFromBitmap Method (Bitmap)

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 ImageToMatrix class instead.")]
public static float[,] FromBitmap(
	Bitmap image
)
Request Example View Source

Parameters

image
Type: System.DrawingBitmap

Return Value

Type: Single
Examples
ImageToMatrix i2m = new ImageToMatrix();
float[,] texture;
i2m.Convert(image, out texture);
return texture;
See Also