MLImage.CreateFromPixels Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un objet MLImage à partir de l’étendue de données de pixels.
public static Microsoft.ML.Data.MLImage CreateFromPixels (int width, int height, Microsoft.ML.Data.MLPixelFormat pixelFormat, ReadOnlySpan<byte> imagePixelData);
static member CreateFromPixels : int * int * Microsoft.ML.Data.MLPixelFormat * ReadOnlySpan<byte> -> Microsoft.ML.Data.MLImage
Public Shared Function CreateFromPixels (width As Integer, height As Integer, pixelFormat As MLPixelFormat, imagePixelData As ReadOnlySpan(Of Byte)) As MLImage
Paramètres
- width
- Int32
Largeur de l’image en pixels.
- height
- Int32
Hauteur de l’image en pixels.
- pixelFormat
- MLPixelFormat
Format de pixel avec lequel créer l’image.
- imagePixelData
- ReadOnlySpan<Byte>
Données de pixels à partir de laquelle créer l’image.
Retours
Objet MLImage.