to obtain uniform and zero average background intensity values

which process is to be performed to obtain uniform and zero average background intensity values for an image

Answers (1)

Thresholding? Or image segmentation? Can't really tell from your extraordinarily brief question.

2 Comments

background = grayImage < someThreshold; % Detect dark background.
grayImage(background) = 0; % Set those pixels to 0.

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Asked:

on 28 Jun 2014

Commented:

on 28 Jun 2014

Community Treasure Hunt

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

Start Hunting!