Local histogram equalization in matlab

조회 수: 2 (최근 30일)
Hossein Mohamadi
Hossein Mohamadi 2020년 11월 4일
답변: Subhadeep Koley 2020년 11월 4일
Hi.how can i histeq in a rectangular region in an image without any cheang in other pixels. I need code . thanks

답변 (1개)

Subhadeep Koley
Subhadeep Koley 2020년 11월 4일
The below code might help.
% Read the image
img = imread('cameraman.tif');
% Extract your Region-Of-Interest (ROI)
ROI = img(50:200, 50:200); % Change these values according to your need
% Perform histogram equalization on the ROI
histEqROI = histeq(ROI);
% Replace original ROI histogram equalizated ROI
resImg = img;
resImg(50:200, 50:200) = histEqROI;
% Display results
figure
subplot(1, 2, 1)
imshow(img)
title('Original image')
subplot(1, 2, 2)
imshow(resImg)
title('ROI histogram equalizated image')

카테고리

Help CenterFile Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by