pub trait MaaCustomRecognizer {
// Provided method
fn analyze(
&mut self,
sync_context: MaaSyncContext,
image: MaaImageBuffer,
task_name: String,
custom_recognition_param: String,
out_rect: MaaRectBuffer,
) -> Option<String> { ... }
}
Available on crate feature
custom_recognizer
only.