代码搜索:Labeled

找到约 414 项符合「Labeled」的源代码

代码结果 414
www.eeworm.com/read/366977/9786527

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/135259/13947159

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/201342/15409818

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/182664/9197886

java j_yang.java

//J_yang.java // //Created by Jun_Hai Yong //Readme: //Illustrate continue statement in a labeled statement block. public class J_yang { public static void main(String args[]) {
www.eeworm.com/read/462042/7211742

txt 代码29.4.txt

function Edit_Callback(hObject, eventdata, handles) function Grains_Callback(hObject, eventdata, handles) function Grains_Callback(hObject, eventdata, handles) file=get(handles.edit1,'string');
www.eeworm.com/read/448693/7527104

java dependencyevaluator.java

package mstparser; import java.io.*; public class DependencyEvaluator { public static void evaluate(String act_file, String pred_file) throws IOException { boolean labeled = false; BufferedR
www.eeworm.com/read/212951/15144480

txt tztqex.txt

%读取待处理图像 I=imread('4-1.jpg'); imshow(I); %对输入的图像I进行形态学开操作,去掉不完全包含在圆盘中的对象 bw=imopen(I,strel('line',10,45)); %反白处理 bw=imcomplement(bw); %将图像转化为二值图像 bw=im2bw(I,0.75); figure,imsho
www.eeworm.com/read/103956/15715825

c y.tab.c

#ifndef lint static char const yyrcsid[] = "$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.28 2000/01/17 02:04:06 bde Exp $"; #endif #include #define YYBYACC 1 #define YYMAJOR 1 #define
www.eeworm.com/read/405213/11469157

m gd_evalsolution.m

function [TestError,TrainError, not_classified,final]=GD_EvalSolution(y,output,Labeled) num_classes=max(y); num=length(y); % compute final classification, final==0 corresponds to "not classifie
www.eeworm.com/read/474435/6809391

m gesture_hu.m

%% Script para clasificacion de gestos por monentos de Hu % ... clear all close all clc %% Carga la imagen tic I = imread('24.jpg'); % carga imagen %figure, imshow(I); % muestra la im