I need help with Matlab assignment
Show older comments
Hello everyone!
I got today a Student Version because I need it for a Course in Image Processing. I will not ask you to do my work but I will apreciate any tips to help me finish my work. So, I need to import an image and extract the green components to represent a monochrome image. Then I need to implement a function for the adjustment of intensity values and contrast. The function must have two Parameters for the control of Intensity and Contrast(I think I need to use a Window Function). Then I have to implement a threshold function that applies a Filter like:
slow ... I(i,j)<=slow
I[slow shigh](i,j) := I(i,j) ... slow <= I(i,j) <= shigh
shigh ... shigh <= I(i,j)
Then I need to reduce Noise by using convolution. Lastly I need to proceed with edge detection.
My Instructor said that I could use these commands: Intensity values: min, max, impixel, improfile, imhist, imtool, imshow; Convolution, Linear Filtering: imfilter, fspecial, conv2.
I checked the documentation but I could go on and implement any of those.
I am only in my first steps and really need help :)
what I have done till now is just extracted the Green Component.
myimage=imread('TestImage.bmp');
myimage_green=myimage;
%Green Component
myimage_green(:,:,1)=0;
myimage_green(:,:,3)=0;
figure,imshow(myimage_green);
how should I proceed next? regards
Accepted Answer
More Answers (0)
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!