mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-17 04:10:01 +01:00
added combo, radio buttons and working on getting the interface to work with filter transitions
This commit is contained in:
@@ -12,6 +12,7 @@ Playback::Playback(QObject *parent) : QThread(parent) {
|
||||
isStep = false;
|
||||
isPaused = false;
|
||||
bright_ = gamma_ = saturation_ = 0;
|
||||
single_mode = true;
|
||||
}
|
||||
|
||||
void Playback::Play() {
|
||||
@@ -20,8 +21,8 @@ void Playback::Play() {
|
||||
stop = false;
|
||||
}
|
||||
}
|
||||
//start(LowPriority);
|
||||
start(HighPriority);
|
||||
start(LowPriority);
|
||||
//start(HighPriority);
|
||||
}
|
||||
|
||||
void Playback::setVideo(cv::VideoCapture cap, cv::VideoWriter wr, bool record) {
|
||||
@@ -109,6 +110,10 @@ void Playback::setColorOptions(int b, int g, int s) {
|
||||
mutex.unlock();
|
||||
}
|
||||
|
||||
void Playback::setIndexChanged(int pos) {
|
||||
|
||||
}
|
||||
|
||||
void Playback::setRGB(int r, int g, int b) {
|
||||
mutex.lock();
|
||||
ac::swapColor_r = r;
|
||||
|
||||
Reference in New Issue
Block a user