Easy ML Kit
  • Easy ML Kit
  • Setup
    • Installation
    • Settings
    • Common Errors and Solutions
  • Usage Overview
  • Release Notes
    • 2.3.1
    • 2.3.0
    • 2.2.0
    • 2.1.0
    • 2.0.0
    • 1.2.0
  • Input Sources
    • Image Input Source
    • Live Camera Input Source
    • AR Foundation Camera Input Source
  • Features
    • Barcode Scanner
    • Object Detector and Tracker
    • Text Recognizer
    • Digital Ink Recognizer
Powered by GitBook
On this page
  1. Input Sources

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);
}

Previous1.2.0NextLive Camera Input Source

Last updated 1 year ago