请给出opencv3中从键盘任意输入10个整数,分别统计奇数和偶数个数的代码
时间: 2024-02-13 21:07:05 浏览: 71
好的,下面是代码:
```cpp
#include <iostream>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main()
{
int odd_count = 0, even_count = 0;
int num;
cout << "Please input 10 integers: " << endl;
for (int i = 0; i < 10; i++)
{
cin >> num;
if (num % 2 == 0)
even_count++;
else
odd_count++;
}
cout << "Odd numbers count: " << odd_count << endl;
cout << "Even numbers count: " << even_count << endl;
return 0;
}
```
请注意,这段代码并不是使用 OpenCV 提供的函数来实现输入操作,而是使用 C++ 标准库中的 `cin` 来获取用户的输入。另外,这段代码也并没有使用 OpenCV 提供的图像处理功能,因为它并不需要。
阅读全文