how to xor image to 255 value?

Hai, aa= imread('lena.bmp')
next how i xor the 'aa' to value 255?
aa xor 255

2 Comments

how can xor first pixel with second and second with third and so on (for binary image)
juveria, you've already accepted an answer to that here in this link

Sign in to comment.

 Accepted Answer

Did you try the xor() function?
grayImage = imread('moon.tif');
subplot(1,2,1);
imshow(grayImage);
output = xor(grayImage, 255);
subplot(1,2,2);
imshow(output)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!