Filter löschen
Filter löschen

How to assign zero pixel location of one image to other

1 Ansicht (letzte 30 Tage)
Jim
Jim am 22 Sep. 2011
Hi,
I need to assign zero pixel location of one image to the zero pixel location of other
Can anybody suggest something about this
Thanks in advance
  2 Kommentare
David Young
David Young am 22 Sep. 2011
Your question is not clear: please can you explain what you mean, perhaps with a small example of the images before and after assignment.
Jim
Jim am 22 Sep. 2011
Hi,
thank you for ur reply
I am giving a example here for clear understanding
suppose image1 having pixels like this
[1 2 0;3 0 1;0 7 5] and
image2 having pixels like this
[2 2 3;5 5 1;7 7 5]
I need to replace the pixel values with zero in image1 with the values of the same pixel location in image2
that is in row 1 of image1 0 must be replaced by 3 which is in the same pixel location in image 2
i,e after replacing image1 must become like [1 2 3;3 5 1;7 7 5]
But i have two images with size 256*256
I stored all the locations of image1 with pixel value 0 in an array
and now I need to replace the pixel values with zero in image1 with the values of the same pixel location in image2
Thanks in advance

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Image Analyst
Image Analyst am 22 Sep. 2011
Do you mean like you want image2 to be zero in the same places that image1 is? Like this(untested):
image2(image1==0) = 0;
Please clarify.
  2 Kommentare
Jim
Jim am 22 Sep. 2011
Hi,
thank you for ur reply
I am giving a example here for clear understanding
suppose image1 having pixels like this
[1 2 0;3 0 1;0 7 5] and
image2 having pixels like this
[2 2 3;5 5 1;7 7 5]
I need to replace the pixel values with zero in image1 with the values of the same pixel location in image2
that is in row 1 of image1 0 must be replaced by 3 which is in the same pixel location in image 2
i,e after replacing image1 must become like [1 2 3;3 5 1;7 7 5]
But i have two images with size 256*256
I stored all the locations of image1 with pixel value 0 in an array
and now I need to replace the pixel values with zero in image1 with the values of the same pixel location in image2
Thanks in advance
Walter Roberson
Walter Roberson am 22 Sep. 2011
z = image1 == 0;
image1(z) = image2(z);

Melden Sie sich an, um zu kommentieren.


Image Analyst
Image Analyst am 22 Sep. 2011
Try this:
image1 = [1 2 0;3 0 1;0 7 5]
image2 = [2 2 3;5 5 1;7 7 5]
pixelsToReplace = image1 == 0
image1(pixelsToReplace) = image2(pixelsToReplace)
  1 Kommentar
Image Analyst
Image Analyst am 22 Sep. 2011
You should note that I already showed you this concept in your nearly identical question: http://www.mathworks.com/matlabcentral/answers/16350-how-to-remove-pixels-in-an-image

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by