We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ae22c commit 728b825Copy full SHA for 728b825
modules/ximgproc/samples/seeds.cpp
@@ -13,6 +13,8 @@ using namespace cv;
13
using namespace cv::ximgproc;
14
using namespace std;
15
16
+void trackbarChanged(int pos, void* data);
17
+
18
static void help()
19
{
20
cout << "\nThis program demonstrates SEEDS superpixels using OpenCV class SuperpixelSEEDS\n"
@@ -29,7 +31,7 @@ static const char* window_name = "SEEDS Superpixels";
29
31
30
32
static bool init = false;
33
-void trackbarChanged(int pos, void* data)
34
+void trackbarChanged(int, void*)
35
36
init = false;
37
}
0 commit comments