You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-4Lines changed: 21 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,24 @@ chmod 700 utils/clean.bash
24
24
./utils/clean.bash < .gitignore
25
25
```
26
26
27
-
## Webcam Stream and measure FPS
28
-
Use **chrono** library to measure time and number of frame per second.
27
+
## Webcam Stream
28
+
The detach method ```t1.detach()``` is used because the main thread don't need to wait for thream being processing and return. Instead, it will get the dataframe. The process happens simultaneously.
29
29
30
+
## Measuring FPS and Elapsed time
31
+
I first use **chrono** liberary to measure the time but found that it's hard to convert to seconds unit for calculating FPS. So, I use **ctime**.
0 commit comments