Just want to know how to save an image just after applying a filter. I have this:
capturaFoto = cam.get(); image(capturaFoto,0,0); filter(THRESHOLD); capturaFoto.save("fotoPrueba.tiff");
But the saved image doesn't has the filter applied to.
Thanks a lot.