实验1.1

#include <bits/stdc++.h>
#define inf 2333333333333333
#define N 1000010
#define p(a) putchar(a)
#define For(i,a,b) for(int i=a;i<=b;++i)
//by war
//2020.9.14
using namespace std;
using namespace cv;


void in(int &x){
    int y=1;char c=getchar();x=0;
    while(c<'0'||c>'9'){if(c=='-')y=-1;c=getchar();}
    while(c<='9'&&c>='0'){ x=(x<<1)+(x<<3)+c-'0';c=getchar();}
    x*=y;
}
void o(int x){
    if(x<0){p('-');x=-x;}
    if(x>9)o(x/10);
    p(x%10+'0');
}

signed main(){
    Mat image0=imread("/Users/war/Downloads/dog.PNG");
    string window_name="狗狗";
    namedWindow(window_name);
    imshow(window_name,image0);
    waitKey();
    return 0;
}

 

posted @ 2020-09-14 09:26  WeiAR  阅读(111)  评论(0编辑  收藏  举报