|
ToolsToMatrix Method (Bitmap)
|
Converts an image given as a
Bitmap into a matrix of
pixel values.For more options, please use the
MatrixToImage class.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public static double[,,] ToMatrix(
this Bitmap bitmap
)
<ExtensionAttribute>
Public Shared Function ToMatrix (
bitmap As Bitmap
) As Double(,,)
Request Example
View SourceParameters
- bitmap
- Type: System.DrawingBitmap
A image represented as a bitmap.
Return Value
Type:
DoubleA matrix containing the values of each pixel in the bitmap.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Bitmap. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also