自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

翻译 一起学opencv (十) sobel and laplacian

#if !defined LAPLACEZC#define LAPLACEZC#include #include class LaplacianZC {private: // original image cv::Mat img; // 32-bit float image containing the Laplacian cv::Mat laplace; // Ap

2016-11-18 18:33:24 759

翻译 一起学opencv (九) 滤波

#include #include #include #include int main(){ // Read input image cv::Mat image= cv::imread("bfg.jpg",0); if (!image.data) return 0; // Display the image cv::namedWindow("Original

2016-11-18 16:44:01 342

翻译 一起学opencv (八) 分水岭和选取segment

mian/*------------------------------------------------------------------------------------------*\This file contains material supporting chapter 5 of the cookbook:Computer Vision Programming using

2016-11-15 21:36:32 1055

翻译 一起学opencv(七) 边缘和角点检测

头文件#if !defined MORPHOF#define MORPHOF#include #include class MorphoFeatures {private: // threshold to produce binary image int threshold; // structuring elements used in corner detection

2016-11-14 21:09:25 762

翻译 一起学opencv (六) 形态学-腐蚀和膨胀

代码如下#include #include #include int main(){ // Read input image cv::Mat image = cv::imread("binary.bmp",0); if (!image.data) return 0; // Display the image cv::namedWindow("Image"); cv

2016-11-04 14:45:11 564

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除