- 博客(19)
- 资源 (9)
- 收藏
- 关注
转载 su认证失败
Ubuntu 安装后,root用户默认是被锁定了的,不允许登录,也不允许 "su" 到 root。有人说这是个不好的实践,特别是对于服务器来说。我觉得对于桌面用户来说,这样安全性更高一些,是应该的;但对于服务器可以设置成允许 "su" 到root,但不允许root用户直接登录”。而我为了开发时的方便,则在桌面和服务器上都采用这种方式。 问题:su认证失败使用su命令登录到root用户时...
2018-09-27 22:30:29
10689
1
原创 双显卡电脑出现,xx.exe 已停止工作,appcrash问题,解决方案
花了半天时间终于解决!可切换显卡方式 选择, 手动或者根据电源选择图形处理器 应用。问题就解决了
2018-03-09 21:31:14
6465
原创 坏记性
删除不符合的匹配对,erase的使用vector points1, points2; for (int i = 0; i < good_matches.size(); i++) { points1.push_back(image1KeyPoint[good_matches[i].queryIdx].pt); points2.push_back(image2KeyPoint[good
2017-03-29 16:25:59
297
转载 画出对应的极线
三维重建 - 摄像机标定和立体匹配中极线约束方法 http://blog.youkuaiyun.com/sevencolorfish/article/details/6840624姿态估计和对极几何 http://blog.sina.com.cn/s/blog_4b9b714a0100c9f3.html画出对应的极线 http://blog.youkuaiyun.com/yc461515457/article/d
2017-03-29 16:03:52
2848
原创 棋盘格制作收藏
zhouyelihua**http://blog.youkuaiyun.com/zhouyelihua/article/details/46674191**在摄像机标定过程中常常需要打印棋盘格程序,还有就是在投影仪标定当中常常需要投射和投影仪相同分辨率的patternclose all;clear all;clc;width=1024 ; %pattern的宽height=76
2017-01-10 15:31:58
452
原创 相机校正
int _tmain(int argc, _TCHAR* argv[]){ Mat cam_left; Mat cam_right; cam_left = imread("left.jpg"); cam_right = imread("right.jpg"); Size img_size = cam_left.size(); /*---相机内参----- 事先标定好的相机的参数
2017-01-04 16:51:45
727
原创 从txt读入数据,写入数据
#include int main(){ //读入数据 string filenamem = "数据\\left.txt"; fstream inFile; inFile.open(filenamem, ios::in); vector leftpoint; while (!inFile.eof()) { Point2f p; inFile >> p.x >> p.y
2017-01-04 16:30:03
709
原创 两个矩阵,合并成一个矩阵
Mat mergeCols(Mat A, Mat B){ //CV_ASSERT(A.cols == B.cols&&A.type() == B.type()); int totalCols = A.cols + B.cols; Mat mergedDescriptors(A.rows, totalCols, A.type()); Mat submat = mergedDescript
2017-01-04 16:21:45
7418
原创 opencv ,打开摄像头
// videocap.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include "opencv2/core/core.hpp"#include "opencv2/highgui/highgui.hpp"#include "opencv2/imgproc/imgproc.hpp"#ifdef _D
2017-01-04 16:13:53
472
原创 收藏
如何选择镜头http://www.cnblogs.com/iluzhiyong/p/4458116.html全身三维人体扫描仪信息汇总http://blog.youkuaiyun.com/xuyuhua1985/article/details/46609801三维用先驱者F-1拉低三维重建 http://36kr.com/p/5046607.html
2016-12-29 15:29:11
222
原创 .vtt 字幕无法加载
Coursera一些网络课程,用播放无法加载.vtt格式的字幕文件。解决:用文本文档方式打开.vtt文件,发现文件中的内容和.srt基本一致,只不过前面多了WEBVTT这6个字母。所以:只需要直接删除.vtt文件中的前6个字母WEBVTT,然后保存为.srt格式,播放器就能自动加载了。
2016-12-13 11:08:59
17160
3
原创 学习
/*问题:while (getchar() != '\n') continue; 跳过一行的剩余字符getchar()读取每个字符,包括空格,制表符和换行符,scanf()在读取数字时,会跳过空格制表符,换行符。时间:2016/4/16*/#include void display(char ch, int height, int width);int get_int(
2016-04-16 21:15:10
385
原创 while (getchar() != '\n')
/*问题:while (getchar() != '\n') continue; 跳过一行的剩余字符时间:2016/4/16*/#include void display(char ch, int height, int width);int main(void){ int ch; int rows, cols; printf("enter a characte
2016-04-16 16:41:30
2505
原创 1-1.0/2.0+1.0/3.0-1.0/4.0+....
/*问题:1+1.0/2.0+1.0/3.0+1.0/4.0+.... 1-1.0/2.0+1.0/3.0-1.0/4.0+....时间:2016/4/10*/#include int main(void){ int cout; while (scanf_s("%d", &cout) == 1) { double sum1 = 0; double sum2
2016-04-10 10:19:49
1426
原创 scanf,输入 Go west, young man!
/*问题:学习使用 scanf,输入 Go west, young man!时间:2016/4/7*/#include int main(void){ char ch; scanf_s("%c", &ch, 19); while (ch != 'g') { printf("%c", ch); scanf_s("%c", &ch, 19); } return 0
2016-04-09 10:52:06
606
原创 for 循环学习,输出
/*问题:金字塔图案,学习使用for 循环时间:2016/4/6*/#include int main(void){ for (int i = 0; i < 5; i++) { char ch = 'A'; for (int j = 4-i; j >=0; j--) printf(" "); for (int x = 0; x <= i; x++, ch++)
2016-04-06 22:32:58
1792
原创 整除,求余的学习
输入一个正三位数,输出其逆序。首位不能是0. 如700,逆序应该是7.#include int main(){ int num; printf("请输入3位的正整数:"); while (scanf_s("%d", &num) == 1) { int num1; num1 = num / 100 + (num % 100) / 10 * 10 + num % 100 % 10
2016-04-06 13:46:25
385
2005-A Quasi-Dense Approach to Surface Reconstruction from Uncalibrated Images
2018-01-11
2013 vsfm Towards Linear-time Incremental Structure from Motion
2018-01-11
Efficient High-Resolution Stereo Matching using Local Plane Sweeps_2014CVPR
2018-01-06
算法分析与设计
2018-01-04
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人