Azzera filtri
Azzera filtri

how can xor first pixel with second and second with third and so on (for binary image)

1 visualizzazione (ultimi 30 giorni)
image=imread('lena.jpg');
bin_image=dec2bin(image);
i have attached the pdf of my question kindly review
  2 Commenti
juveria fatima
juveria fatima il 1 Set 2018
kindly go through the pdf u will understand what i want to do bitxor(first column with second column) then bitxor(third with fourth)as follows for full image and then atlast i have to get back my original image

Accedi per commentare.

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 1 Set 2018
Modificato: KALYAN ACHARJYA il 1 Set 2018
image=imread('image_name.image_format'); %e.g. im1.jpg
bw_image=im2bw(rgb2gray(image));
[row colm]=size(bw_image);
for i=1:row-1
for j=1:colm-1
new_image(i,j)=xor(bw_image(i,j),bw_image(i+1,j+1));
end
end
imshow(c);
  15 Commenti
Abubakar Abba
Abubakar Abba il 1 Ago 2021
Why imshow(c);? I didnt see any variable c from the code. i think it should be imshow(new_image)

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by