I have a separate image processing thread,which processes the image object as well as writes it to a bmp file "abc.bmp"
The image processing is entirely different from GUI thread and works continuously in the background.
As the GUI thread is only meant for display purposes,I am not sending the processed object for writing in GUI thread.

Is there other way to send the image via a signal without loading it?