changed startup log message and commented out unused parameters

This commit is contained in:
lostjared
2017-02-07 10:48:14 -08:00
parent df5410abc7
commit b6ea148c75
3 changed files with 4 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ void frac::FractalLogic() {
// std::cout << paramA << ": " << paramB << " :" << " dir: " << dir << "\n"; // std::cout << paramA << ": " << paramB << " :" << " dir: " << dir << "\n";
} }
void frac::DrawFractal(cv::Mat &frame, bool neg) void frac::DrawFractal(cv::Mat &frame, bool /*neg*/)
{ {
float x1=mod_x-1.0f*zoom_x; float x1=mod_x-1.0f*zoom_x;
float x2=mod_x+1.0f*zoom_w; float x2=mod_x+1.0f*zoom_w;

View File

@@ -25,7 +25,7 @@ void generate_map() {
} }
} }
void custom_filter(cv::Mat &frame) { void custom_filter(cv::Mat &) {
} }
@@ -86,7 +86,7 @@ void AC_MainWindow::createControls() {
log_text->setGeometry(10, 250, 780,310); log_text->setGeometry(10, 250, 780,310);
log_text->setReadOnly(true); log_text->setReadOnly(true);
QString text = "Acid Cam v"; QString text = "Acid Cam Filters v";
text += ac::version.c_str(); text += ac::version.c_str();
text += " loaded.\n"; text += " loaded.\n";
log_text->setText(text); log_text->setText(text);

View File

@@ -1,5 +1,5 @@
#include "plugin.h" #include "plugin.h"
void ac::plugin(cv::Mat &frame) { void ac::plugin(cv::Mat &/*frame*/) {
} }