Comment on page
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 modified 1yr ago