ImageFormat.YcbcrP010 Campo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Attenzione
This constant will be removed in the future version. Use Android.Graphics.ImageFormatType enum directly instead of this field.
Formato ANDROID YUV P010.
[Android.Runtime.Register("YCBCR_P010", ApiSince=31)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Graphics.ImageFormatType enum directly instead of this field.", true)]
public const Android.Graphics.ImageFormatType YcbcrP010 = 54;
[<Android.Runtime.Register("YCBCR_P010", ApiSince=31)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Graphics.ImageFormatType enum directly instead of this field.", true)>]
val mutable YcbcrP010 : Android.Graphics.ImageFormatType
Valore del campo
Value = 54- Attributi
Commenti
Formato ANDROID YUV P010.
P010 è un formato semiplanare YCbCr 4:2:0 costituito da un piano WxH Y seguito da un piano CbCr Wx(H/2). Ogni esempio è rappresentato da un valore little-endian a 16 bit, con i 6 bit inferiori impostati su zero.
Ad esempio, l'oggetto android.media.Image
può fornire dati in questo formato da un android.hardware.camera2.CameraDevice
oggetto tramite un android.media.ImageReader
oggetto se questo formato è supportato da android.hardware.camera2.CameraDevice
.
Documentazione java per android.graphics.ImageFormat.YCBCR_P010
.
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.