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
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