Clear Filters
Clear Filters

how to xor image to 255 value?

2 views (last 30 days)
ARJUN K P
ARJUN K P on 3 Jan 2016
Commented: Image Analyst on 1 Sep 2018
Hai, aa= imread('lena.bmp')
next how i xor the 'aa' to value 255?
aa xor 255
  2 Comments
juveria fatima
juveria fatima on 1 Sep 2018
how can xor first pixel with second and second with third and so on (for binary image)
Image Analyst
Image Analyst on 1 Sep 2018
juveria, you've already accepted an answer to that here in this link

Sign in to comment.

Accepted Answer

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

Categories

Find more on Images 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!