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

https://github.com/chinmayeegade/matlab_image_processing

Codes to various image editing, processing and filtering methods offered by MatLab
https://github.com/chinmayeegade/matlab_image_processing

image-processing matlab

Last synced: 15 days ago
JSON representation

Codes to various image editing, processing and filtering methods offered by MatLab

Awesome Lists containing this project

README

          

# Matlab_Image_Processing
- This repositpry comprises codes to various image editing, processing and filtering methods offered by MatLab
- MATLAB is a programming and numeric computing platform used by millions of engineers and scientists to analyze data, develop algorithms, and create models.

# Gray Scale
- Use the code and enter the following commands into the command window:
- >> img=imread('image.jpg');
>> Replace 'image.jpg' with the name of your image
>> I=rgb_gray(img);
>> figure, imshow(I)

# Binary
- Use the code and enter the following commands into the command window:
- >> img=imread('image.jpg');
>> Replace 'image.jpg' with the name of your image
>> I=rgb_binary(img);
>> figure, imshow(I)

# Complement
- Use the code and enter the following commands into the command window:
- >> img=imread('image.jpg');
>> Replace 'image.jpg' with the name of your image
>> I=complement(img);
>> figure, imshow(I)

Original Image

Gray Scale

Binary Image

Complement of Binary