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.
- Host: GitHub
- URL: https://github.com/gabrioliv/octave-image-processing-general
- Owner: GabriOliv
- Created: 2021-01-26T23:08:32.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-05T13:45:24.000Z (over 5 years ago)
- Last Synced: 2025-02-25T21:22:58.989Z (over 1 year ago)
- Topics: gnu-octave, image-processing, learning, octave, octave-scripts, pdi, processamento-digital-imagens, programming, testing
- Language: MATLAB
- Homepage:
- Size: 172 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
---
[](https://www.gnu.org/software/octave/index)
[](https://github.com/GabriOliv/octave-image-processing-general/blob/main/pt_br/README.md)
[](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);
```