File size: 1,860 Bytes
26187fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# AIComputerVision
This project contains various computer vision and AI related python scripts

Link to full playlist: https://www.youtube.com/watch?v=UM9oDhhAg88&list=PLWw98q-Xe7iH8UHARl8RGk8MRj1raY4Eh

Below is brief description for each script:

1. Cat Dog detection:
This script can detect cats and dogs in a frame. You can replace cat or dog with any other object you want to detect.

2. Centroidtracker:
This script helps in tracking any object in a frame. We have used this in person_tracking.py script in order to track persons in the frame.

3. Dwell Time Calculation:
This script calculates the time a person has spent in a frame. It is a good example of calculating total time a person was present in frame.

4. Face Detection:
This script detects face in person image or in a frame

5. FPS Example:
While inferencing on a video file or frame from live usb webcam, its always a good idea to keep a check on how much fps we are getting. This script shows approx fps on frame.

6. OpenCV Example:
This script shows basic usage of opencv

7. Person Detection in Image File:
This script detects person in image file

8. Person Detection in Video File:
This script detects person in video file. Test video file is present in video dir.

9. Person Tracking:
This script detects person and keeps tracking them in the frame. It assigns a unique ID to each detected person.

10. Monitor Social Distance
This script monitors social distance between the persons. If it is less than a threshold value, we display bounding box in red otherwise green.

11. Drawing tracking line:
This script draws a line denoting where the person has entered in the frame and where he has moved in the frame. 

12. Face Mask Detection: 
This script checks if a person is wearing face mask or not

13. Person Counter:
This script counts the number of person present in the frame.