摘要:
树状数组模板一 树状数组模板一 #include<bits/stdc++.h> using namespace std; using ll = long long; const int N = 5e5+10; int a[N],t[N]; int n,m; int lowbit(int x) { r 阅读全文
摘要:
了解 通道(channels) 一张彩色图片一般由三个通道组成 #include<opencv2/opencv.hpp> #include<iostream> using namespace std; using namespace cv; int main() { Mat rsv; rsv = i 阅读全文