Skip to content

Commit

Permalink
Fixed README
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuzhny007 committed Aug 3, 2019
1 parent 2b80fa0 commit 92f7946
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 @@ -48,7 +48,7 @@ With this option the tracking can work match slower but more accuracy.

#### 5. Pipeline

5.1. Syncronous [pipeline](https://github.com/Smorodov/Multitarget-tracker/tree/master/cars_counting):
5.1. Syncronous [pipeline - SyncProcess](https://github.com/Smorodov/Multitarget-tracker/blob/master/example/VideoExample.h#L77):
- get frame from capture device;
- decoding;
- objects detection (1);
Expand All @@ -57,7 +57,7 @@ With this option the tracking can work match slower but more accuracy.

This pipeline is good if all algorithms are fast and works faster than time between two frames (40 ms for device with 25 fps). Or it can be used if we have only 1 core for all (no parallelization).

5.2. Pipeline with [2 threads](https://github.com/Smorodov/Multitarget-tracker/blob/master/example/VideoExample.h#L77):
5.2. Pipeline with [2 threads - AsyncProcess](https://github.com/Smorodov/Multitarget-tracker/blob/master/example/VideoExample.h#L77):
- 1th thread takes frame t and makes capture, decoding and objects detection;
- 2th thread takes frame t-1, results from first thread and makes tracking and results presentation (this is the Main read).

Expand Down

0 comments on commit 92f7946

Please sign in to comment.