|
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
)
<ObsoleteAttribute("Please use the MatrixToImage class instead.")>
Public Shared Function ToBitmap (
texture As Single(,)
) As Bitmap
Request Example
View SourceParameters
- texture
- Type: SystemSingle
Return Value
Type:
BitmapExamples MatrixToImage i2m = new MatrixToImage();
Bitmap image;
i2m.Convert(texture, out image);
return image;
See Also