2022最新版本和老版本opencv兼容项目,童叟无欺。项目运行不通过私聊我
实验一代码:
#include
#include
#include
#include
#include
#include
#include
#include
using namespace cv;
using namespace std;
Mat toBinary(Mat src, int threshold) {
int channels = src.channels(); //src��ͨ����3
int rows = src.rows; //src������row,�൱������ϵ��y
int cols = src.col
1