• 大小: 0.85KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 标签: opencv  c++  网格  

资源简介

工程中加入CPP,配置好opencv运行即可。

资源截图

代码片段和文件信息

#include
#include


//配置好工程的opencv路径即可
using namespace std;
using namespace cv;
int main(void)
{
int Row=0;
int Col=0;
cv::namedWindow(“draw Pic“CV_WINDOW_NORMAL);
cv::createTrackbar(“Row““draw Pic“&Row200NULL);
cv::createTrackbar(“Col““draw Pic“&Col200NULL);

while(1)
{
Mat Pic(200200CV_8UC3);

for(int i=0;i<200;i++)
for(int j=0;j<200;j++)
{
Pic.at(ij)=

评论

共有 条评论