数字图像处理 Opencv
文章平均质量分 74
马可露露
人生苦短,我只看帅哥
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
iToF和dToF
iToF(indirect Time-of-Flight 间接飞行时间法)iToF是通过对发光信号强度进行编码(如正弦波编码),编码的光束经过一段距离后会发生“相位”变化,在探测器端通过对比原始相位和反射光的相位即可获得相位变化,间接得到飞行时间,从而得到距离信息iTOF use modulated signal (e.g. sinusoidal wave) to retrieve phase of the modulated signal,and calculate the distance indi原创 2021-10-29 09:34:22 · 3196 阅读 · 0 评论 -
VS2019 OPENCV C++ 人脸和眼睛识别 01
实现:打开电脑的摄像头;对画面里的人脸识别,画图框。问题:图框总是缺线,人头歪一定角度后不能识别,张开嘴巴图框会乱。注意事项:haarcascade_frontalface_alt2和 “源文件” 应该放到一个路径下。#include<iostream>#include<opencv2/objdetect/objdetect.hpp>#include<opencv2/highgui/highgui.hpp>#include<opencv2/i.原创 2020-05-24 20:03:00 · 1954 阅读 · 0 评论 -
边缘检测——经典算子Robert、Sobel、Laplacian、 Prewitt
RobertSobelLaplacianPrewitt#include <iostream>#include <opencv2/opencv.hpp>using namespace std;using namespace cv;Mat src, dst, ydst;const char*output_title = "OUTimage";int ksize = 0;int main(int argc, char** argv){ src = imre.原创 2020-05-08 23:56:40 · 809 阅读 · 0 评论 -
图像处理——阈值
#include <iostream>#include <opencv2/opencv.hpp>using namespace std;using namespace cv;Mat src, graysrc, dst, thresh;const char*output_title = "binaryimage";int threshhold_value = ...原创 2020-05-08 10:35:19 · 2319 阅读 · 0 评论 -
形态学——直线操作
#include <iostream>#include <opencv2/opencv.hpp>using namespace std;using namespace cv;Mat src, dst;Mat thresh;char IPNPUT_WIN[] = "input image";char OUTPUT_WIN[] = "output image";...原创 2020-05-04 22:46:03 · 196 阅读 · 0 评论 -
图像金字塔和归一化显示
1. 概念图像金字塔是图像中多尺度表达的一种,最主要用于图像的分割,是一种以多分辨率来解释图像的有效但概念简单的结构。图像金字塔最初用于机器视觉和图像压缩,一幅图像的金字塔是一系列以金字塔形状排列的分辨率逐步降低,且来源于同一张原始图的图像集合。其通过梯次向下采样获得,直到达到某个终止条件才停止采样。金字塔的底部是待处理图像的高分辨率表示,而顶部是低分辨率的近似。将一层一层的图像比喻成金字塔...原创 2020-05-05 09:32:44 · 509 阅读 · 2 评论
分享