随笔分类 -  图像处理

opencv rgb转YUV公式
摘要:https://docs.opencv.org/master/de/d25/imgproc_color_conversions.html#color_convert_rgb_ycrcb RGB ↔ YCrCb JPEG (or YCC) Y←0.299⋅R+0.587⋅G+0.114⋅B Cr←(R 阅读全文

posted @ 2020-08-14 11:04 Maddock 阅读(1684) 评论(0) 推荐(0) 编辑

permutohedral lattice理解
摘要:[完结]saliency filters精读之permutohedral lattice 2012年09月28日 22:40:08 工长山 阅读数:12432 [完结]saliency filters精读之permutohedral lattice 2012年09月28日 22:40:08 工长山  阅读全文

posted @ 2019-03-14 16:27 Maddock 阅读(2941) 评论(0) 推荐(0) 编辑

matlab与python读取tiff文件
摘要:matlab python 阅读全文

posted @ 2019-01-22 20:44 Maddock 阅读(3769) 评论(0) 推荐(0) 编辑

Visual studio中编译和使用libpng和zlib
摘要:Visual studio中编译和使用libpng和zlib https://blog.csdn.net/jinzhuojun/article/details/7972747 阅读全文

posted @ 2019-01-01 14:51 Maddock 阅读(867) 评论(0) 推荐(0) 编辑

相似变换 SimilarityTransform 以及skimage源码
摘要:http://scikit-image.org/docs/dev/api/skimage.transform.html#skimage.transform.SimilarityTransform https://github.com/scikit-image/scikit-image/blob/ma 阅读全文

posted @ 2018-07-05 14:28 Maddock 阅读(3362) 评论(0) 推荐(0) 编辑

python 人脸识别
摘要:"""Performs face alignment and calculates L2 distance between the embeddings of images.""" # MIT License # # Copyright (c) 2016 David Sandberg # # Permission is hereby granted, free of charge, to ... 阅读全文

posted @ 2017-11-05 23:35 Maddock 阅读(814) 评论(0) 推荐(0) 编辑

opencv 摄像头人脸检测
摘要:PYTHON ubuntu16.04 默认安装的Python版本2.7.12,当用pip install opencv-python 安装了opencv for python 3.3.0.10后,运行命令 python -c "import cv2;cap=cv2.VideoCapture(0);p 阅读全文

posted @ 2017-11-03 17:34 Maddock 阅读(536) 评论(0) 推荐(0) 编辑

python 图像处理基础操作
摘要:Python 读取图片文件为矩阵和保存矩阵为图片 读取图片为矩阵 保存矩阵为图片 比较向量的相似度 http://www.cnblogs.com/denny402/p/7028832.html 阅读全文

posted @ 2017-10-24 11:08 Maddock 阅读(300) 评论(0) 推荐(0) 编辑

MRF能量优化
摘要:一个外国博客,写的比较清晰 http://nghiaho.com/?page_id=1366 MRF优化牛人 重庆大学的教授 1 http://qianjiye.de/2015/09/reparameterization-and-dp Elective course project under Co 阅读全文

posted @ 2017-07-17 16:21 Maddock 阅读(623) 评论(0) 推荐(0) 编辑

利用积分图进行均值滤波
摘要:void integral_blur(){ Mat src = imread("src960_720.bmp", 1); int height = src.rows; int width = src.cols; int Rmax = 5; int sh2 = Rmax / 2; int sw2 = 阅读全文

posted @ 2016-09-02 10:03 Maddock 阅读(706) 评论(0) 推荐(0) 编辑

图像的插值算法
摘要:图像的插值算法 插值的定义: 设函数y=f(x)在区间[a,b]上有定义,且已知在点a≤x0<x1<…<xn≤b上的值为y0,y1,…,yn,若存在简单函数P(x)使得 P(xi)=yi (i=0,1,…,n) 成立,就称P(x)为f(x)的插值函数, x0,x1,…,xn称为插值节点,包含插值节点 阅读全文

posted @ 2016-06-16 16:55 Maddock 阅读(2164) 评论(0) 推荐(0) 编辑

YUV格式介绍
摘要:原文链接:http://www.cnblogs.com/azraelly/archive/2013/01/01/2841269.html YUV格式有两大类:planar和packed。对于planar的YUV格式,先连续存储所有像素点的Y,紧接着存储所有像素点的U,随后是所有像素点的V。对于pac 阅读全文

posted @ 2016-03-03 14:36 Maddock 阅读(18566) 评论(1) 推荐(0) 编辑

OpenCv ROI操作
摘要:Mat img, dst; Rect imgroi(0, 0, img.cols, img.rows);//小图像img需要复制到大图的像素区域rect Rect dstroi(0, 0, img.cols, img.rows);//大图像dst中接收的区域rect Mat... 阅读全文

posted @ 2015-12-02 10:30 Maddock 阅读(674) 评论(0) 推荐(0) 编辑

opencv中的SIFT,SURF,ORB,FAST 特征描叙算子比较
摘要:opencv中的SIFT,SURF,ORB,FAST 特征描叙算子比较参考:http://wenku.baidu.com/link?url=1aDYAJBCrrK-uk2w3sSNai7h52x_eWeRu9p9GhZd49WJ1bEOB7VluQdBdRKeehAO2Q3B7RatTXDruq-M... 阅读全文

posted @ 2015-11-05 17:08 Maddock 阅读(3240) 评论(0) 推荐(0) 编辑

OpenCv学习--图像画框标记rectangle
摘要:int testrectangle(){ char *imageSrc = "woman.jpg"; Mat matImage = imread(imageSrc, -1); IplImage *iplImage = cvLoadImage(imageSrc, -1); if... 阅读全文

posted @ 2015-10-26 11:26 Maddock 阅读(4429) 评论(0) 推荐(0) 编辑

MeanShift图像分割算法
摘要:MeanShift图像分割算法 阅读全文

posted @ 2015-10-16 10:46 Maddock 阅读(3048) 评论(0) 推荐(0) 编辑

博客链接
摘要:一 IT科技博客 月光博客:http://www.williamlong.info/ pingwest: http://www.pingwest.com/ 博客园:http://www.ituring.com.cn/ 博客园_C++: http://www.cppblog.com/ V2EX :ht 阅读全文

posted @ 2015-10-01 13:37 Maddock 阅读(290) 评论(0) 推荐(0) 编辑

图像去模糊
摘要:图像去模糊 阅读全文

posted @ 2015-09-23 18:57 Maddock 阅读(467) 评论(0) 推荐(0) 编辑

特征描述算子-sift
摘要:特征描述算子-sifthttp://boche.github.io/download/sift/Introduction%20to%20SIFT.pdf 阅读全文

posted @ 2015-07-20 09:50 Maddock 阅读(429) 评论(0) 推荐(0) 编辑

opencv边界扩展
摘要:图像滤波中经常需要处理边界,opencv提供了一个边界扩展函数#include using namespace cv;using namespace std;void main(){ Mat src = imread("test.jpg"); Mat makebordimg = src.... 阅读全文

posted @ 2015-07-10 19:16 Maddock 阅读(1048) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示