MATLAB: Doubt with check boxes

cbir

hi i am deepthi….i am doing project in relevence feedback for cbir….i implemented the project… code is
function displayResults(filename, header)
figure('Position',[50 50 1300 690], 'MenuBar', 'none', 'Name', header, 'Resize', 'off', 'NumberTitle', 'off');
% Open 'filename' file… for reading… fid = fopen(filename);
i = 1; % Subplot index on the figure…
while 1 imagename = fgetl(fid); if ~ischar(imagename), break, end % Meaning: End of File…
[x, map] = imread(imagename);
subplot(2,5,i);
subimage(x, map);
i = i + 1;
end
fclose(fid);
result is it will display 10 images…. i dono how to display 1 checkbox(named relevant) under each image…plz help me i dono about position of checkbox to be display…i have to get feedback from the user and at the bottom in the middle i want to display 1 button(feedback)…plz help me….

Best Answer

uicontrol('Style','checkbox')
%
doc uicontrol