码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
直接提取四个顶点坐标
%直接提取四个顶点坐标 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
图形对象的创建(常用图形对象的创建方法及特殊属性)
1.图形窗口对象MATLAB的一切图形图像的输出都是在图形窗口中完成的。一、创建建立图形窗口对象使用figure函数,其调用格式为:句柄变量=figure(属性名1,属性值1,属性名2,属性值2,...) MATLAB通过对属性一的操作来改变图形窗口的形式。也可以使用figure函数按MATLAB....
分类:其他好文   时间:2015-04-25 00:04:23    阅读次数:222
回溯-POJ2676-Sudoku
Description Sudoku is a very simple task. A square table with 9 rows and 9 columns is divided to 9 smaller squares 3x3 as shown on the Figure. In some of the cells are written decimal digits from 1...
分类:其他好文   时间:2015-04-23 13:17:16    阅读次数:144
HTML5新特性小结
HTML5 新特性 新的DocType: 不需要声明文档类型;脚本和链接不需要type属性,如 lingk, script;语义化标签,如:header, footer, hgroup, mark, figure, small, article,属性及校验, 新的属性,如:placeholder, required, autofocus, pattern, autocompl...
分类:Web程序   时间:2015-04-22 13:54:46    阅读次数:228
PCNN Matlab显微图像处理
%------PulseCoupledNeuralNetwork-----------%------名称:脉冲耦合神经网络(PCNN)functionH=PCNN2(I)I=imread(‘BanLanGen.png‘);figure,imshow(I);title(‘原始图像‘);th=graythresh(I);I=im2bw(I,th);%H=Pcnn(I,30);%****************************************************..
分类:其他好文   时间:2015-04-21 14:53:32    阅读次数:251
matlab PCNN 显微图像处理
%------Pulse Coupled Neural Network-----------     %------名称:脉冲耦合神经网络(PCNN)     function H = PCNN2(I)  I = imread('BanLanGen.png');  figure,imshow(I); title('原始图像'); th = graythresh(I); I = im2...
分类:其他好文   时间:2015-04-21 13:03:40    阅读次数:177
In-circles Again(简单几何)
In-circles Again Time Limit: 1000ms Memory Limit: 65536KB 64-bit integer IO format: %lld      Java class name: Main Submit Status PID: 4272 In the figure below you can see triangl...
分类:其他好文   时间:2015-04-19 21:27:54    阅读次数:167
清华学堂 列车调度(Train)
列车调度(Train)DescriptionFigure 1 shows the structure of a station for train dispatching.Figure 1In this station, A is the entrance for each train and B ...
分类:其他好文   时间:2015-04-19 21:21:39    阅读次数:254
css 基本全局写法
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margi...
分类:Web程序   时间:2015-04-18 17:31:16    阅读次数:194
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!