代码搜索:Labeled
找到约 414 项符合「Labeled」的源代码
代码结果 414
www.eeworm.com/read/271157/11005137
m p0206.m
clear;
close all;
I=imread('rice.tif');
Imshow(I);
Stru=strel('disk',16);
Back=imopen(I,Stru );
I2=imsubtract(I,Back);
figure, imshow(I2);
Threshold=graythresh(I2);
BW=im2bw(I2,Threshold);
f
www.eeworm.com/read/470471/6911393
m ex1.m
I = imread('chrimage.bmp');
figure,imshow(I);
I2 = rgb2gray(I);
s = size(I2);
I4 = 255*ones(s(1), s(2), 'uint8');
I5 = imsubtract(I4,I2);
I3 = medfilt2(I5,[5 5]);
I3 = imadjust(I3);
bw = im2bw
www.eeworm.com/read/308529/13700183
m ex1.m
I = imread('chrimage.bmp');
figure,imshow(I);
I2 = rgb2gray(I);
s = size(I2);
I4 = 255*ones(s(1), s(2), 'uint8');
I5 = imsubtract(I4,I2);
I3 = medfilt2(I5,[5 5]);
I3 = imadjust(I3);
bw = im2bw
www.eeworm.com/read/304826/13785982
txt 08-24.txt
%例8-24 使用clabel函数给等高线做标注。
>> z = peaks;
>> [C,h] = contour(z,5);
>> clabel(C,h)
>> title({'Contour Labeled Using','clabel(C,h)'})
>>
www.eeworm.com/read/493516/6394953
h lellipse.h
//
// Labeled Ellipse
//
#ifndef LABELEDELLIPSE_H
#define LABELEDELLIPSE_H
#include "label.h"
#include "ellipse.h"
class LabeledEllipseShape : public Label,
public EllipseShape {
public
www.eeworm.com/read/480529/6665648
txt 08-24.txt
%例8-24 使用clabel函数给等高线做标注。
>> z = peaks;
>> [C,h] = contour(z,5);
>> clabel(C,h)
>> title({'Contour Labeled Using','clabel(C,h)'})
>>
www.eeworm.com/read/477090/6745267
m p0206.m
clear;
close all;
I=imread('rice.tif');
Imshow(I);
Stru=strel('disk',16);
Back=imopen(I,Stru );
I2=imsubtract(I,Back);
figure, imshow(I2);
Threshold=graythresh(I2);
BW=im2bw(I2,Threshold);
f
www.eeworm.com/read/347520/11659308
m p0206.m
clear;
close all;
I=imread('rice.tif');
Imshow(I);
Stru=strel('disk',16);
Back=imopen(I,Stru );
I2=imsubtract(I,Back);
figure, imshow(I2);
Threshold=graythresh(I2);
BW=im2bw(I2,Threshold);
f
www.eeworm.com/read/156874/11757646
txt 08-24.txt
%例8-24 使用clabel函数给等高线做标注。
>> z = peaks;
>> [C,h] = contour(z,5);
>> clabel(C,h)
>> title({'Contour Labeled Using','clabel(C,h)'})
>>
www.eeworm.com/read/216389/15015226
txt 08-24.txt
%例8-24 使用clabel函数给等高线做标注。
>> z = peaks;
>> [C,h] = contour(z,5);
>> clabel(C,h)
>> title({'Contour Labeled Using','clabel(C,h)'})
>>