代码搜索:Nearest

找到约 1,596 项符合「Nearest」的源代码

代码结果 1,596
www.eeworm.com/read/213240/15140006

m nndd.m

%NNDD Nearest neighbour data description method. % % W = NNDD(A,FRACREJ) % % Calculates the Nearest neighbour data description. Training only % consists of the computation of the resemblance o
www.eeworm.com/read/209544/15217581

pas flexpath.pas

///////////////////////////////////////////////////////// // // // FlexGraphics library // // Copyright (c) 200
www.eeworm.com/read/367152/9780186

m lans_psurfproj.m

% lans_psurfproj - Project data (approx.) onto principal surface % % [prsurf,mse,se,gse] = lans_psurfproj(y,psurf[,itype]) % % _____OUTPUTS_________________________________________________________
www.eeworm.com/read/270032/11050338

c ballmath.c

/**** BallMath.c - Essential routines for ArcBall. ****/ #include #include "BallMath.h" #include "BallAux.h" /* Convert window coordinates to sphere coordinates. */ HVect MouseOnSphere(HVec
www.eeworm.com/read/204456/15339303

m nndd.m

%NNDD Nearest neighbour data description method. % % W = NNDD(A,FRACREJ) % % Calculates the Nearest neighbour data description. Training only % consists of the computation of the resemblance o
www.eeworm.com/read/391333/8408401

m gobad.m

close all; clear; clc; %J=imread('cmanJ.tif'); J=imread('b.tif'); se = translate(strel(1), [30 20]); J = imdilate(I,se); J = imrotate(J,45,'nearest','crop'); %imwrite(J,'cmanJother.tif'); ims
www.eeworm.com/read/291380/8422363

m knearest.m

function lock=Knearest(y,Y,K,p) %Syntax: lock=Knearest(y,Y,K,p) %______________________________ % % Locks the K nearest neighbors of a reference point that lie in a % phase-space. % % lock retu
www.eeworm.com/read/191214/8433206

m example5_1.m

I=imread('rice.tif'); imshow(I); I1=imresize(I,1.5,'nearest neighber'); %最近邻插值 figure,imshow(I1); I2=imresize(I,1.5,'bilibear'); %双线形插值 figure,imshow(I2); I3=imresize(I,1.5,'bicubic'); %双三次插值
www.eeworm.com/read/191214/8433211

m example5_2.m

I=imread('eight.tif'); I1=imrotate(I,30,'bilinear','crop'); I2=imrotate(I,30,'nearest neighber'); imshow(I); figure,imshow(I1); figure,imshow(I2);