代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
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/438735/7727589
sta main.sta
ROM used: 162 (2%)
162 (2%) including unused fragments
0 Average locations per line
7 Average locations per statement
RAM used: 17 (5%) at main() level
www.eeworm.com/read/436626/7766824
c mtouch727.c
//******************************************************************************
// Software License Agreement
//
// The software supplied herewith by Microchip Technology
// Incorporated (the "Co
www.eeworm.com/read/436361/7771094
sta tstrs485.sta
ROM used: 1620 (40%)
2048 (50%) including unused fragments
1 Average locations per line
3 Average locations per statement
RAM used: 115 (60%) at main() level
www.eeworm.com/read/436250/7774031
c math.c
#include
void main ()
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of secon
www.eeworm.com/read/435514/7791008
xg hops.xg
TitleText: Average Number of Hops
YUnitText: Average Number of Hops
XUnitText: Velocity (m/sec)
"MAODV"
1 3.1
5 3.16
10 3.11
15 3.1
20 3.2
"AODV"
1 2.9
5 2.95
10 3.0
15 2.98
20 2.99
www.eeworm.com/read/435304/7794089
m framedif6.m
%求解视频的帧差分布 (方法六,方差分布图)
%读取视频
clear all;
clc;
tic;%start time
shot=mpgread('..\videos\wipe.mpg',[],'truecolor');%读取视频
%shot=aviread('video\skiing.avi');
frames=size(shot,2);
framedif=zeros(fr
www.eeworm.com/read/435150/7796274
cpp ex5_02.cpp
// Exercise 5.2 Summing integers and calculating the average
#include
#include
#include
using std::cout;
using std::cin;
using std::endl;
int main() {
char ch