Commit 092c1f98 authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

fixed build of gpu demos pack

parent 4ddde66b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment