在我们刚开始编写opencv程序的时候,会用到imread()函数,然后里面会有参数CV_LOAD_IMAGE_UNCHANGED那么这个代表什么意思呢?imread()函数的声明如下:1CV_EXPORTS_W Mat imread(const string& filename,int flags...
分类:
其他好文 时间:
2015-05-07 23:41:12
阅读次数:
291
下面的small tips 是我在做毕设时处理图片遇到的一些问题,先如今都已经找到了解决的方法,适合于opencv的新手看一看。
1. imread() 小陷阱
imread('img.jpg');
这条语句读进来的是3通道,无论img.jpg是单通道的图像还是3通道的图像,所以输入图像如果是灰度图像,为了不出错,可以使用
imread("img.jpg",-1);
2.norm...
分类:
其他好文 时间:
2015-05-07 08:57:39
阅读次数:
353
首先附上MATLAB代码:% 读入RGB图像并将其转换成灰度图像I=imread('pic12.jpg');I=rgb2gray(I);subplot(1,2,1);imshow(I)title('原始图像')% 数据类型转换,MATLAB不支持无符号数学的计算f=double(I); % 傅里叶....
分类:
其他好文 时间:
2015-04-30 19:34:58
阅读次数:
130
%直接提取四个顶点坐标
clc;clear;close;%clc清除命令行,clear清除存在内存里的数据,close关闭打开了的文件,
I=imread('e:\role0\003i.bmp'); %载入图像
I = I(:,:,1);
BW=im2bw(I);
figure ;
imshow(~BW);
[x,y]=getpts ;...
分类:
其他好文 时间:
2015-04-28 18:35:33
阅读次数:
267
%直方图均衡化 MATLAB 程序实现如下:
I=imread('e:\role0\003i.bmp');
I=rgb2gray(I);
figure;
subplot(2,2,1);
imshow(I);
subplot(2,2,2);
imhist(I);
I1=histeq(I);
figure;
subplot(2,2,1);
imshow(I1);
subplot(2,2...
分类:
其他好文 时间:
2015-04-28 18:33:01
阅读次数:
144
%中值滤波器 用MATLAB实现中值滤波程序如下:
clc;clear;close;
I=imread('e:\role0\003i.bmp');
I=rgb2gray(I);
J=imnoise(I,'salt',0.02);
subplot(231),imshow(I);
title('原图像');
subplot(232),imshow(J);
title('添加椒盐噪声图像'); ...
分类:
其他好文 时间:
2015-04-28 16:09:01
阅读次数:
154
%自动阈值法:Otsu法 用MATLAB实现Otsu算法:
clc;clear;close;
I=imread('e:\role0\003i.bmp');
subplot(1,2,1),imshow(I);
title('原始图像')
grid on; %显示网格线
axis on; %显示坐标系
level=graythres...
分类:
编程语言 时间:
2015-04-28 16:07:44
阅读次数:
264
matlab代码如下:close all;
clear all;
clc;
% key=1; %key 用来设置需要压缩的比例
%读入原始图像original string,os 原始图像字符串
[filename pathname]=uigetfile('*.bmp;*.jpg;*.tif', '原图像.jpg');
os=[pathname filename];
o=imread(os);
%读...
分类:
其他好文 时间:
2015-04-26 16:48:18
阅读次数:
174
http://jingyan.baidu.com/article/20b68a884d6272796cec62e0.htmlMatlab 自带的滤波函数edge fspecial 打开fspecial文件可以看到例子% I = imread('cameraman.tif');% subplot(2,...
分类:
其他好文 时间:
2015-04-24 18:24:51
阅读次数:
187
The OpenCV function imread() not working in OpenCV 2.4.11 Debug mode of VS2010 under Win32, the way we want to make it work is to change it to Release...
分类:
其他好文 时间:
2015-04-22 09:23:24
阅读次数:
103