mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-13 18:30:02 +01:00
changed startup log message and commented out unused parameters
This commit is contained in:
@@ -83,7 +83,7 @@ void frac::FractalLogic() {
|
||||
// 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 x2=mod_x+1.0f*zoom_w;
|
||||
|
||||
@@ -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->setReadOnly(true);
|
||||
|
||||
QString text = "Acid Cam v";
|
||||
QString text = "Acid Cam Filters v";
|
||||
text += ac::version.c_str();
|
||||
text += " loaded.\n";
|
||||
log_text->setText(text);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "plugin.h"
|
||||
|
||||
void ac::plugin(cv::Mat &frame) {
|
||||
void ac::plugin(cv::Mat &/*frame*/) {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user