ThresholdLocally

버전 1.4.0.1 (2.86 KB) 작성자: Brett Shoelson
Performs LOCAL Otsu thresholding on an image, with a user-specified blocksize.
다운로드 수: 5.1K
업데이트 날짜: 2016/9/1

라이선스 보기

Performs LOCAL Otsu thresholding on an image; user can specify blocksize. Facilitates the threshold-segmentation of images with uneven illumination, without the need for background normalization.

SYNTAX: B = thresholdLocally(A,blksz,varargin)

THRESHOLDLOCALLY processes an image, calling graythresh on LOCAL blocks in an image. This facilitates easy thresholding of images with uneven background illumination, for which global thresholding is inadequate. Uses the Image Processing Toolbox function BLOCKPROC (R2009b).

INPUTS:
A: Any image (or path/name of an image) suitable for processing with im2bw()
BLKSZ: (Optional) Block size of A, for determination of Otsu thresholding using graythresh(). In the form or [M,N]. Default is as determined by BESTBLK.
OPTIONAL:
1) Any P-V pair accepted by BLOCKPROC.
2) FudgeFactor: a scalar value by which to multiply the local value returned by graythresh.

OUTPUT:
B: Output image

EXAMPLE:
img = imread('rice.png');
thresholded = thresholdLocally(img);

인용 양식

Brett Shoelson (2024). ThresholdLocally (https://www.mathworks.com/matlabcentral/fileexchange/29764-thresholdlocally), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2010b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.4.0.1

Updated license

1.4.0.0

Minor change to replace default blocksize of [32 32] by that returned by function BESTBLK.

1.3.0.0

Fixed problem with screenshot. (Image was inappropriately rotated.)

1.2.0.0

Modified significantly to accept as optional inputs all parameter-value pairs accepted by BLOCKPROC, as well as an additional "fudge factor" parameter that allows one to scale the local graythresh value by a scalar multiple.

1.0.0.0