Diffusion Distance

Calculate the diffusion distance between histograms

You are now following this Submission

DIFFUSION_DISTANCE calculate the diffusion distance between matrices
dist = diffusion_distance(im1, im2, [sig, dim], threshold, pad_type])
[dist, iter] = diffusion_distance(im1, im2) compute the diffusion distance
between im1 and im2 (histograms).

Optionally returns the number of iterations. This number will be limited by
the size of the histograms, and the threshold value, which can be set
manually, or will take the value 1e-4.

The padding method used by the filtering stages can be set using the 4th
argument, and defaults to circular. For available options, see help imfilter.

Reference:
Diffusion Distance for Histogram Comparison
Ling and Okada, Proc. CVPR, 2006

Example:
% Calculate the diffusion distance between two
% matrices of random integers.
a = round(10.*rand(10));
b = round(10.*rand(10));
dist = diffusion_distance(a, b);

Cite As

Matthew Foster (2026). Diffusion Distance (https://www.mathworks.com/matlabcentral/fileexchange/19839-diffusion-distance), MATLAB Central File Exchange. Retrieved .

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.0.0