---
name: "offVideoObjectDetectProgress"
mode: "kit"
versionRequirements:
  - { name: "AIKit", version: "1.1.0" }
  - { name: "@ray-js/ray", version: "1.6.29" }
platform:
  - "iOS"
  - "Android"
async: true
title: "offVideoObjectDetectProgress"
---

## offVideoObjectDetectProgress

> [VERSION] AIKit >= 1.1.0 | @ray-js/ray >= 1.6.29

> [PLATFORM] iOS, Android

> ⚡ **Supports Promise** — Returns a Promise when success / fail / complete callbacks are omitted.

### Description

Progress callback for video object recognition processing

### Parameters

`(listener: Function)`

| Parameter | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `listener` | `(params: DetectProgressEvent) => void` | Yes | - |  |

### Referenced Types

##### `interface` DetectProgressEvent

| Property | Type | Since | Description |
| --- | --- | --- | --- |
| `progress` | `number` | `1.1.0` | Processing progress 1-100 |


### Examples

#### Basic usage

```tsx
import { ai } from '@ray-js/ray'

const { offVideoObjectDetectProgress } = ai;

offVideoObjectDetectProgress((result) => {
  console.log('offVideoObjectDetectProgress', result);
});
```
