-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
533 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Thermal Images Documentation | ||
## Features | ||
- Reading and Displaying the image | ||
- Converting the image to heatmap image | ||
- Enhancing the Image by Erosion and Dialation | ||
- Finding Contour Points | ||
- Showing the Temperature | ||
|
||
## Documentation | ||
- The Threashold Temperature is different for different sensors. Make sure to change it according to your camera. | ||
- Make sure to install the dependencies. | ||
- You can run the code on jupyter notebook or any other Python Enviourment. | ||
|
||
## Tech | ||
> It uses the following Python Libraries : | ||
- [OpenCV] - Python library for image processing | ||
- [Numpy] - It has support for large, multi-dimensional arrays and matrices. | ||
- [Matplotlib] - It is a Plotting Library. | ||
|
||
|
||
## Installation and Dependencies | ||
This model requires [Python3](https://www.python.org/downloads/) to run. | ||
|
||
Install the dependencies. | ||
> Run the following command in a local Enviourment | ||
``` | ||
pip install numpy | ||
``` | ||
``` | ||
pip install matplotlib | ||
``` | ||
``` | ||
pip install opencv-python | ||
``` | ||
> Or you can simply run the following | ||
```sh | ||
pip install -r requirments.txt | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
numpy==1.19.5 | ||
opencv-python==4.2.0.32 |
Large diffs are not rendered by default.
Oops, something went wrong.