vision
abraham_li
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Collection of Important CV Researchers
参考了计算机视觉牛人博客和代码汇总(全)一文ResearchersResearch Groups原创 2015-10-30 14:05:29 · 310 阅读 · 0 评论 -
OpenCV 2.4.9 + VS 2012配置
http://blog.youkuaiyun.com/liukun321/article/details/38373277转载 2015-11-28 16:07:01 · 546 阅读 · 0 评论 -
OpenCV中mat的type
http://www.tuicool.com/articles/euqaQvJ转载 2015-12-30 17:59:05 · 548 阅读 · 0 评论 -
OpenCV2的helloworld
#include <opencv2\opencv.hpp> #include <iostream> #include <string>using namespace cv; using namespace std;int main() { Mat img = imread("pp.jpg"); if (img.empty()) { cout << "error";原创 2015-11-29 23:44:05 · 331 阅读 · 0 评论 -
Matlab矩阵计算
imshow(I,[low high]) 用指定的灰度范围 [low high]显示灰度图像I。显示结果,图像中灰度值等于或低于low的都将用黑色显示,而灰度值大于等于high的都显示为白色,介于low和high之间的用其灰度级的默认值的中间色调显示。如果你用了一个空矩阵([]) 来代替 [low high], imshow 函数将使用 [min(I(:))max(I(:))]作为第二个参数。转载 2016-03-02 22:09:17 · 4109 阅读 · 0 评论
分享