Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

doubt with this code

1 view (last 30 days)
DEEPTHI
DEEPTHI on 21 Feb 2013
I am deepthi.i am doing project in relevence feedback mechanism for CBIR. these 10 images are retrieved by the CBIR system a=imread(' '); axes(handles.axes2); imshow(a);
axes(handles.axes3); imshow(a);
axes(handles.axes4); imshow(a);
axes(handles.axes5); imshow(a);
axes(handles.axes6); imshow(a);
axes(handles.axes7); imshow(a);
axes(handles.axes8); imshow(a);
axes(handles.axes9); imshow(a);
axes(handles.axes10); imshow(a);
axes(handles.axes11); imshow(a);
b=imread(' '); axes(handles.axes1);% used to get the query from user imshow(b); i tried the code with the help of internet...but i am not getting the correct output..plz describe me whether the logic which i used is correct or not...in my project i want to clear all the checkbox if i click button.
a=get(findobj('Tag','Image1'),'String');
axes(handles.axes1);
imshow(a);
handles.rfQuery=a;
handles.relevance=1;
rfb=get(hObject,'Value');
if rfb==1 handles.checkbox1=a; else handles.icheckbox1=a; end handles.filename=a; According to the user query the system retrieve the top 10 images..user has to give feedback if user gave relevance mark to the Image1 in axes2,Image2 in axes3 so on then get the Image1,Image2... in axes1...this is my logics to be used for my program...plz correct the coding plzzzzzzzzzzz

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!