Show / Hide Table of Contents

    Interface IArucoCamera

    Captures images of a camera.

    Inherited Members
    IController.Configured
    IController.Ready
    IController.Started
    IController.Stopped
    IController.AutoStart
    IController.IsConfigured
    IController.IsReady
    IController.IsStarted
    IController.AddDependency(IController)
    IController.RemoveDependency(IController)
    IController.GetDependencies()
    IController.Configure()
    IController.StartController()
    IController.StopController()
    Namespace: ArucoUnity.Cameras
    Assembly: Assembly-CSharp.dll
    Syntax
    public interface IArucoCamera : IController

    Properties

    | Improve this Doc View Source

    CameraNumber

    Gets the number of cameras in the system.

    Declaration
    int CameraNumber { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    ImageDatas

    Gets the Images content.

    Declaration
    byte[][] ImageDatas { get; }
    Property Value
    Type Description
    Byte[][]
    | Improve this Doc View Source

    ImageDataSizes

    Gets the size of each ImageDatas.

    Declaration
    int[] ImageDataSizes { get; }
    Property Value
    Type Description
    Int32[]
    | Improve this Doc View Source

    ImageRatios

    Gets the ratios of each Images.

    Declaration
    float[] ImageRatios { get; }
    Property Value
    Type Description
    Single[]
    | Improve this Doc View Source

    Images

    Gets or sets the current images manipulated by OpenCV. There are CameraNumber images: one for each camera.

    Declaration
    Cv.Mat[] Images { get; }
    Property Value
    Type Description
    Cv.Mat[]
    | Improve this Doc View Source

    Name

    Gets the name of the camera system used.

    Declaration
    string Name { get; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Textures

    Gets the the current images manipulated by Unity. There are CameraNumber images: one for each camera.

    Declaration
    Texture2D[] Textures { get; }
    Property Value
    Type Description
    Texture2D[]

    Events

    | Improve this Doc View Source

    ImagesUpdated

    Called when the Images have been updated.

    Declaration
    event Action ImagesUpdated
    Event Type
    Type Description
    Action
    | Improve this Doc View Source

    UndistortRectifyImages

    Callback to undistort and rectify the images in parameters.

    Declaration
    event Action<Cv.Mat[], byte[][]> UndistortRectifyImages
    Event Type
    Type Description
    Action<Cv.Mat[], Byte[][]>
    • Improve this Doc
    • View Source
    Back to top Aruco Unity - Erwan Normand