R
Radium
I have the following problem:
I have written a class which works on image data.
To be precise.... the class applies smoothening on the image with filters.
I want to visualize this proccess.
To do this i am going to write a second class, which is responsible
for displaying the smoothening in progress.
Because i only want this visualisation for control purpose, i dont want
any visualisation methods in the first class. This would deminish it's
efficency. The Model View Controller Pattern, relies heavily on
Messaging between the classes, so the first class would have
to inform the second, and as i said, i dont want any inform methods in
the first class.
My Idea is to create two threads, the first filtering the images, the second
accessing the resources(image) of the first class and displaying them from
time to time.
Any better suggestion?
THX
I have written a class which works on image data.
To be precise.... the class applies smoothening on the image with filters.
I want to visualize this proccess.
To do this i am going to write a second class, which is responsible
for displaying the smoothening in progress.
Because i only want this visualisation for control purpose, i dont want
any visualisation methods in the first class. This would deminish it's
efficency. The Model View Controller Pattern, relies heavily on
Messaging between the classes, so the first class would have
to inform the second, and as i said, i dont want any inform methods in
the first class.
My Idea is to create two threads, the first filtering the images, the second
accessing the resources(image) of the first class and displaying them from
time to time.
Any better suggestion?
THX