Skip to content

Commit fbbdc9e

Browse files
committed
Fixed unused variables
1 parent 52da0aa commit fbbdc9e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

modules/ccm/samples/color_correction_model.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@ using namespace ccm;
1212

1313
const char *about = "Basic chart detection";
1414
const char *keys =
15-
"{ help h | | show this message }"
16-
"{v | | Input from video file, if ommited, input comes from camera }"
17-
"{ci | 0 | Camera id if input doesnt come from video (-v) }"
18-
"{f | 1 | Path of the file to process (-v) }"
19-
"{nc | 1 | Maximum number of charts in the image }";
15+
"{ help h | | show this message }"
16+
"{ f | 1 | Path of the file to process (-v) }";
2017

2118
int main(int argc, char *argv[])
2219
{
@@ -34,7 +31,6 @@ int main(int argc, char *argv[])
3431
return 0;
3532
}
3633

37-
int nc = parser.get<int>("nc");
3834
string filepath = parser.get<string>("f");
3935

4036
if (!parser.check())

0 commit comments

Comments
 (0)