An open API service indexing awesome lists of open source software.

https://github.com/gabrioliv/octave-image-processing-general

Simple Scripts for Image Processing compatible with GNU Octave.
https://github.com/gabrioliv/octave-image-processing-general

gnu-octave image-processing learning octave octave-scripts pdi processamento-digital-imagens programming testing

Last synced: 29 days ago
JSON representation

Simple Scripts for Image Processing compatible with GNU Octave.

Awesome Lists containing this project

README

          

# [Octave Scripts (Image Processing)](https://github.com/GabriOliv/octave-image-processing-general)

Simple Scripts for Image Processing compatible with GNU Octave.

---

[![GNU Octave](https://img.shields.io/badge/GNU%20Octave-5.2.0-blue)](https://www.gnu.org/software/octave/index)
[![Language Status](https://img.shields.io/badge/Language-pt--BR-success)](https://github.com/GabriOliv/octave-image-processing-general/blob/main/pt_br/README.md)
[![Language Status](https://img.shields.io/badge/Language-en-success)](https://github.com/GabriOliv/octave-image-processing-general/blob/main/README.md)

---

#### Test Images:

| File Name | Source | Title | Owner|
| ------ | ------ | ------ | ------ |
| "001_img.jpg" | [VisualVenom](https://visual-venom.tumblr.com/post/87744938514/secret-drinking-spot) | Secret drinking spot | [Troy Frederick](https://www.flickr.com/people/130811727@N04/) |

---

### How to Run:

* Unzip the scripts
* Open [Octave](https://www.gnu.org/software/octave/index)
* Select the folder inside "Folder Browser"
* Call Scripts in "Command Window"

Example 01:
```matlab
>> equali_img_save(imread('001_img.jpg'));
```
Example 02:
```matlab
>> A = imread('001_img.jpg');
>> equali_img_save(A);
```