Local Contrast by dragging rectangle on an image
1 回表示 (過去 30 日間)
古いコメントを表示
Muhammad Abir
2020 年 12 月 22 日
回答済み: Hrishikesh Borate
2020 年 12 月 31 日
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!