from where and how to down image (colored &gray) to work on MATLAB on my computer?

5 vues (au cours des 30 derniers jours)
Ahmed
Ahmed le 8 Oct 2024
from where and how to down image (colored &gray) to work on MATLAB on my computer?

Réponses (1)

Zinea
Zinea le 8 Oct 2024
Hi @Ahmed,
I think you meant how to load a downloaded image present in your computer into MATLAB. For this, you can use the '"imread" and "imshow" functions as given below:
image = imread('path_to_your_image.jpg');
imshow(image); % Display the image
In case you have a colored image and need to convert it to grayscale, you may use the "rgb2gray" function:
Given below are the documentation links for the functions used:

Catégories

En savoir plus sur Modify Image Colors dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by