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....

 채택된 답변

Walter Roberson
Walter Roberson 2012년 11월 30일

0 개 추천

When the user selects an image file, you need to do feature extraction on that image file in the same way as it was done on the sample images, and then you need to match the features to those stored to find the closest match.
The questions then become (1) how much weight to give to the distance between the test features and the ideal features; and (2) how far away from the ideal features should be allowed before the program says "I don't know".
Unless, that is, the intention is to be able to input images of fruits or vegetables that the program was not given specific information about, and the program is required to estimate whether "fruit" or "vegetable" is more likely ?

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 11월 30일
편집: Azzi Abdelmalek 2012년 11월 30일

0 개 추천

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
Elysi Cochin 2012년 11월 30일
sir what about the remaining fields.... neednt we enter it to matfile??
when i select an image using imread i want it to get displayed that "it is a fruit" taking the value in the last column of the table i showed above....
please do reply..
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
Elysi Cochin 2012년 11월 30일
sir then how to get the text "fruit" or "vegetable" when after selecting an image using imread... please reply sir...
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에 대해 자세히 알아보기

제품

태그

질문:

2012년 11월 30일

편집:

2016년 4월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by