how to xor image to 255 value?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ARJUN K P
el 3 de En. de 2016
Comentada: Image Analyst
el 1 de Sept. de 2018
Hai, aa= imread('lena.bmp')
next how i xor the 'aa' to value 255?
aa xor 255
2 comentarios
juveria fatima
el 1 de Sept. de 2018
how can xor first pixel with second and second with third and so on (for binary image)
Image Analyst
el 1 de Sept. de 2018
Respuesta aceptada
Image Analyst
el 3 de En. de 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)
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!