j2me方向的控制的演示,手机上的up,down,left,right等的控制的和显示
上传时间: 2013-11-26
上传用户:牛津鞋
Hidden_Markov_model_for_automatic_speech_recognition This code implements in C++ a basic left-right hidden Markov model and corresponding Baum-Welch (ML) training algorithm. It is meant as an example of the HMM algorithms described by L.Rabiner (1) and others. Serious students are directed to the sources listed below for a theoretical description of the algorithm. KF Lee (2) offers an especially good tutorial of how to build a speech recognition system using hidden Markov models.
标签: Hidden_Markov_model_for_automatic speech_recognition implements left-right
上传时间: 2016-01-23
上传用户:569342831
坦克大战小游戏 控制说明: 玩家1相关控制: A/W/S/D:控制方向 F:开火 1 :玩家1复活 玩家2相关控制: UP/LEFT/RIGHT/DOWN:控制方向 0 :开火 2 :玩家2复活 ESC:返回Menu ENTER:任务完成/失败后的确认按键 功能说明: 将敌方坦克消灭完则任务完成,进入下一关,每过1关,障碍物减少1个,电脑 坦克总数增加5辆,一次出现最多的电脑坦克数目增加1. 我方坦克被消灭完则任务失败,任务从第一关重新开始. 击毁一辆红色坦克,会产生一个宝物,获取后可以根据宝物的类型完成相应 的功能. 宝物功能描述: 1.奖励玩家一辆坦克 2.炸毁当前显示的所有敌方坦克 3.所有敌方坦克被暂停运动和开火,持续10秒 4.玩家坦克处于无敌状态,持续15秒 具备多玩家游戏的功能,目前暂定最多支持2人游戏,按1,2,若相应玩家坦克 已全部被摧毁,则复活该玩家的坦克,并设定该玩家坦克数量为3,总分清0. 其它说明: 作者:朱波 QQ:443581450 Email:kyozb2004@yahoo.com.cn
上传时间: 2016-07-14
上传用户:小草123
-- DESCRIPTION : Shift register -- Type : univ -- Width : 4 -- Shift direction: right/left (right active high) -- -- CLK active : high -- CLR active : high -- CLR type : synchronous -- SET active : high -- SET type : synchronous -- LOAD active : high -- CE active : high -- SERIAL input : SI
标签: Shift right DESCRIPTION direction
上传时间: 2013-12-02
上传用户:gxrui1991
超级玛丽游戏源码,绝对比你玩的跳的高,alt键跳,up,down,left,right上下左右
上传时间: 2013-12-29
上传用户:宋桃子
-- Simple Robot Control Program -------------------------------------------------------------------------- -- Left is left IR sensor - 1=object to left -- Right is rigth IR sensor - 1=object to right -- Lmotor_dir 1=forward 0=reverse -- Rmotor_dir 1=forward 0=reverse -- Lmotor_speed 111=fast 000=slow -- Rmotor_speed 111=fast 000=slow
标签: Control Program Simple Robot
上传时间: 2013-11-27
上传用户:风之骄子
河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,int) int main(void) { int n int option printf("題目二:河內塔問題\n") printf("請輸入要搬移的圓盤數目\n") scanf("%d",&n) printf("最少搬移的次數為%d次\n",fun_a(n)) printf("是否顯示移動過程? 是請輸入1,否則輸入0\n") scanf("%d",&option) if(option==1) { fun_b(n,1,2,3) } system("pause") return 0 } int fun_a(int n) { int sum1=2,sum2=0,i for(i=n i>1 i--) { sum1=sum1*2 } sum2=sum1-1 return sum2 } void fun_b(int n,int left,int mid,int right) { if(n==1) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) else { fun_b(n-1,left,right,mid) printf("把第%d個盤子從第%d座塔移動到第%d座塔\n",n,left,right) fun_b(n-1,mid,left,right) } }
上传时间: 2016-12-08
上传用户:努力努力再努力
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
标签: file functions FileEdit BACKSPAC
上传时间: 2017-01-02
上传用户:风之骄子
An interactive water fountain. A realistic water source in your pocket with full control. Controls: UP/DOWN - go closer/further LEFT/RIGHT - rotate # - stop rotation 1/7 - rotate camera up/down 3/9 - change water pressure 4/6 - change water rendering complexity 2/8 - ascend/descend 0 - bullet time 5 - 25 FPS limiter on/off * - HUD on/off
标签: water interactive realistic fountain
上传时间: 2013-12-19
上传用户:yuchunhai1990
face detection Face detection can be regarded as a more general case of face localization In face localization, the task is to find the locations and sizes of a known number of faces (usually one). In face detection, one does not have this additional information. Early face-detection algorithms focused on the detection of frontal human faces, whereas newer algorithms attempt to solve the more general and difficult problem of multi-view face detection. That is, the detection of faces that are either rotated along the axis from the face to the observer (in-plane rotation), or rotated along the vertical or left-right axis (out-of-plane rotation),or both.
标签: detection face localization regarded
上传时间: 2014-01-10
上传用户:wfeel