how to mask an image?
29 views (last 30 days)
Show older comments
I = imread('E:\M.E 3rd semester\project\coding\flower.jpg');
I = rgb2gray(I);
J=ones(3,3)/9;
K = conv2(I,J,'same');
Warning: CONV2 on values of class UINT8 is obsolete. Use CONV2(DOUBLE(A),DOUBLE(B)) or CONV2(SINGLE(A),SINGLE(B)) instead.
Can anyone help to correct the error?
Accepted Answer
Anand
on 19 Sep 2013
I = im2double(imread('..'));
I = rgb2gray(I);
J = ones(3)/9;
K = conv2(I,J,'same');
More Answers (2)
Image Analyst
on 20 Sep 2013
Edited: Image Analyst
on 20 Sep 2013
Regarding your comment asking for a masking demo, one of mine is attached. Click on it below to see it.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!