how to create a mat file
显示 更早的评论
can we enter images, characters and numbers in one matfile??... if yes can u please show how to create a matfile for the below data
1 image1.jpg, 1.23, 5.26, fruit
2 image2.jpg, 4.56, 7.25, vegetable
3 image3.jpg, 1.34, 6.77, fruit
4 image4.jpg, 1.96, 6.88, fruit
5 image5.jpg, 7.23, 2.33, vegetable
and so on...
image1.jpg... are the names of the images... next two column values are features extracted... and the last column is the text what that image is....
after creating this matfile when i select image2.jpg using imread i wanted it to get displayed that "it is a fruit"....
please do reply....
采纳的回答
更多回答(1 个)
Azzi Abdelmalek
2012-11-30
编辑:Azzi Abdelmalek
2012-11-30
Im1=imread('image1.jpg');
Im2=imread('image1.jpg');
save filename Im1 Im2
%to call your images
load filename
imshow(Im1)
imshow(Im2)
4 个评论
Elysi Cochin
2012-11-30
Azzi Abdelmalek
2012-11-30
If you want, you can save whatever you want
v=[1.23 5.26;4.56 7.25]
text={'fruit','vegetable'}
save filename Im1 Im2 v text
Elysi Cochin
2012-11-30
Azzi Abdelmalek
2012-11-30
Suppose you want image1
text{1} % for image1
text{2} % for image2
Elys maybe you should read some basis matlab programming
类别
在 帮助中心 和 File Exchange 中查找有关 Convert Image Type 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!