add picture in matlab
10 ビュー (過去 30 日間)
古いコメントを表示
I want to add a picture to matlab , and need this image's matrix too. and I don't have more information from image proccessing. have you some matlab command to do this?
3 件のコメント
採用された回答
Ryan
2012 年 7 月 8 日
do you have the image processing toolbox? if so:
I = imread('imagename.extension');
The result will be a 2- or 3-D matrix I which can be visualized by the command imshow
figure(1), imshow(I)
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!