Skip to content

Commit 9a592fb

Browse files
authored
Merge branch 'main' into main
2 parents 381b587 + 0c435f0 commit 9a592fb

File tree

6 files changed

+533
-0
lines changed

6 files changed

+533
-0
lines changed

Thermal Images/data/input.mp4

1.92 MB
Binary file not shown.

Thermal Images/data/original-1449.png

176 KB
Loading

Thermal Images/data/original.png

164 KB
Loading

Thermal Images/readme.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Thermal Images Documentation
2+
## Features
3+
- Reading and Displaying the image
4+
- Converting the image to heatmap image
5+
- Enhancing the Image by Erosion and Dialation
6+
- Finding Contour Points
7+
- Showing the Temperature
8+
9+
## Documentation
10+
- The Threashold Temperature is different for different sensors. Make sure to change it according to your camera.
11+
- Make sure to install the dependencies.
12+
- You can run the code on jupyter notebook or any other Python Enviourment.
13+
14+
## Tech
15+
> It uses the following Python Libraries :
16+
17+
- [OpenCV] - Python library for image processing
18+
- [Numpy] - It has support for large, multi-dimensional arrays and matrices.
19+
- [Matplotlib] - It is a Plotting Library.
20+
21+
22+
## Installation and Dependencies
23+
This model requires [Python3](https://www.python.org/downloads/) to run.
24+
25+
Install the dependencies.
26+
> Run the following command in a local Enviourment
27+
```
28+
pip install numpy
29+
```
30+
```
31+
pip install matplotlib
32+
```
33+
```
34+
pip install opencv-python
35+
```
36+
> Or you can simply run the following
37+
38+
```sh
39+
pip install -r requirments.txt
40+
```
41+

Thermal Images/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
numpy==1.19.5
2+
opencv-python==4.2.0.32

Thermal Images/thermal_image_processing.ipynb

Lines changed: 490 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)