
C++
cuglxw
学习中。。。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
欢迎使用优快云-markdown编辑器
iota算法由SGI专属,并不在STL标准之列。它用来设定某个区间的内容,时期内的每一个元素从指定的value值开始,呈现递增状态。 #include<iostream> #include<vector> #include <numeric> using namespace std;int main() { vector<unsigned int> vec; vec.resize(10); std:原创 2017-11-24 14:10:08 · 241 阅读 · 0 评论 -
获取当前时间(c++)
std::string current_time_stamp() { std::time_t now = std::time(NULL); std::tm* ptm = std::localtime(&now); char buff[100]; std::strftime(buff,32,"%Y-%m-%d %H:%M%s",ptm); return string(buff);...原创 2018-08-14 14:44:51 · 2660 阅读 · 1 评论 -
opencv实现鼠标点击循环全屏播放两张图像
#include<opencv2/opencv.hpp> int current = 0; //鼠标事件函数 void OnMouse(int Event, int x, int y, int flags, void* param) { switch (Event) { case CV_EVENT_LBUTTONDOWN: //左键按下 cu...原创 2018-12-26 14:55:32 · 330 阅读 · 0 评论 -
标定
http://graphics.cs.msu.ru/en/research/projects/3dreconstruction/cppcalibration原创 2019-01-29 15:47:46 · 227 阅读 · 0 评论