闪闪草莓

文章
7
资源
1
加入时间
3年1月29天

Opencv学习笔记——图片通道的分离与合并

以下均为github上opencv的个人学习笔记,原路径如下:https://github.com/JimmyHHua/opencv_tutorials源码示例:import cv2 as cvsrc = cv.imread("C:/Users/Mark/Desktop/CV/opencv_tutorials-master/opencv_tutorials-master/pyth...

c++默认参数

#include<iostream>class DEFAULT_PARA{public: void func(int a, int b=1, int c=2){ printf("defaut start from second \n"); } //定一个就够了 ...

Uva 816(bfs求最短路)

#include <bits/stdc++.h>using namespace std;struct Node{ int r,c,dir; Node(int r=0, int c=0, int dir=0):r(r),c(c),dir(dir) {}};int have_edge[10][10][4][3];//当前状态 最后一维为是否可以沿着转弯的方向行走i...