Live Camera Input Source

Use LiveCameraInputSource if you want to process the input directly from live camera feed.

using VoxelBusters.EasyMLKit;
private IInputSource CreateLiveCameraInputSource()
{
    IInputSource inputSource = new LiveCameraInputSource()
    {
        EnableFlash = false,
        IsFrontFacing = false
    };

    return inputSource;
}
Options
Description

Enable Flash

Pass true to switch on the device flash

Is Front Facing

Pass true to enable front facing camera feed as input

Last updated