Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
24 Oct 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos verma, mansi

image retrieval code is not getting downloaded. its showing an error of invalid archieve. please update it and if possible send a copy to
mansiverma65@gmail.com

thank u!!

05 Oct 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Raksha

25 May 2009 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Bernd

are you rating your owm files?

20 May 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Ê, ampire

thank you for your code! But I think the code above is not very exact.it's code based on you:
function [Hists,files] = getImageHistsDir(DirName)
D = dir(DirName);
count = 0;
 
for (i=3:length(D))
    if ((strcmpi(D(i).name(end-3:end), '.jpg')==1) | (strcmpi(D(i).name(end-3:end), '.jpeg')==1))
        count = count + 1;
        Hists{count}=getImageHists([DirName '\\' D(i).name]);
        files{count}=[DirName '\\' D(i).name];
        fprintf('%.4d File %40s computed...\n',count,files{count});
    end
end
savefile='mydatabase';
save (savefile, 'files', 'Hists')
Making use of it,you can get imagesdir in your images files.thank you!

22 Apr 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos khan, mubashar

i managed to get the images to be computed however i couldnt get the .mat file saved in a way so that when i used the code from the original to run it, it would jus come up with the error about Nfiles. can any 1 help me out with this? thanks

22 Apr 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos khan, mubashar

its k.. managed to solve it!! :-D

20 Apr 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Vladutu, Liviu

Try the example with the 'Classical_guitar.jpg'. It fails miserably to find the closest (as resemblance) figure, ie 'Classical_Guitar_two_views.jpg'.
Try: warning off;searchImageHist('Classical_Guitar.jpg', 'model1Hist', 11);

10 Apr 2009 Generate report of .m files in html table Generates a report of the m-files in a given directory. Results are stored in an html file. Author: Theodoros Giannakopoulos Shadik

Thats was very useful - thanks a lot!

10 Apr 2009 Generate report of .m files in html table Generates a report of the m-files in a given directory. Results are stored in an html file. Author: Theodoros Giannakopoulos Shadik

Thats was very useful - thanks a lot!

24 Feb 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Giannakopoulos, Theodoros

Hi guys, thanx alot for your comments. Sorry for the looong delay, but I hadn't checked the forum for quite a long time. Anyway, I am posting a simple function that computes the color histograms of a whole directory of images. In this way you will be also able to build your training data. You can use this function and then store the returned histograms (along with the filenames) in a mat file.

Matlab code:

function [Hists, files] = getImageHistsDir(DirName)

D = dir(DirName);

count = 0;

for (i=3:length(D))
    if ((strcmpi(D(i).name(end-3:end), '.jpg')==1) | (strcmpi(D(i).name(end-3:end), '.jpeg')==1))
        count = count + 1;
        [Hists{count}] = getImageHists([DirName '\\' D(i).name]);
        files{count} = [DirName '\\' D(i).name];
        fprintf('%.4d File %40s computed...\n',count,files{count})
    end
end

As you can see, you just specify the directory name in which the images are stored. This is actually what Nicola Franzoso has provided, but in a function mode.

15 Jan 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos kartik

i am trying to build a image retrival system with information provided for each image ,hence actin as an image based search engine
program works great!!!!!!!!!!!!!!!!!

i would like to know about the deccison threshold used in in the program.on what basis the threshold were set ,how threshold values mentioned in the program were calculated,were they on the basis of intensity value or something else .i would like to undrstand the threshold in program

the threshold given are t=0.010 AND t2=0.8
how were these given and how it was calcualted and compared

15 Jan 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos kartik

since i am new to matlab,and i am trying to learn all the basics as quick as possible,,

i would like to know how exactly the database is created for images say if i have 10 images,where would i write the program for creating the database in matlab,and if images are in folder then how would i link it
explanation given above in one of the comment is not making me understand it properly

can anybody make this thing clear to me
requesting all the pioneers in Digtial image processing
need help in quick time.

15 Jan 2009 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos cqupt, cqupt

I has solve it!

29 Dec 2008 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Franzoso, Nicola

Great work Theodoros.
About for create a database of new images i have try with this and work. In my sample the images are 17 from 1 to 17.jpg:

savefile = 'mydatabase.mat';

for numimma = 1:17 % 17 images in my sample
    
    imageName = strcat(num2str(numimma), '.jpg');
    
    % compute 3-D image histograms (HSV color space):
    [Hist, RGBQ] = getImageHists(imageName);
    
    isto = {Hist};
    imshow(RGBQ);
    drawnow
    dataisto(numimma) = isto;
    datafile(numimma) = {imageName};
    
end

save (savefile, 'datafile', 'dataisto')

19 Dec 2008 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Amir abbas

23 Nov 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Giannakopoulos, Theodoros

22 Nov 2008 Image retrieval - Query by Example Demo This demo provides a simple query by image example method, based on HSV values. Author: Theodoros Giannakopoulos Sundani, Harsh

Thanks a lot for the program....It works great!!.....

I am trying to create a image retrival program for medical images and will be using this code for the program. Could you please help me create my own database(with new image histograms) and storing it in a new .mat file...

03 Oct 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Ala, saud

12 Sep 2008 Color Detection Using HSV Color Space (Training and Testing) The provided Matlab functions demonstrate a simple method for training and testing a color detection Author: Theodoros Giannakopoulos Ramireez, jose

Great man :) just what I was looking

31 Jul 2008 Some Basic Audio Features Use the provided m-files for computing the features of an audio classification problem Author: Theodoros Giannakopoulos Firmansyah, Heri

23 Jul 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Giannakopoulos, Theodoros

Thank you for your interest. I am not sure I understand what you ask. The audio input is ploted in line 111, and the soundcard is initialized in line 34. The current audio block is read in line 171, using command getdata().

18 Jul 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos pushkar, arun

with refrence to --->Real Time Microphone and Camera data acquisition and audio-video processing.

i am intrested in the real time audio plote formed in 1,1 subplot of your example can you help me out in giving the code?

18 Jun 2008 Generate Animated GIF Files for Plotting Audio Data This m-file generates a animated GIF file that visualizes audio data. Author: Theodoros Giannakopoulos P., I.

Very interesting.

12 Jun 2008 Some Basic Audio Features Use the provided m-files for computing the features of an audio classification problem Author: Theodoros Giannakopoulos Idrank, K.

20 May 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Giannakopoulos, Theodoros

You probably don't have a web-camera connected to your computer. If this is the case, please run the realTimeMic() function, with the 3rd argument equal to zero (no camera data is used).

20 May 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos dd, dd

--------------------------------------------------------------------------
??? Error using ==> videoinput.videoinput at 233
There are no devices installed for the specified ADAPTORNAME. See IMAQHWINFO.

Error in ==> realTimeMic at 45
    vid = videoinput('winvideo', 1);

14 May 2008 Some Basic Audio Features Use the provided m-files for computing the features of an audio classification problem Author: Theodoros Giannakopoulos kong, daniel

it would be much better if each input and output were clearly noted and explained in each .m file.

06 May 2008 Some Basic Audio Features Use the provided m-files for computing the features of an audio classification problem Author: Theodoros Giannakopoulos hussein, walid

30 Apr 2008 Manual Audio Annotation AudioAnnotation Demo v.1.0 is an open source demo implemented in Matlab(R) for manual segmentation a Author: Theodoros Giannakopoulos M., H.

23 Apr 2008 Color Detection Using HSV Color Space (Training and Testing) The provided Matlab functions demonstrate a simple method for training and testing a color detection Author: Theodoros Giannakopoulos Kyaw Kyaw, Ye Naung

30 Mar 2008 Manual Audio Annotation AudioAnnotation Demo v.1.0 is an open source demo implemented in Matlab(R) for manual segmentation a Author: Theodoros Giannakopoulos Wu, Sammy

It's awesome. However, if some other features like MFCC, Sub-band Energies are added, it's perfect for audio feature analysis. In addition, a mistake can be found in file "parseFeatureExctraction.m" line 23, where "strCom = sprintf('FeatureSeq = %s(signal, win*Fs, win*Fs, Fs);', FeatureStr);" the later "win*Fs" should be "step*Fs"..a ha.

22 Mar 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Antel., G

03 Mar 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos Huen, A.

03 Mar 2008 Color Detection Using HSV Color Space (Training and Testing) The provided Matlab functions demonstrate a simple method for training and testing a color detection Author: Theodoros Giannakopoulos Jan, Semeth

07 Feb 2008 Real Time Microphone and Camera data acquisition and audio-video processing This Matlab-code is a demo for real-time audio and image processing. Author: Theodoros Giannakopoulos barragán, diego

Good Work

24 Jan 2008 Manual Audio Annotation AudioAnnotation Demo v.1.0 is an open source demo implemented in Matlab(R) for manual segmentation a Author: Theodoros Giannakopoulos kumar, mani

 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com