Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.424.122 Times

Local Histogram Equalization software
Filter: All | Freeware | Demo
 

Local Histogram Equalization

< 1 2 3 4 5 
Added: June 12, 2013 | Visits: 290

Iterative nth power/root image equalization This code has been written in Spring 2008 by me, Gholamreza Anbarjafari (Shahab). You can use this code for any research and academic purposes as far as you refer to the following work: Hasan Demirel and Gholamreza Anbarjafari, "HSI Based Colour Image Equalization using Iterative nth Root and nth...



Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 358.4 KB Download (39): Iterative nth power/root image equalization Download

Added: August 20, 2013 | Visits: 261

Histogram of an image without inbuilt command Here we find out the histogram of any gray level image by not using the command imhist(), which is an inbuilt one rather by without using the inbuilt command. Reader may verify the plot by comparing with that generated from using the inbuilt command.





Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Histogram of an image without inbuilt command Download

Added: June 02, 2013 | Visits: 334

Toolbox Non-Local Means A toolbox for the non-local means algorithm.by Gabriel PeyrdoTe, 2007.The non-local means is an algorithm introduced by A. Buades, B. Coll, J.M Morel.The main reference for the algorithm is A. Buades, B. Coll, J.M Morel, "A review of image denoising algorithms, with a new one" , Multiscale...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 1.87 MB Download (41): Toolbox Non-Local Means Download

Added: August 12, 2013 | Visits: 420

Local Linear Kernel Regression This is the local linear version of the kernel smoothing regression function: http://www.mathworks.com/matlabcentral/fil...objectType=FILEThe local linear estimator improves the regression behaviour near the edges of the region over which the data have been collected.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Local Linear Kernel Regression Download

Added: June 18, 2013 | Visits: 395

Histogram-based class separability measure The provided functions demonstrate a histogram-based measure for class separability, given the samples from two classes (binary classification problem). The proposed error classification estimation method is described in (B) and it is based on estimating the pdf of each class using histograms....


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (47): Histogram-based class separability measure Download

Local Depth SIFT and Scale Invariant Spin Image local features for 3D meshes a toolbox to compute Local Depth SIFT and Scale Invariant Spin Image local features for 3D meshes.descriptor matlab toolbox - a toolbox containing my work on local features for meshes: MeshScaleDoG local features detector, the Scale Invariant Spin Image descriptor and the Local Depth SIFT...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (42): Local Depth SIFT and Scale Invariant Spin Image local features for 3D meshes Download

Added: August 23, 2013 | Visits: 358

matlab code for histogram of colour image The histogram of the image gives the frequency of occurrence of the gray level. it gives the no. of times a particular gray level occurs in the image. In the case of a colour image,the histogram is expected to give the number of a particular colour has occurred in the image.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): matlab code for histogram of colour image Download

Added: July 29, 2013 | Visits: 512

Image Noise Reduction by Local Statistics Reduce image noise by measuring local pixel statistics and remapping intensities.Tristan Ursell (c)Relative Noise TransformMarch 2012Iout=relnoise(Iin,sz,sigma);Iout=relnoise(Iin,sz,sigma,'field');[Iout,Ivar]=relnoise(Iin,sz,sigma,...);[Iout,Ivar,Imean]=relnoise(Iin,sz,sigma,...);Iin = the input...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 153.6 KB Download (43): Image Noise Reduction by Local Statistics Download

Added: September 08, 2013 | Visits: 232

Logicle Histogram This programs creates a histogram with a "logicle" (aka biexponential) x-axis. This is generally used to display flow cytometry data. It will not create false artifacts for values near zero. For more information see "A new "Logicle" display method avoids deceptive effects of logarithmic scaling...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Logicle Histogram Download

Added: August 18, 2013 | Visits: 309

2D Histogram Calculation function histmat = hist2(x, y, xedges, yedges) Extract 2D histogram data containing the number of events of [x , y] pairs that fall in each bin of the grid defined by xedges and yedges. The edges are vectors with monotonically non-decreasing values.The code is optimized no loop inside, it can be...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (49): 2D Histogram Calculation Download

Added: June 08, 2013 | Visits: 291

2-Dimensional Histogram function H = histo2D(D,[Xlo Xhi],Xn,[Ylo Yhi],Yn,Xlab,Ylab,Title) 2-Dimensional Histogram(size(H) == [Yn Xn])Counts number of points in the bins defined by -X = linspace(Xlo,Xhi,Xn) andY = linspace(Ylo,Yhi,Yn)Example:Dx = 5*rand(100,1) ;Dy = 10*rand(50,1) ;D = [Dx,Dy] ;H = histo2D(D,[0 5],10,[0...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): 2-Dimensional Histogram Download

Added: May 19, 2013 | Visits: 354

Histogram Overlay Block The Histogram Overlay block adds a histogram overlay onto your video stream. It will operate with both grayscale and RGB images as well as varying data types. It also allows you to specify the frame color to help make the plot more visible.You can add this block to the Video and Image Processing...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 20.48 KB Download (43): Histogram Overlay Block Download

2D histogram - 'exact' and 'fast' binning, 'crop' and 'stretch' grid adjustment Calculate the 2D histogram of data pairs [x,y] on a 2D grid defined by its edges. Allows 'fast' and 'exact' binning modes. Adjustable input grid mode. Output of mesh centers for easy plot.EXAMPLE:binEdges_minmaxN_xy = [10 100 91; 0 10 21];[h2d, binC_x, binC_y] = hist2(data2d, binEdges_minmaxN_xy,...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): 2D histogram - 'exact' and 'fast' binning, 'crop' and 'stretch' grid adjustment Download

Added: May 15, 2013 | Visits: 505

Calculate number of bins for histogram Two files are included:CALCNBINS, which calculates the "ideal" number of bins to use in a histogram, using three possible methods. (Freedman-Diaconis', Scott's and Sturges' methods.)HISTX is a wrapper for Matlab's own histogram function HIST, that uses CALCNBINS to choose the number of bins if...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (46): Calculate number of bins for histogram Download

Added: July 04, 2013 | Visits: 323

Plot a univariate histogram Function HISTF ('flexible histogram') extends Matlab's HIST by letting one bound displayed percentiles, set x-axis limits and y-axis maximum, set x bin size, and draw a marker line at given x position. In contrast to HIST, relative rather than absolute frequencies are displayed. (Note: when range...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Plot a univariate histogram Download

Added: July 18, 2013 | Visits: 244

N-Dimensional Histogram Count HISTCND is similar to HISTC, but creates a histogram with any number of dimensions.N = HISTCND(X,Y,Z,... XEDGES,YEDGES,ZEDGES,... )where N is a histogram count with dimensions length(XEDGES) x length(YEDGES) x length(ZEDGES) ...If XEDGES, YEDGES, etc. are monotonically increasing and non-NaN, a...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (48): N-Dimensional Histogram Count Download

Added: July 25, 2013 | Visits: 471

Hood Feed Local Tweets The HoodFeed wordpress plugin is a sidebar widget that displays local tweets for a given geographic area. Currently we're available in Washington, DC and New York City, with other cities coming soon.There are several public API keys, "wdc_public" is Washington, DC and "nyc_public" is New York...


Platforms: PHP

License: Freeware Size: 10 KB Download (39): Hood Feed Local Tweets Download

Added: April 18, 2013 | Visits: 375

Local Currencies Local Currencies (Complementary currencies) is an all-embracing and flexible package which includes a mutual credit engine, transaction forms and displays, including several views and blocks. It can be used as a digital back end for paper money projects, or to run an entire LETS or Timebank. With...


Platforms: PHP

License: Freeware Size: 122.88 KB Download (40): Local Currencies Download

Added: August 05, 2013 | Visits: 275

Local tasks blocks One of them is for primary local tasks and the other for secondary ones. These are normally displayed as tabs.The primary, secondary, or both sets of local tasks are displayed within blocks.Installation:Unpack in your modules folder (usually '/sites/all/modules/')Enable under Administer > Site...


Platforms: PHP

License: Freeware Size: 10 KB Download (47): Local tasks blocks Download

Added: June 18, 2013 | Visits: 284

Foundstone HTML5 Local Storage Explorer HTML5 introduces a bunch of client side storage technologies: Session Storage, Local Storage, Indexed Database and Web SQL Database. Local Storage is a key-value based store which allows web application developers to store data in a persistent fashion that is available across the user's multiple...


Platforms: Mac

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (38): Foundstone HTML5 Local Storage Explorer Download

< 1 2 3 4 5