上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: ```C++ /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListN... 阅读全文
posted @ 2018-07-24 18:41 一条图图犬 阅读(252) 评论(0) 推荐(0) 编辑
摘要: ```C++ /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListN... 阅读全文
posted @ 2018-07-24 18:16 一条图图犬 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 问题描述: 打开 vim 之后,出现如下错误: 原因: 这个问题出现在使用 Python 3.7 的情况, 可以暂时在 .vimrc 中做如下配置,并等待更新 Python 3.7 来解决这个问题: 解决办法: 在.vimrc中加入如下 其他解决方法: https://github.com/vim/ 阅读全文
posted @ 2018-07-24 11:34 一条图图犬 阅读(1477) 评论(0) 推荐(0) 编辑
摘要: reference: https://www.cnblogs.com/YiXiaoZhou/p/5893835.html https://blog.csdn.net/zhangxueyang1/article/details/54232306 https://www.cnblogs.com/xfzh 阅读全文
posted @ 2018-07-19 14:11 一条图图犬 阅读(142) 评论(0) 推荐(0) 编辑
摘要: CLAHE 读音:clay Contrast Limiting Adaptive Histogram Equalization 用来处理灰度图像非常好用。 1. 一种理解,相当于样本均衡,对于不要求绝对回归的任务中可以使用。 阅读全文
posted @ 2018-07-18 16:42 一条图图犬 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 为了保证头文件只被编译一次,通常放在头文件的顶部 这个只在逻辑上起作用, https://www.cnblogs.com/carsonzhu/p/5272271.html 表明接下来的部分是用C语言而不是C++写的,通常出现在cpp文件开头。 自动编译 作为一个C/C++新手,给自己复习一遍这些知识 阅读全文
posted @ 2018-07-12 19:18 一条图图犬 阅读(215) 评论(0) 推荐(0) 编辑
摘要: ```bash cd /usr/local/bin ln -s gcc-4.9 gcc ``` 阅读全文
posted @ 2018-07-11 17:15 一条图图犬 阅读(182) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/farmwang/article/details/78573387 阅读全文
posted @ 2018-07-11 15:10 一条图图犬 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: ```C++ double getPSNR(const Mat& I1, const Mat& I2) { Mat s1; absdiff(I1, I2, s1); // |I1 I2| s1.convertTo(s1, CV_32F); // cannot make a square on 8 b 阅读全文
posted @ 2018-07-10 13:51 一条图图犬 阅读(5248) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.latexstudio.net/archives/9026 ulyssess中将markdown文件导出格式设置为HTML command + shift + P 实时预览 实现了:分窗口进行同步编辑与预览 阅读全文
posted @ 2018-07-05 16:26 一条图图犬 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页