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: ImageProcessingScripts/Camera Based Thermal Screening/README.md
+58
Original file line number
Diff line number
Diff line change
@@ -26,3 +26,61 @@ pip install numpy
26
26
pip install opencv-python
27
27
pip install matplotlib
28
28
```
29
+
30
+
#### WORKFLOW:
31
+
32
+
1. We are importing the required libraries
33
+
2. Reading the image taken from a video of thermal camera
34
+
3. converting the image into grayscale, changing and applying the ColorMap, black and white to black and red
35
+
4. Then applying mask on the image
36
+
5. using function zeros_like() it will take all the structures like zero and then x, y, w, h are the coordinate for rectangle, copying the small rectangle part from this image using mask and then printing the average value of pixels to get the temperature
37
+
6. Now performing the bitwise and operator on heatmap and we have created not mask
38
+
7. After that draw rectangles for visualisation and write temperature for each rectangle, and finally display it
39
+
40
+
#### USAGE:
41
+
42
+
To start using this project, follow the below guidelines:
43
+
44
+
**1.** Fork this project/repository.
45
+
46
+
**2.** Clone your forked copy of the project/repository.
cd Awesome_Python_Scripts/Camera Based Thermal Screening/
56
+
```
57
+
58
+
**4.** Install the `requirements.txt` using the given command.
59
+
60
+
```
61
+
pip install -r requirements.txt
62
+
```
63
+
64
+
**5.** Run `camera_based_thermal_screening.ipynb` file in Google Colab or Jupyter Notebook or any other platform.
65
+
66
+
#### CONCLUSION:
67
+
We have created a project for thermal screening of any person using python with an image. And we have also learnt how to make such type of project for thermal screening, the output we got with this project is also attached here.
0 commit comments