Skip to content

Commit 1640310

Browse files
authored
added images in the readme
1 parent 49c9d6c commit 1640310

File tree

1 file changed

+58
-0
lines changed
  • ImageProcessingScripts/Camera Based Thermal Screening

1 file changed

+58
-0
lines changed

ImageProcessingScripts/Camera Based Thermal Screening/README.md

+58
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,61 @@ pip install numpy
2626
pip install opencv-python
2727
pip install matplotlib
2828
```
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.
47+
48+
```
49+
git clone https://github.com/<your-github-username>/Awesome_Python_Scripts.git
50+
```
51+
52+
**3.** Navigate to the project directory.
53+
54+
```
55+
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.
68+
69+
#### SCREENSHOTS:
70+
71+
**1. Initial Image**
72+
<div align="center">
73+
74+
<img width="700" height="450" src="https://github.com/Umesh-01/Awesome_Python_Scripts/blob/patch-10/ImageProcessingScripts/Camera%20Based%20Thermal%20Screening/Images/thermal_scr_img.png">
75+
</div>
76+
77+
78+
**2. Final Output**
79+
<div align="center">
80+
81+
<img width="700" height="450" src="https://github.com/Umesh-01/Awesome_Python_Scripts/blob/patch-10/ImageProcessingScripts/Camera%20Based%20Thermal%20Screening/Images/image_with_temp.png">
82+
</div>
83+
84+
85+
### Contributor
86+
<a href="https://github.com/Umesh-01">Umesh Singh</a>

0 commit comments

Comments
 (0)