modified Minimum Cross Entropy threshold selection

This code implements the paper: "Minimum cross-entropy threshold selection" by Brink and Pendock.
992 download
Aggiornato 7 gen 2013

Visualizza la licenza

% MinCEP is a function for thresholding using Minimum Cross Entropy
% threshold selection of non-blank space of Image.
%
% [ILow, IHigh, threshold] = minCEP(I)
% Inputs: I 2D grayscale image
% minIntensity minimum intensity
% maxIntensity maximum intensity
%
% Outputs: ILow image with gray level bellow threshold
% Outputs: IHigh image with gray level upper threshold
% Outputs: threshold the threshold choosen by MinCE
%
% Description: This code implements the paper: "Minimum cross-entropy
% threshold selection" by Brink and Pendock
% This implemetation is modified to calculate threshold of non-blank space
% of Image as well as get minimum and maximum intensity of image.
%
% Example:
% img = imread('tire.tif');
% [ILow, IHigh, T] = minCEP(img);
% subplot(2,2,1), imshow(img);
% subplot(2,2,2), imshow(IHigh);
% [~, IHigh, T1] = minCEP(img, T);
% subplot(2,2,3), imshow(IHigh);
% [~, IHigh, T2] = minCEP(img, T2);
% subplot(2,2,4), imshow(IHigh);
%
%
% Coded by: Hoosein Dehghan (hd.dehghan@gmail.com)
%------------------------------------------------------------------------

Cita come

Hossein Dehghan (2025). modified Minimum Cross Entropy threshold selection (https://it.mathworks.com/matlabcentral/fileexchange/39749-modified-minimum-cross-entropy-threshold-selection), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2011b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0