• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






任重道远-HSY

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页

2019年9月11日

单链表插入与删除数据
摘要: 转载自:khq溪风 阅读全文
posted @ 2019-09-11 11:16 任重道远-HSY 阅读(537) 评论(0) 推荐(0)
 

2019年9月10日

opencv 数据训练
摘要: #include <io.h> #include <string> #include <iostream> #include <opencv2\opencv.hpp> #include <opencv2\ml.hpp> using namespace cv; using namespace ml; int main() { // 读取图片创建训练数据 // //将所有图片大小统一转化为8*16 c 阅读全文
posted @ 2019-09-10 09:19 任重道远-HSY 阅读(584) 评论(1) 推荐(0)
 

2019年8月27日

C++ 小波变换
摘要: 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 #define LENGTH 512 5 #define LEVEL 4 6 #define L_core 6 7 8 int main() 9 { 10 11 12 } 13 14 15 static void Covlution(double data[], d 阅读全文
posted @ 2019-08-27 11:07 任重道远-HSY 阅读(869) 评论(0) 推荐(0)
 

2019年8月24日

OpenCV 轮廓方向
摘要: 函数方法如下: 例子: 阅读全文
posted @ 2019-08-24 14:57 任重道远-HSY 阅读(1327) 评论(0) 推荐(0)
 

2019年8月23日

OpenCV 低通滤波(可设置频率)
摘要: #include #include #include #include #include using namespace std; using namespace cv; int radius = 1;//截断频率 Mat img; /*(理想低通滤波器,巴特沃斯低通滤波器,高斯低通滤波器)*/ enum LPFILTER_TYPE { ILP_FILTER = 0, BLP_FILTER ... 阅读全文
posted @ 2019-08-23 10:56 任重道远-HSY 阅读(1449) 评论(0) 推荐(0)
 

2019年8月22日

OpenCV 低通滤波
摘要: #include<opencv2/core/core.hpp> #include<opencv2/highgui/highgui.hpp> #include<opencv2/imgproc/imgproc.hpp> using namespace std; using namespace cv; Mat I;//输入的图像矩阵 Mat F;//图像的快速傅里叶变换 Point maxLoc;//傅 阅读全文
posted @ 2019-08-22 16:46 任重道远-HSY 阅读(525) 评论(0) 推荐(0)
 
OpenCV 骨架细化
摘要: void ThinImage(Mat srcImg,Mat&dstImg)//srcImg原图像,dstImg输出图像 1 void ThinImage(Mat srcImg,Mat&dstImg) 2 { 3 dstImg = srcImg.clone(); 4 vector deleteList; 5 int neighbourhood[9... 阅读全文
posted @ 2019-08-22 14:55 任重道远-HSY 阅读(1062) 评论(0) 推荐(0)
 

2019年8月21日

OpenCV convertScaleAbs
摘要: 转换类型 阅读全文
posted @ 2019-08-21 09:19 任重道远-HSY 阅读(728) 评论(0) 推荐(0)
 

2019年8月20日

OpenCV 高斯低通滤波
摘要: 1 #include<opencv2/opencv.hpp> 2 #include<iostream> 3 using namespace std ; 4 using namespace cv ; 5 Mat gaussianlbrf( Mat scr, float sigma);//高斯低通滤波器函数 6 Mat freqfilt( Mat scr, Mat blur);//频率域滤波函数 7 阅读全文
posted @ 2019-08-20 10:46 任重道远-HSY 阅读(984) 评论(0) 推荐(0)
 
OpenCV 低通滤波(输入数据)
摘要: #include #include #include #include #include using namespace std; using namespace cv; int main() { vector src; string path = "E:\\实习入门\\原跳动\\1.txt"; ifstream infile; infile.open(p... 阅读全文
posted @ 2019-08-20 10:32 任重道远-HSY 阅读(326) 评论(0) 推荐(0)
 
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页