InputImage class

Image format that ML Kit takes to process the image.

Constructors

InputImage.fromBitmap({required Uint8List bitmap, required int width, required int height, int rotation = 0})
Creates an instance of InputImage from bitmap data.
factory
InputImage.fromBytes({required Uint8List bytes, required InputImageMetadata metadata})
Creates an instance of InputImage using bytes.
factory
InputImage.fromFile(File file)
Creates an instance of InputImage by passing a file.
factory
InputImage.fromFilePath(String path)
Creates an instance of InputImage from path of image stored in device.
factory

Properties

bitmapData Uint8List?
Raw bitmap pixel data.
final
bytes Uint8List?
The bytes of the image.
final
filePath String?
The file path to the image.
final
hashCode int
The hash code for this object.
no setterinherited
metadata InputImageMetadata?
The image data when creating an image of type = InputImageType.bytes.
final
rotation int?
The rotation degrees for bitmap images.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type InputImageType
The type of image.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a json representation of an instance of InputImage.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited