代码搜索:Select
找到约 10,000 项符合「Select」的源代码
代码结果 10,000
www.eeworm.com/read/438852/7725198
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData)));
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,SE);
IM3=imerode(IM2,SE);
%
www.eeworm.com/read/438852/7725205
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData)));
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,SE);
IM3=imerode(IM2,SE);
%
www.eeworm.com/read/438852/7725212
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData)));
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,SE);
IM3=imerode(IM2,SE);
%
www.eeworm.com/read/438852/7725224
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData)));
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,SE);
IM3=imerode(IM2,SE);
%
www.eeworm.com/read/438852/7725236
m select.m
function [y,y1]=select(ImageData,h,w)
thr=0.5;delta=0.05;
%
y=(ImageData>=thr*mean(max(ImageData)));
BW2=bwareaopen(y,10);SE=strel('square',15);
IM2=imdilate(BW2,SE);
IM3=imerode(IM2,SE);
%
www.eeworm.com/read/438437/7731228
c select.c
/*
MPICH-V2
Copyright (C) 2002, 2003, 2004 Groupe Cluster et Grid, LRI, Universite de Paris Sud
This file is part of MPICH-V2.
MPICH-V2 is free software; you can redistribute it and/or modify
it und
www.eeworm.com/read/438437/7731229
h select.h
/** @file select.h define the main select loop subfunctions
*/
#ifndef SELECT_H
#define SELECT_H
#include "simple_list.h"
#include "vtypes.h"
#include "genericCheckpoint.h"
/** used to send message
www.eeworm.com/read/436271/7773126
m select.m
% SELECT.M (universal SELECTion)
%
% This function performs universal selection. The function handles
% multiple populations and calls the low level selection function
% for the actual se
www.eeworm.com/read/436250/7773969
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