-
j2me方向的控制的演示,手機上的up,down,left,right等的控制的和顯示
標簽:
right
j2me
down
left
上傳時間:
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
標簽:
控制
RIGHT
LEFT
DOWN
上傳時間:
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)
}
}
標簽:
int
include
stdlib
fun_a
上傳時間:
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