File tree Expand file tree Collapse file tree 2 files changed +503
-252
lines changed Expand file tree Collapse file tree 2 files changed +503
-252
lines changed Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments