07-02-2010 12:56 PM
ladouceuraj a écrit :
I have removed the shift registers but I am confused about the destination image. Should i connect the same image wire leading into the while loop to the destination image port on threshold? I tried this and ended up with the same results.
chilly charly - I understand that the values are being replaced to binary. Is there a way to essentially start over with the original image leading into the loop?
The only way to keep the original image unchanged is to create another image buffer and to use it as destination image (wire to the image dest input as explained bu Muks).This will avoid writing the new image over the existing one. Alternatively you could also make a copy of the original image, but this operation also requires anyway the allocation of a corresponding memory space to host the image copy. And moving data from one place to the other will take some time... So forget that solution 😉