Problem with subplotting the results

조회 수: 2 (최근 30일)
Bhimasen
Bhimasen 2014년 5월 27일
답변: rifat 2014년 5월 27일
I am currently working on a project entitled "CBIR using wavelets and correlation." In this color feature vector of a query image is extracted and compared with the color fv's of other images in database using correlation function. But I am facing a difficulty in displaying the results. I have a code of it. Kindly try to help me out.. Thank You
fvc1= color fv of query; fvc_i=color fv of i th image in database(i=1:60, coz my database has 60 images); r=correlation coeff of fvc1 and fvc_i;
  • *Here is the prob:if r>.95 figure(1) subplot(8,8,i); imshow(i); title('Image with accuracy more than 95%');elseif r>.8&&r<.95 figure(2) subplot(8,8,i); imshow(i); title('Image with accuracy between 80%- 95%');end;If i execute this code, the error is:"Index exceeds number of subplots."
Kindly help me

답변 (1개)

rifat
rifat 2014년 5월 27일
you are using i as an index, then displaying it as an image using imshow.. what it 'i'? If it is an image, then use a different index

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by