How to make an image editor using matlab

7 views (last 30 days)
I want to make a simple image editor using matlab.I want to design a GUI for it on matlab that provides sliders to adjust brightness and sharpness.Also it provides an option to add three basic filters to the images(Black and White,Sepia and Negative)but it could be any other 3 as well.What steps should I take to accomplish this task?(links and guidelines would be appreciated)

Accepted Answer

Image Analyst
Image Analyst on 16 May 2015
  4 Comments
Rossana Parada
Rossana Parada on 20 Nov 2015
Edited: Rossana Parada on 20 Nov 2015
I used this code for black and white, it worked for me. global im imbw=im2bw(im,.57); axes(handles.axes2); imshow(imbw);
Image Analyst
Image Analyst on 20 Nov 2015
Edited: Image Analyst on 20 Nov 2015
There is no built-in sepia colormap. Either try copper or pink, or make your own. Rossana, the im2bw() operation you mentioned does not adjust contrast and brightness or change colormaps, the two things Bilal asked for. One function I did not mention earlier that might be helpful is imadjust().

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!