aaa
aaa 

所属分类:Windows编程
开发工具:matlab
文件大小:103KB
下载次数:1
上传日期:2014-10-18 15:01:14
上 传 者here.senthil
说明:  for lincense plate recognition

文件列表:
aaa\123.jpg (6164, 2014-10-08)
aaa\1__.jpg (3723, 2014-10-08)
aaa\2__.jpg (4006, 2014-10-08)
aaa\Contents.m (3425, 2007-11-23)
aaa\getargs.m (961, 2007-11-23)
aaa\htmldoc\alpha.png (273, 2003-10-03)
aaa\htmldoc\c++.png (327, 2003-10-03)
aaa\htmldoc\c.png (252, 2003-10-03)
aaa\htmldoc\demoicon.gif (214, 2003-10-03)
aaa\htmldoc\down.png (133, 2003-10-03)
aaa\htmldoc\fortran.png (265, 2003-10-03)
aaa\htmldoc\hp.png (255, 2003-10-03)
aaa\htmldoc\index.html (2704, 2007-11-23)
aaa\htmldoc\left.png (136, 2003-10-03)
aaa\htmldoc\linux.png (272, 2003-10-03)
aaa\htmldoc\m2html.css (1002, 2003-10-03)
aaa\htmldoc\matlabicon.gif (574, 2003-10-03)
aaa\htmldoc\mex.png (242, 2003-10-03)
aaa\htmldoc\right.png (136, 2003-10-03)
aaa\htmldoc\sgi.png (263, 2003-10-03)
aaa\htmldoc\simplegabortb-v1.0.0\Contents.html (5433, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\getargs.html (6148, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\graph.dot (1314, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\graph.html (2788, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\graph.map (1457, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\graph.png (11717, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\index.html (3750, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_createfilterbank.html (18199, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_createfilterf2.html (13420, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_demo01.html (8401, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_filterwithbank.html (16030, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_filterwithbank2.html (11618, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_normalizesamplematrix.html (4527, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_plotfilters2.html (7594, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_resp2samplematrix.html (7637, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_rotatesamples.html (5586, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_scalesamples.html (5725, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_solvefilterparams.html (5668, 2007-11-23)
aaa\htmldoc\simplegabortb-v1.0.0\sg_version.html (2967, 2007-11-23)
aaa\htmldoc\simulinkicon.gif (977, 2003-10-03)
... ...

Gabor Filtering Toolbox v 1.0.0 for Matlab ------------------------------------------ Changelog --------- Version 1.0.0 - First stable release. Includes now: * sg_version.m * sg_filterwithbank2.m * Contents.m * m2html generated documentation Version 0.2.2 - Improved 'verbose' option for sg_createfilterbank, verbose=1 is now faster and verbose=2 displays all created filters in both frequency and spatial domain. Version 0.2.1 - Dependency to statistics toolbox was dropped by own implementation of norminv() in sg_createfilterf2.m Version 0.2 - The package now includes getargs.m. - sg_createfilterf2.m assigns all output arguments with all function parameters. Version 0.1 - Initial release Short introduction to usage of Gabor toolbox -------------------------------------------- First, an image is loaded and converted to double. The image has likely three color channels even if it is a gray-scale image, so only one of them must be selected. While not strictly necessary, the image can be also scaled to [0,1] instead of normal [0,255]. image=imread('someimage.jpg'); % load image image=image(:,:,1); % select only one color channel image=double(image)./256; % convert to double and scale to [0,1] Then, a filterbank can be created. bank=sg_createfilterbank(size(image), 0.2 , 5, 4,'verbose',1); creates a filterbank with the size of the image, the frequency of the highest frequency filter is 0.2, 5 filters at different frequencies and 4 orientations are created. The created filter bank will be displayed. Only half of the filterbank is created, because responses for the second half of the filter bank are complex conjugates of the responses from the first half. The filterbank can be used to filter images. r=sg_filterwithbank(image,bank,'method',1); The responses will be returned in a special structure. The structure can be converted to a 3-d matrix by using m=sg_resp2samplematrix(r); Now, m will be a 512x512x20 (or whatever the image resolution was x20) matrix, since there are 5*4=20 Gabor filters. If you do not have a good idea what to do with the responses, you can for example view them as an image by summing all the responses: imagesc(abs(sum(m,3))); colormap(gray); For object detection and localization functionality other functions are also available. Sample matrix can be normalized for illumination invariance: m_norm=sg_normalizesamplematrix(m); For scale invariance, extra frequencies can be first included in the filter bank: bank=sg_createfilterbank(size(image), 0.2 , 5, 4,'extra_freq',1); r=sg_filterwithbank(image,bank); m=sg_resp2samplematrix(r); Then, different scales of features can be selected from sample matrix: m2=sg_scalesamples(m,0,5,4); will select the 5 highest frequencies and m2=sg_scalesamples(m,1,5,4); the lower available 5 frequencies. Note that if normalization is required, it must be done after this sg_scalesamples step. For rotation invariance, the sample matrix can be rotated: m2=sg_rotatesamples(m,1,4); rotates the responses by 1 orientation.

近期下载者

相关文件


收藏者