This commit is contained in:
Jared Bruni
2021-08-31 05:40:08 -07:00
parent 7bf37f3f67
commit 336eabef15
2 changed files with 5 additions and 1 deletions

View File

@@ -851,7 +851,9 @@ void AC_MainWindow::comboFilterChanged(int) {
Log(tr("Set a SubFilter to use this filter\n"));
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
Log(tr("Set Max Frames to greater than 1080 to use Intertwine filters"));
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use Intertwine filters"));
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"));
}
void AC_MainWindow::setFilterSingle() {

View File

@@ -328,6 +328,8 @@ void Playback::drawFilter(cv::Mat &frame, FilterValue &f) {
if(ac::getMaxAllocated() < 1080 && ac::draw_strings[f.filter].find("Intertwine") != std::string::npos)
return;
if(ac::getMaxAllocated() < 1080 && ac::draw_strings[f.filter].find("inOrder") != std::string::npos)
return;
ac::setSubFilter(f.subfilter);
//ac::draw_func[f.filter](frame);