自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ISP行业的忠实粉丝

主要是关于ISP调试、图像质量测试、3A算法方面的研究

  • 博客(8)
  • 资源 (11)
  • 收藏
  • 关注

原创 opencv—膨胀腐蚀

#include "opencv2/imgproc.hpp"#include "opencv2/imgcodecs.hpp"#include "opencv2/highgui.hpp"using namespace cv;Mat src, dst;int morph_elem = 0;int morph_size = 0;int morph_operator = 0;int const max_operator = 4;int const max_elem = 2;int const .

2020-08-31 21:37:27 194

转载 opencv—图像的平滑

其中包括了模糊,高斯模糊,中值滤波,双边滤波#include "opencv2/imgproc.hpp"#include "opencv2/imgcodecs.hpp"#include "opencv2/highgui.hpp"using namespace std;using namespace cv;int DELAY_CAPTION = 1500;int DELAY_BLUR = 100;int MAX_KERNEL_LENGTH = 31;Mat src; Mat dst;c

2020-08-31 19:43:55 125

原创 opencv学习—像素的读写

#include<iostream>#include<opencv2/opencv.hpp>using namespace std;using namespace cv;int main() { Mat pImg = imread("C:\\Users\\Lijian\\Desktop\\Lena.jpg"); //第一种方法 for (int i = 0; i < pImg.rows; ++i) { for (int j = 0; j < pIm.

2020-08-29 22:10:22 160

原创 opencv学习—选择图像的固定区域

opencv学习—选择图像的固定区域#include<iostream>#include<opencv2/opencv.hpp>using namespace std;using namespace cv;int main() { Mat pImg = imread("C:\\Users\\Lijian\\Desktop\\Lena.jpg"); Rect rect(200, 200, 200, 200); Mat roi = Mat(pImg, rect);

2020-08-29 17:10:56 450

原创 Pytorch学习-Variable变量

import torchfrom torch.autograd import Variabletensor=torch.FloatTensor([[1,2],[3,4]])Variable=Variable(tensor,requires_grad=True)t_out=torch.mean(tensor*tensor)V_out=torch.mean(Variable*Variable)#反向传播变量V_out.backward()#打印变量print(Variable)#梯度.

2020-08-21 20:47:58 187

原创 Pytorch学习—torch和numpy区别

torch和numpy之间是可以互相转化的,在使用torch形式的时候,我们需要把numpy转化为torch。import torchimport numpy as npnp_data=np.arange(6).reshape((2,3))torch_data=torch.from_numpy(np_data)tensor2array=torch_data.numpy()print( '\nnumpy',np_data, '\ntorch',torch_data, .

2020-08-21 20:32:45 1059

原创 matlab生成一个向量,前几个数和为固定值

function Out=funM=11;one=ones(1,11);k=12;B=cell(1,k);for i=1:kB{i}=zeros(1,k);end% b=zeros(1,12);for n=1:11 a{n}= rand(1, n); a{n}=a{n}/sum(a{n}).*5; out{n}=[a{n},zeros(1,M-length(a{n}))];endN=unidrnd(11);Out=out{N};endmatlab随机生.

2020-08-15 20:15:25 1146

原创 matlab图像的裁剪

1、指定位置裁剪%% 指定位置裁剪clcclear[I,map]=imread('bird.jpg');figure;subplot(121);imshow(I,map);%指定剪切区域的大小和位置,剪切,返回xy坐标和裁剪区域[x,y,I2,rect]=imcrop(I,map,[410 540 400 400]);%位置和区域大小subplot(122);imshow(I2);2、手动裁剪%% 手动裁剪clcclear[I,map]=imread('bird.j

2020-08-03 21:28:46 15975 1

监控视频中的图像颜色评价与优化_刘馨.pdf

关于ISP颜色优化相关资料

2021-08-05

Low_night.zip

Low_night image enhancement GUI

2021-05-28

ISP图像调优指南.pdf

对于ISP图像调优有很好的总结

2021-05-24

sea-thru-master.rar

论文《Improving Sea-Thru With Monocular Depth Estimation Methods》

2021-01-21

Hisilicon IP Camera 图像质量测试标准.pdf

PQtool图像质量测试标准

2020-12-28

计算机视觉—红绿灯检测

交通信号灯的检测与识别是无人驾驶与辅助驾驶必不可少的一部分,其识别精度直接关乎智能驾驶的安全。一般而言,在实际的道路场景中采集的交通信号灯图像具有复杂的背景,且感兴趣的信号灯区域只占很少的一部分。针对这些难点,国内外的众多研究者提出了相应的解决方案。总的来说,大多基于传统的图像处理方法;但目前也有用强学习能力的卷积神经网络去进行识别,但这类方法往往需要大量的训练样本避免过拟合的风险。截至目前的大多数方法都是在各种颜色空间中利用信号灯颜色的先验进行分割得到兴趣区域,然后再通过信号灯所特有的形状特征和角点特征等进行进一步的判定。比如,Masako Omachi等人提出在RGB色彩空间分割交通信号灯

2020-10-23

tao2004.pdf

这是一篇关于图像暗像素增强方面相关论文,论文的提出时间较早,但今天同样效果很好,是一种很好的图像去阴影相关的论文,很值得推荐给大家。论文中如果遇到什么不懂的问题,欢迎私信,大家互相学习,更好的学习数字图像处理。

2019-10-22

空空如也

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

TA关注的人

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