> For the complete documentation index, see [llms.txt](https://assetstore.easymlkit.voxelbusters.com/tutorials/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://assetstore.easymlkit.voxelbusters.com/tutorials/input-sources/image-input-source.md).

# Image Input Source

Use <mark style="color:purple;">**ImageInputSource**</mark>  if you want to process the input in texture format.

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