代码搜索:Select
找到约 10,000 项符合「Select」的源代码
代码结果 10,000
www.eeworm.com/read/477826/6723518
png select.png
www.eeworm.com/read/476734/6748959
asv select.asv
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData))); %对值大于最大值的1/2的部分进行处理
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,S
www.eeworm.com/read/476734/6748963
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData))); %对值大于最大值的1/2的部分进行处理
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,S
www.eeworm.com/read/476592/6756592
java select.java
package Squall;
import java.util.*;
final public class SELECT extends SORT
{
public void dosort(Vector temp)
{
int k,j;
long begin,end;
begin = System.currentTimeMillis();
for(in
www.eeworm.com/read/476598/6756664
gif select.gif
www.eeworm.com/read/476355/6757897
c select.c
#include
#include
void selection_sort(int array[], int size)
{
int temp, current, j;
for (current = 0; current < size; current++)
for (j = current + 1; j < s
www.eeworm.com/read/410889/11265977
c select.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/410328/11292923