docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Struct XRCpuImage.AsyncConversion

    Holds information related to an asynchronous camera image conversion request. Returned by ConvertAsync(ConversionParams).

    Implements
    IDisposable
    IEquatable<XRCpuImage.AsyncConversion>
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: UnityEngine.XR.ARSubsystems
    Assembly: Unity.XR.ARSubsystems.dll
    Syntax
    public struct XRCpuImage.AsyncConversion : IDisposable, IEquatable<XRCpuImage.AsyncConversion>

    Properties

    conversionParams

    The XRCpuImage.ConversionParams used during the conversion.

    Declaration
    public readonly XRCpuImage.ConversionParams conversionParams { get; }
    Property Value
    Type Description
    XRCpuImage.ConversionParams

    The parameters used during the conversion.

    status

    The status of the request.

    Declaration
    public XRCpuImage.AsyncConversionStatus status { get; }
    Property Value
    Type Description
    XRCpuImage.AsyncConversionStatus

    The status of the request.

    Methods

    Dispose()

    Dispose native resources associated with this request, including the raw image data. The NativeArray returned by GetData<T>() is invalidated immediately after calling Dispose().

    Declaration
    public void Dispose()

    Equals(object)

    Tests for equality.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj

    The object to compare against.

    Returns
    Type Description
    bool

    True if obj is of type XRCpuImage.AsyncConversion and Equals(AsyncConversion) also returns true; otherwise false.

    Overrides
    ValueType.Equals(object)

    Equals(AsyncConversion)

    Tests for equality.

    Declaration
    public bool Equals(XRCpuImage.AsyncConversion other)
    Parameters
    Type Name Description
    XRCpuImage.AsyncConversion other

    The other XRCpuImage.AsyncConversion to compare against.

    Returns
    Type Description
    bool

    True if every field in other is equal to this XRCpuImage.AsyncConversion, otherwise false.

    GetData<T>()

    Get the raw image data. The returned NativeArray is a direct view into the native memory. The memory is only valid until this XRCpuImage.AsyncConversion is disposed.

    Declaration
    public NativeArray<T> GetData<T>() where T : struct
    Returns
    Type Description
    NativeArray<T>

    A new NativeArray representing the raw image data. This method might fail; use NativeArray.IsCreated to determine the validity of the data.

    Type Parameters
    Name Description
    T

    The type of data to return. No conversion is performed based on the type; this is only for access convenience.

    Exceptions
    Type Condition
    InvalidOperationException

    Thrown if the asynchronous conversion status is not Ready or if the conversion is invalid.

    GetHashCode()

    Generates a hash suitable for use with containers like HashSet and Dictionary.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    A hash code generated from this object's fields.

    Overrides
    ValueType.GetHashCode()

    ToString()

    Generates a string representation of this XRCpuImage.AsyncConversion.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string representation of the conversion parameters.

    Overrides
    ValueType.ToString()

    Operators

    operator ==(AsyncConversion, AsyncConversion)

    Tests for equality. Same as Equals(AsyncConversion).

    Declaration
    public static bool operator ==(XRCpuImage.AsyncConversion lhs, XRCpuImage.AsyncConversion rhs)
    Parameters
    Type Name Description
    XRCpuImage.AsyncConversion lhs

    The XRCpuImage.AsyncConversion to compare with rhs.

    XRCpuImage.AsyncConversion rhs

    The XRCpuImage.AsyncConversion to compare with lhs.

    Returns
    Type Description
    bool

    True if lhs is equal to rhs, otherwise false.

    operator !=(AsyncConversion, AsyncConversion)

    Tests for inequality. Same as !Equals(AsyncConversion).

    Declaration
    public static bool operator !=(XRCpuImage.AsyncConversion lhs, XRCpuImage.AsyncConversion rhs)
    Parameters
    Type Name Description
    XRCpuImage.AsyncConversion lhs

    The XRCpuImage.AsyncConversion to compare with rhs.

    XRCpuImage.AsyncConversion rhs

    The XRCpuImage.AsyncConversion to compare with lhs.

    Returns
    Type Description
    bool

    True if lhs is not equal to rhs, otherwise false.

    Implements

    IDisposable
    IEquatable<T>
    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)