Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohankalbag/kohonen-self-organising-map
Course Project - Advanced Methods in Satellite Image Processing - Spring Semester 2023 - Indian Institute of Technology Bombay
https://github.com/rohankalbag/kohonen-self-organising-map
graphical-user-interface hyperspectral-image-dimensionality-reduction kohonen-som numba-jit python satellite-image-processing
Last synced: 3 days ago
JSON representation
Course Project - Advanced Methods in Satellite Image Processing - Spring Semester 2023 - Indian Institute of Technology Bombay
- Host: GitHub
- URL: https://github.com/rohankalbag/kohonen-self-organising-map
- Owner: rohankalbag
- Created: 2023-03-16T19:13:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-08T16:43:43.000Z (over 1 year ago)
- Last Synced: 2023-07-23T16:34:51.704Z (over 1 year ago)
- Topics: graphical-user-interface, hyperspectral-image-dimensionality-reduction, kohonen-som, numba-jit, python, satellite-image-processing
- Language: Python
- Homepage:
- Size: 294 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kohonen Self Organising Map
## GNR-602 : Advanced Methods in Satellite Image Processing
## Course Project*Abstract: This project contains the optimized implemention of a Numba-JIT accelerated pythonic implementation of the Kohonen Self Organising Map with user-specified grid matrix size, capable of taking a multispectral satellite image as input and generating a coded image using the trained SOM as a code book. The entire implementation is packaged as a python executable. We also restore the image from its codebook and compare it with original image, and visualize the results with vivid plots.*
[Project Files](https://iitbacin-my.sharepoint.com/:u:/g/personal/20d170033_iitb_ac_in/EU_LjvJoHBhOoA7GgfJpv-0BlsK5mMnNCdfzmVr2Sm6PWw?e=bOu5I7)
### Collaborators
- Rohan Rajesh Kalbag
- Durgaprasad Bhat
- Siddharth Anand
### To generate executable in Windows```bash
./generate_executable.ps1
```### To generate executable in Ubuntu
```bash
chmod +x generate_executable.sh
./generate_executable.sh
```### Instructions for running `.exe`
**Image formats supported**: `.png`, `.jpg`, `.mat` (single image in a single array in `x_pixels` * `y_pixels` * `n_channels` for `.mat`)
**Selecting Input file**: Press the `Select Input File` button, use the file navigator to navigate to the required file. Select the file
**Selecting destination folder**: Press the `Select Output Directory` button, use the file navigator to navigate to the folder where the outputs are needed to be stored. Select the folder
**Input parameters**:
- Length of Kohonen Map (nodes) : positive integer. number of nodes in the Kohonen map in x direction
- Breadth of Kohonen Map (nodes): positive integer. positive integer, number of nodes in the Kohonen map in y direction
- Initial Learning Rate for Training: positive float. Learning rate for the first iteration
- Maximum Number of Iterations: positive integer. The number iteration the models needs to be trained for.
- Neighborhood Function Spread Factor : positive float (Usually less than 1) Larger factor will increase the number of neighbors affected and the degree of effect. Controls the spread of the neighborhood functionPress the `Validate` button to check if the given parameters are compatible. If the parameters are compatible, the `Generate` button will appear. Press `Generate` to start running the algorithm
Please wait till the training completes and the results are generated. The time taken depends on the image type and the input parameters. Do not close the window, it will automatically close once the results are generated. For checking the progress of the training, please see the console (terminal) that will popup behind the GUI.
**Outputs**:
- `150x150.png` : A downsized version of the input image ($150$ x $150$ pixels)
- `coded_image.npy` : A numpy file containing the coded image. Users can import this into their own python code using `numpy.load()`
- `coded_image.txt` : A human readable version of the coded image with the best matching Kohonen cell for each pixel.
- `kohonen.png` : The trained Kohonen map visualized as an image
- `restored.png` : The final result. The original image reconstructed using the best matching Kohonen map cells.## Results
- Find a detailed analysis of the code, screenshots of the GUI, experiments and inferences in the [Presentation](https://github.com/rohankalbag/kohonen-self-organising-map/blob/main/presentation.pdf)
## Some Cool Inferences
#### Tom and Jerry
- Input Image (was resized to $150$ x $150$)
- Parameters
```
{
l = 12
b = 12
lr = 0.5
niter = 20
nbf = 0.03
}
```- Kohonen Map
- Restored Image
## RGB (3 channel) Satellite Image of Mumbai
- Input Image (was resized to $200$ x $200$)
- Parameters
```
{
l = 20
b = 35
lr = 0.25
niter = 100
nbf = 0.02083
}
```- Kohonen Map
- Restored Image