Skip to content

Commit b8f09a2

Browse files
committed
Minor typo fixed
1 parent ce6a1ca commit b8f09a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ The `SortNode` object can be initialize with 2 arguments:
3737

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

40-
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
40+
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
4141

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

0 commit comments

Comments
 (0)