Local Contrast by dragging rectangle on an image
3 次查看(过去 30 天)
显示 更早的评论
Hello,
I am trying to develop a code that can allow user to draw a rectangle or arbitrary size. Then when the user drags the rectangle, it will enhance the contrast of the region inside the rectangular area only. I tried to use drawrectangle and addlistener but it looks like it not working as I want. In my code, when I display the image, the contrast enhanced aera is cropped and displayed in the upper corner of the image, but my plan is that the the contrast enhanced image will be displayed on top of the origianal image at the location the rectangle is selected. Here is my code so far:
imshow('cameraman.tif');
roi = drawrectangle('LineWidth',2,'Color','red');
addlistener(roi,'MovingROI',@(r1,evt) allevents(Img, r1,evt));
function allevents(Img, src,evt)
evname = evt.EventName;
roi= round(evt.CurrentPosition);
switch(evname)
case{'MovingROI'}
CroppedImage= imcrop(Img,roi);
end
0 个评论
采纳的回答
Hrishikesh Borate
2020-12-31
Hi,
I understand that you want to define a dynamic rectangular region of interest and enhance the contrast of the region inside the rectangular area only.
For contrast enhancement, several techniques can be used, as shown here. In the following code, imadjust is used.
I = imread('cameraman.tif');
himg = imshow(I);
roi = drawrectangle('LineWidth',2,'Color','red');
addlistener(roi,'MovingROI',@(src,evt)allevents(I, himg, src, evt));
function allevents(Img, himg, src,evt)
evname = evt.EventName;
switch(evname)
case{'MovingROI'}
rectPos = evt.CurrentPosition();
croppedImage = imcrop(Img, rectPos);
enhancedImage = imadjust(croppedImage);
newImg = Img;
newImg(rectPos(2)+(0:rectPos(4)), rectPos(1)+(0:rectPos(3))) = enhancedImage;
himg.CData = newImg;
end
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Filtering and Enhancement 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!