Skip to content

Commit

Permalink
Minor typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lamhoangtung committed Apr 23, 2021
1 parent ce6a1ca commit b8f09a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ The `SortNode` object can be initialize with 2 arguments:

With each frame, you will need to call `update` method.

This method except a single arguments that had a the format `List[List[float]]`, which means a list of detected object in that frame. Each object will have the format: `[x_top, y_top, width, height, confidence]` or `[x_top, y_top, width, height, confidence, landmark_x1, landmark_y1, ...]` for addtional landmark associated with each bounding box
This method expect a single arguments that had a the format `List[List[float]]`, which means a list of detected object in that frame. Each object will have the format: `[x_top, y_top, width, height, confidence]` or `[x_top, y_top, width, height, confidence, landmark_x1, landmark_y1, ...]` for additional landmark associated with each bounding box

The `update` method will return a list of tracked object in the format `[List[Object]]`, each object will have the following structure:
The `update` method will return a list of tracked object in the format `List[Object]`, each object will have the following structure:
```js
{
bbox: List[(int) x_top, y_top, width, height],
Expand Down

0 comments on commit b8f09a2

Please sign in to comment.