I am having a multithreaded application.In one of the thread,I am doing some processing and after the processing I want to display a image.
I want to update the image after the processing.
I want to do something like this

Qt Code:
  1. ui->label->setPixmap(QPixmap("abc.bmp"));
To copy to clipboard, switch view to plain text mode 

But I am unable to access ui->label from the worker thread.
Pl tell how to do this??