Comment on page
2.0.0
- Delete folders under Assets/Plugins/VoxelBusters (com.voxelbusters.*)
- Import the new update.
- introduced the IImageInputSource interface for all image based inputs. Replace IInputSource with IImageInputSource if it throws an error.
- An input source needs to be passed to the Prepare method rather than to feature constructor.
- Added Custom model tflite file loading for Object Detection
- Added Digital Ink Recognizer feature
error CS1503: Argument 1: cannot convert from 'VoxelBusters.EasyMLKit.IInputSource' to 'VoxelBusters.EasyMLKit.IImageInputSource'
Resolution : Replace IInputSource type with IImageInputSource
error CS0619: 'Prepare(..) is obsolete: 'This method is obsolete. Pass Input source instance as first parameter to Prepare method.'
Resolution : You need to pass the input source (IImageInputSource or IDrawingInputSource) to Prepare method as first parameter.
Last modified 6mo ago