We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi. I have four binary images with blobs in different locations. I would like to "combine" these images to from one image that has the blobs from the four binary images.
Below are four my binary images
Have a look at this following links:
https://processing.org/reference/loadPixels_.html
https://processing.org/reference/pixels.html
You can create a master PImage object and then you add all the pixels from every image into this object.
Kf
there are easier ways than iterating through 4 images yourself,
look at blend() in the reference, specifically LIGHTEST
Answers
Have a look at this following links:
https://processing.org/reference/loadPixels_.html
https://processing.org/reference/pixels.html
You can create a master PImage object and then you add all the pixels from every image into this object.
Kf
there are easier ways than iterating through 4 images yourself,
look at blend() in the reference, specifically LIGHTEST