1#ifndef CONCURRENTREADER_H
2#define CONCURRENTREADER_H
9#include "opencv2/core.hpp"
62 QThread m_readerThread;
The ConcurrentReader class is a wrapper for a Reader object. The ConcurrentReader can be moved to a s...
Definition concurrentreader.h:28
void slot_read(uint idx)
[slot] slot_read adds the requested idx to the waiting-queue or starts the reader if the queue is emp...
Definition concurrentreader.cpp:16
void sig_imageReady(uint idx, const cv::Mat &img)
[signal] sig_imageReady is emitted after image is loaded.
void slot_pull()
slot_pull takes the most recent index from queue and reads the image from.
Definition concurrentreader.cpp:27
The Reader interface defines functions which are used for reading and parsing the import.
Definition reader.h:23