Skip to content

Commit 0c435f0

Browse files
authored
Merge pull request #7 from Ripan-Roy/main
I have added Temperature Detection and Documention file
2 parents 46e6b16 + 493090c commit 0c435f0

File tree

2 files changed

+503
-252
lines changed

2 files changed

+503
-252
lines changed

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+

0 commit comments

Comments
 (0)