12345678910111213141516171819202122 |
- #include "lfr.h"
- #include <opencv2/core/utils/logger.hpp>
-
- int main(void)
- {
- //Disable opencv logging messages
- cv::utils::logging::setLogLevel(cv::utils::logging::LOG_LEVEL_WARNING);
-
- const int thresholdBinary = 140;
- const int videoHeight = 720;
- const int videoWidth = 1280;
- const int gaussKernelSize = 11;
-
- LFR lfr(videoHeight, videoWidth, thresholdBinary, gaussKernelSize);
- lfr.saveOutputFlag = false;
- lfr.videoFlag = true;
- lfr.startLoop();
- //To end the video stream, write any char in the console.
- char a;
- std::cin >> a;
- lfr.endLoop();
- }
|