how to xor image to 255 value?

8 次查看(过去 30 天)
Hai, aa= imread('lena.bmp')
next how i xor the 'aa' to value 255?
aa xor 255
  2 个评论
juveria fatima
juveria fatima 2018-9-1
how can xor first pixel with second and second with third and so on (for binary image)
Image Analyst
Image Analyst 2018-9-1
juveria, you've already accepted an answer to that here in this link

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2016-1-3
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)

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by