
matlab
leecmin
测绘工程小硕一枚,正在积极努力的提升人生打怪技能,希望有志同道合的人一起学习成长进步!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ordfilt2函数 matlab
在MATLAB图像处理工具箱中提供了二维统计顺序滤波函数ordfilt2函数。二维统计顺序滤波是中值滤波的推广,对于给定的n个数值{al ,a2,...,an},将它们按大小顺序排列,将处于第k个位置的元素作为图像滤波输出,即序号为k的二维统计滤波。ordfilt2函数语法格式为:Y=ordfilt2(X,order,domain)Y=ordfilt2(X,order,domain原创 2014-07-23 11:23:36 · 2348 阅读 · 0 评论 -
寻找邻域内极大值及其坐标
寻找邻域内极大值及其坐标function [row,col,max_local] = findLocalMaximum(val,radius) % Determine the local maximum of a given value % % % INPUT % ===== % val : the NxM matrix c原创 2014-07-23 15:36:18 · 1625 阅读 · 0 评论 -
rectangle函数matlab
在图像上标记特征点:原创 2014-07-23 16:39:33 · 4018 阅读 · 0 评论 -
matlab取整函数
floor:朝服务原创 2014-07-24 14:32:37 · 668 阅读 · 0 评论 -
find函数 matlab
找出符合条件的元素位置原创 2014-07-23 15:33:16 · 689 阅读 · 0 评论 -
plot函数,标记特征点
标记特征点figure;imshow(img);hold on ;axis off;for i=1:size(corner1,1)% rectangle('Position',[corner1(i,2)-2,corner1(i,1)-2,4,4],'Curvature',[0 0],'EdgeColor','r','LineWidth',2); plot(corner原创 2014-07-23 17:12:37 · 2876 阅读 · 0 评论 -
将两张图像并排显示成一幅图像
function im = appendimages(image1, image2)% Select the image with the fewest rows and fill in enough empty rows% to make it the same height as the other image.rows1 = size(image1,1);rows原创 2014-07-24 16:33:32 · 2066 阅读 · 0 评论 -
漫谈 Clustering (3): Gaussian Mixture Model
转载:http://blog.pluskid.org/?p=39漫谈 Clustering (3): Gaussian Mixture Model by pluskid, on 2009-02-02, in Machine Learning 192 comments本文是“漫谈 Clustering 系列”中的第 4 篇,参见本系列的其他文章。转载 2016-08-22 09:33:39 · 845 阅读 · 0 评论