图像处理
文章平均质量分 82
singing1001
码农
展开
-
中值滤波
#include <stdio.h>#include <float.h>#include <cstdlib>#include <string>#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>//using 5x5 window#define FILTER_..原创 2020-10-20 10:31:10 · 196 阅读 · 0 评论 -
平均旋转掩码平滑
#include <stdio.h>#include <float.h>#include <cstdlib>#include <string>#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>void calc_disperse( cv::Mat &sr.原创 2020-10-19 10:46:58 · 232 阅读 · 0 评论 -
直方图均衡化
#include <stdio.h>#include <cstdlib>#include <string>#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>#define LIGHT_MAX 256int main(int argc, char* argv[]){ ..原创 2020-10-14 09:13:43 · 143 阅读 · 0 评论 -
积分图
#include <stdio.h>#include <cstdlib>#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>int main(int argc, char* argv[]){ int w = 0, h = 0;// string fileName = arg...原创 2020-10-13 18:21:07 · 140 阅读 · 0 评论 -
高斯噪声模拟
#include <stdio.h>#include <stdlib.h>#include <math.h>#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>#define PIXEL_MAX 255.ffloat get_float_0_1(){ return ...原创 2020-10-02 21:59:08 · 1512 阅读 · 0 评论 -
距离计算
步骤:1)从左到右,从上到下扫描2)从右到左,从下到上扫描#include <opencv2/highgui.hpp>#include "opencv2/imgproc.hpp"#include <iostream>#include <fstream>using namespace std;#ifndef uint8#define uint8 unsigned char#endif/*left mask **************.原创 2020-09-30 10:18:46 · 168 阅读 · 0 评论 -
Explanation of the LAB Color Space
Color space defined by the CIE, based on one channel for Luminance (lightness) (L) and two color channels (a and b).One problem with the XYZ color system, is that colorimetric distances between the ...转载 2018-11-01 10:27:46 · 290 阅读 · 0 评论 -
stereo calibration使用opencv获取图像rectification
使用opencv获取图像rectification 左右两张图像经过rectification后,会前向共面,也就是它们的主光轴平行,见“三角测量的前提的假设”。该处理的源代码对应于opencv的sample的stereo_calib.cpp。 基本处理过程 基本处理过程分为两个部分,1)获取进行rectification所需要的map1和map2。 2)对每...原创 2018-08-22 16:00:39 · 3794 阅读 · 0 评论 -
PGM格式的p5类型的双字节存储的读取操作,关于CV的第一篇博客,敬请指教
该文章是本人原创,可以转发分享,但希望标注本原创的链接,谢谢!关于PGM/PPM格式的描述文章很多,因此,基本知识咱就不多说了。只是关于p5类型的双字节的描述太少,我没有搜到,基于一些零碎的信息,对GPM格式的P5类型的双字节存储予以代码实现。以下的代码可以正确运行的。#include <cv.h>#include <opencv2/highgui.hpp>...原创 2018-07-30 18:29:46 · 1475 阅读 · 4 评论