How can I read, in matlab, an image I have on my desktp with the imread () function?

조회 수: 1 (최근 30일)
matlab9000
matlab9000 2018년 4월 9일
답변: Wick 2018년 5월 1일
How can I read, in matlab, an image I have on my desktp with the imread () function?

답변 (1개)

Wick
Wick 2018년 5월 1일
You must put the name of the image in single quotes in the command. If the image is in a path beneath where MATLAB is currently executing, include the subfolders in the name. If it's somewhere else, use the entire path.
Assuming the file name is image_to_load.png then simply run:
img = imread('image_to_load.png');

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by