pattch / PicToPoly

Pic to Poly Android App
1 stars 0 forks source link

Interacting with the Triangulation while ProcessImage is running #16

Closed pattch closed 9 years ago

pattch commented 9 years ago

Since ProcessImage runs on a thread outside of the UI thread, the UI thread can send calls to ImageProcessor to add/remove points etc. while ProcessImage is running. This should never be the case, because it can cause the application to crash, or cause graphical errors.

pattch commented 9 years ago

Fixed, the thread based processImage now only has one thread running at a time.