How to program a slider tool to adjust image contrast?
2 次查看(过去 30 天)
显示 更早的评论
I have designed an app using GUIDE and I have just added a slider tool. I want it to be able to adjust the contrast of an image that has been imported and displayed on the app, like what the imcontrast function can do. Does anyone have any idea how to do this or can point me in the direction of some helpful documentation? I have not found anything so far.
3 个评论
Adam
2019-8-19
A slider callback will be created for you in GUIDE. Then you can add your code in there.
Exactly what code you put in there depends on how you are doing the contrast and what you are doing with the result.
get( hObject, 'Value' )
in the callback will give you your slider value to work with though.
回答(1 个)
Bhargavi Maganuru
2019-8-20
You can edit slider_callback in order to adjust contrast of the image using slider value.
get(hObject,'Value') command returns the value of the slider.
You can add following lines of code:
In Opening function:
I=imread('image.jpg');
handles.I=I;
guidata(hObject, handles);
axes(handles.axes1);
imshow(I);
In slider callback function:
I=handles.I;
I=I*get(hObject,'Value');
axes(handles.axes1);
imshow(I);
Hope this helps.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!