Browse Source

Set video size higher

pull/1/head
Tim Zeuner 2 years ago
parent
commit
551d5f4bb3
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      AutonomousMode/autonomous_mode_main.cpp

+ 3
- 3
AutonomousMode/autonomous_mode_main.cpp View File

cv::utils::logging::setLogLevel(cv::utils::logging::LOG_LEVEL_WARNING); cv::utils::logging::setLogLevel(cv::utils::logging::LOG_LEVEL_WARNING);


const int thresholdBinary = 140; const int thresholdBinary = 140;
const int videoHeight = 240;
const int videoWidth = 320;
const int videoHeight = 720;
const int videoWidth = 1280;
const int gaussKernelSize = 21; const int gaussKernelSize = 21;
const int thresholdCanny1 = 50; const int thresholdCanny1 = 50;
const int thresholdCanny2 = 100; const int thresholdCanny2 = 100;
char a; char a;
std::cin >> a; std::cin >> a;
lfr.endLoop(); lfr.endLoop();
}
}

Loading…
Cancel
Save