Modeling3dReconstructEngine class abstract

3D object reconstruction engine.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

cancelDownload(String taskId) Future<int>
Cancels image download. Returns cancellation result. 0 indicates success, and other values indicate failure.
cancelUpload(String taskId) Future<int>
Cancels image upload. Returns cancellation result. 0 indicates success, and other values indicate failure.
close() Future<void>
Disables the 3D object reconstruction engine.
downloadModel(String taskId, String fileSavePath) Future<void>
Downloads a generated 3D object model.
downloadModelWithConfig(String taskId, String fileSavePath, Modeling3dReconstructDownloadConfig downloadConfig) Future<void>
Downloads the 3D object reconstruction task result using the custom configuration.
initTask(Modeling3dReconstructSetting setting) Future<Modeling3dReconstructInitResult>
Initializes a 3D object reconstruction task.
previewModel(String taskId, {Modeling3dReconstructPreviewListener? previewListener}) Future<void>
Previews a model.
previewModelWithConfig(String taskId, Modeling3dReconstructPreviewConfig previewConfig, {Modeling3dReconstructPreviewListener? previewListener}) Future<void>
Previews a model.
setReconstructDownloadListener(Modeling3dReconstructDownloadListener? listener) Future<void>
Sets a listener for model download.
setReconstructUploadListener(Modeling3dReconstructUploadListener? listener) Future<void>
Sets a listener for image upload.
uploadFile(String taskId, String filePath) Future<void>
Uploads images and triggers a 3D object reconstruction task.