|
BaseTextureGeneratorGenerate Method
|
Generate texture.
Namespace:
Accord.Imaging.Textures
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public abstract float[,] Generate(
int width,
int height
)
Public MustOverride Function Generate (
width As Integer,
height As Integer
) As Single(,)
Request Example
View SourceParameters
- width
- Type: SystemInt32
Texture's width. - height
- Type: SystemInt32
Texture's height.
Return Value
Type:
SingleTwo dimensional array of texture's intensities.
Implements
ITextureGeneratorGenerate(Int32, Int32)Remarks Generates new texture of the specified size.
See Also