For the complete documentation index, see llms.txt. This page is also available as Markdown.

Image Input Source

Use ImageInputSource if you want to process the input in texture format.

using VoxelBusters.EasyMLKit;
private IInputSource CreateImageInputSource(Texture2D texture)
{
    return new ImageInputSource(texture);
}

Last updated