This commit is contained in:
Jared Bruni
2021-09-18 19:51:19 -07:00
parent 8eabad242c
commit befbea8663
2 changed files with 2 additions and 3 deletions

View File

@@ -851,7 +851,7 @@ void AC_MainWindow::comboFilterChanged(int) {
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use Intertwine filters\n"));
if(playback->getMaxAlloc() < 1080 && text.find("inOrder") != std::string::npos)
if(playback->getMaxAlloc() < 1080 && text.find("InOrder") != std::string::npos)
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use inOrder filters\n"));
if(playback->getMaxAlloc() < 1080 && text.find("Slit") != std::string::npos)
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use SlitScan filters\n"));

View File

@@ -141,7 +141,6 @@ bool Playback::openVideo(std::string vname) {
mutex.unlock();
return true;
}
void Playback::setVector(std::vector<FilterValue> v) {
mutex.lock();
// here:
@@ -351,7 +350,7 @@ void Playback::drawFilter(cv::Mat &frame, FilterValue &f) {
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Intertwine") != std::string::npos)
return;
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("inOrder") != std::string::npos)
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("InOrder") != std::string::npos)
return;
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Slit") != std::string::npos)
return;