代码搜索:分频处理
找到约 10,000 项符合「分频处理」的源代码
代码结果 10,000
www.eeworm.com/read/474634/6804140
c web.c
#include "web.h"
/*************************************************************************
* 名称:ProcessWeb
* 函数原型:uint8 ProcessWeb(uint8 *buf)
* 功能:处理WEB请求
* 入口参数:
buf : web请求数据
*
www.eeworm.com/read/292874/8328118
frm frmsetpara3.frm
VERSION 5.00
Begin VB.Form frmSetpara3
Caption = "参数设置 3:报警事件的处理动作"
ClientHeight = 6705
ClientLeft = 4230
ClientTop = 2475
ClientWidth = 6765
www.eeworm.com/read/172265/9715282
txt 图像旋转.txt
////////////////////////////////////////////////////////////////
//参数说明:
// HWND hWnd:窗口句柄
//程序说明:图像的旋转
BOOL Rotation(HWND hWnd)
{
//定义对话框处理程序
DLGPROC dlgInputBox = NULL;
//设定偏移
www.eeworm.com/read/415628/11060578
java main.java
public class Main {
public static void main(String[] args) {
// 执行Host的大型处理的线程
Thread executor = new Thread() {
public void run() {
System.out.prin
www.eeworm.com/read/269839/11075483
frm frmsetpara3.frm
VERSION 5.00
Begin VB.Form frmSetpara3
Caption = "参数设置 3:报警事件的处理动作"
ClientHeight = 6705
ClientLeft = 4230
ClientTop = 2475
ClientWidth = 6765
www.eeworm.com/read/269829/11075814
frm frmsetpara3.frm
VERSION 5.00
Begin VB.Form frmSetpara3
Caption = "参数设置 3:报警事件的处理动作"
ClientHeight = 6705
ClientLeft = 4230
ClientTop = 2475
ClientWidth = 6765
www.eeworm.com/read/267438/11178694
java clockanimate.java
package kyodai;
import java.awt.*;
import javax.swing.*;
/**
* 处理时间的类
*/
public class ClockAnimate extends JPanel
implements Runnable {
private volatile Thread thread;
long startTi
www.eeworm.com/read/148168/12488331
txt kj02-05-03.txt
For…Next语句一般用于完成次数确定的循环处理。该语句的格式如下:
For counter=startvalue To endvalue [Step stepvalue]
Code_block
Next [Counter]
www.eeworm.com/read/334943/12560085
m 12-15.m
I = imread('tire.tif');
imshow(I)
I2 = uint8(colfilt(I,[5 5],'sliding',@mean));
% 均值滑动处理
figure, imshow(I2)