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
- Host: GitHub
- URL: https://github.com/chinmayeegade/matlab_image_processing
- Owner: Chinmayeegade
- Created: 2022-01-24T10:18:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-26T18:45:41.000Z (about 4 years ago)
- Last Synced: 2025-02-28T00:57:46.440Z (over 1 year ago)
- Topics: image-processing, matlab
- Language: MATLAB
- Homepage:
- Size: 805 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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