代码搜索:Labeled

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

代码结果 414
www.eeworm.com/read/292880/8327829

java distinctrepresentatives.java

import java.io.*; import java.util.*; class Vertex { public int idNum, capacity, edgeFlow; public boolean forward; // direction; public Vertex twin; // edge in opposite directio
www.eeworm.com/read/335654/12509874

m yabaoganjun.m

I1=imread('yabaoganjun1.jpg'); imshow(I1),title('原始图像'); I2=imresize(I1,0.1); figure(2),imshow(I2),title('放大0.1倍图像'); I3=rgb2gray(I2); figure(3),imshow(I3),title('灰度图像'); I4=imadjust(I3);%对比度调整法
www.eeworm.com/read/201477/15407550

h awdbfs.h

template void AdjacencyWDigraph::BFS (int v, int reach[], int label) {// Breadth first search. LinkedQueue Q; reach[v] = label; Q.Add(v); while (!Q.Is
www.eeworm.com/read/159709/10621163

txt readme.txt

功能: 对输入的一有理Z变换表达式(输入分子和分母系数序列),分别画出: (1)零极点图 (2)z在单位圆上时z变换所对应的DTFT的幅度谱和相位谱 (3)逆z变换所得序列,在各种不同的收敛域下 1. Structure of the program: 程序入口与界面控制在 Homework3.m 与 Homework3.fig中,其中也包含了计算与画图的代码 ...
www.eeworm.com/read/327242/13092367

3 readme.mpi_3.3

$Name: fa35_03_06 $ - $Id: readme.mpi_3.3,v 1.6 2007/06/29 20:23:58 wrp Exp $ 20-August-2001 This file is obsolete - see readme.v34t0, readme.v33t0, and readme.pvm_3.4 for more up-to-date informat
www.eeworm.com/read/405213/11469164

m gd_performssl.m

function [output,d]=GD_PerformSSL(K,Labeled, num_classes,laplacian, lambda, MuRegul); num=size(K,1); % transforming the multiclass labels into binary (-1,1) one-versus-all % label set Labels =
www.eeworm.com/read/369892/9630376

h snow.h

// -*-c++-*- //=========================================================== //= University of Illinois at Urbana-Champaign = //= Department of Computer Science = /
www.eeworm.com/read/390194/8477621

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/389348/8532373

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/417350/10993206

txt 08-24.txt

%例8-24 使用clabel函数给等高线做标注。 >> z = peaks; >> [C,h] = contour(z,5); >> clabel(C,h) >> title({'Contour Labeled Using','clabel(C,h)'}) >>