| 20 | #include "IPProcessThread.h" |
| 21 | |
| 22 | IPProcessThread::IPProcessThread(IPLProcess *process, IPLImage *image, int inputIndex, bool useOpenCV) |
| 23 | { |
| 24 | _process = process; |
| 25 | _image = image; |
| 26 | _inputIndex = inputIndex; |
| 27 | _success = false; |
| 28 | _useOpenCV = useOpenCV; |
| 29 | |
| 30 | // allow immediate termination |
| 31 | QThread::setTerminationEnabled(true); |
| 32 | } |
| 33 | |
| 34 | IPProcessThread::~IPProcessThread() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected