膨胀 = 加长、变粗映射并平移后的结构元素至少与原二值图的某些部分重叠。函数imdialate构造结构元素strel(shape, parameters)%% 膨胀的应用A = imread('broken_text.tif');B = [0 1 0; 1 1 1; 0 1 0]; % 结构元素A2...
分类:
其他好文 时间:
2015-01-30 15:03:52
阅读次数:
310
先看代码:
#include
#include
#include
#include
using namespace cv;
using namespace std;
typedef unsigned char byte;
void gradientGray(Mat &src, Mat &mag);
int main(){
Mat src = imread("1.jpg", ...
分类:
其他好文 时间:
2015-01-27 13:23:07
阅读次数:
342
clc;
clear all;
addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');
Image=imread('4.jpg');
Image=double(Image)*0;
coeff_r=1;
coeff_g=1;
coeff_b=1;
[row, col, layer]=size(Image);
% 花环...
分类:
其他好文 时间:
2015-01-25 19:41:36
阅读次数:
316
matlab
I
The input character is not valid in MATLAB statements or expressions.
今天在用基于区域生长的图像分割法时出现了这个问题,总结一下
解决办法
1.保存的文件名是否非法,不要用汉字保存
2.是否使用了汉字输入Editor
3.imread的图片是否是汉字,数字开头等非法内容...
分类:
其他好文 时间:
2015-01-22 18:06:09
阅读次数:
120
[name,path]=uigetfile('*.jpg;*.png;*.bmp','选择一张图片');f=imread([path name]);count = 0; T = mean2(f); done = false; while ~done countcount = co...
分类:
其他好文 时间:
2015-01-21 21:54:07
阅读次数:
378
#include#include#include#includeusing namespace std;using namespace cv;int main(){ char* name = "1.jpg"; Mat img = imread("D:\\1.jpg"); //填入绝对地址,其实相对....
分类:
其他好文 时间:
2015-01-10 15:11:02
阅读次数:
159
%%% orthogonal coordinate to polar coordinate
%%% 平面坐标转极坐标
clc;
clear all;
close all;
addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');
I=imread('4.jpg');
Image=double(I);
Info_Si...
分类:
其他好文 时间:
2015-01-08 18:03:46
阅读次数:
231
Matlab在图像中画标记框 img = imread('M1.JPG'); figure; hold on; imshow(img); hold off; px = 1200; py = 2000; step = 200; x1 = px - step; x...
分类:
其他好文 时间:
2015-01-07 18:37:46
阅读次数:
764
在有些程序中由于图像过大,常常需要我们将图像切割成几个比较小的图案之后在进行相关的处理。
Img=imread('sssd.png');
imgsize=size(Img)
subimg_width=600;
subimg_height=1000;
num_width_spilt=ceil(imgsize(1)/subimg_width);
num_height_spilt=ceil(imgs...
分类:
其他好文 时间:
2015-01-05 11:16:26
阅读次数:
228
在用Opencv的时候由于下图原本的图像尺寸是1111*1111,要进行resize,代码如下:cv::Mat img = cv::imread("//Users//apple//td3//vase//19201.png",CV_LOAD_IMAGE_GRAYSCALE);cv::Mat img2;...
分类:
其他好文 时间:
2014-12-27 21:34:39
阅读次数:
259