Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
diffrxction authored Oct 2, 2022
2 parents 381b587 + 0c435f0 commit 9a592fb
Show file tree
Hide file tree
Showing 6 changed files with 533 additions and 0 deletions.
Binary file added Thermal Images/data/input.mp4
Binary file not shown.
Binary file added Thermal Images/data/original-1449.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Thermal Images/data/original.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions Thermal Images/readme.md
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
```

2 changes: 2 additions & 0 deletions Thermal Images/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy==1.19.5
opencv-python==4.2.0.32
490 changes: 490 additions & 0 deletions Thermal Images/thermal_image_processing.ipynb

Large diffs are not rendered by default.

0 comments on commit 9a592fb

Please sign in to comment.