提交 092c1f98 编写于 作者: V Vladislav Vinogradov

fixed build of gpu demos pack

上级 4ddde66b
......@@ -97,7 +97,7 @@ void displayState(Mat &canvas, bool bHelp, bool bGpu, bool bLargestFace, bool bF
int main(int argc, const char *argv[])
{
{
if (argc == 1)
{
help();
......@@ -271,13 +271,13 @@ int main(int argc, const char *argv[])
displayState(frameDisp, helpScreen, useGPU, findLargestObject, filterRects, fps);
imshow("result", frameDisp);
int key = waitKey(5);
char key = (char)waitKey(5);
if (key == 27)
{
break;
}
switch ((char)key)
switch (key)
{
case ' ':
useGPU = !useGPU;
......@@ -305,4 +305,4 @@ int main(int argc, const char *argv[])
}
return 0;
}
\ No newline at end of file
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册