JPH0465395B2 - - Google Patents

Info

Publication number
JPH0465395B2
JPH0465395B2 JP62061734A JP6173487A JPH0465395B2 JP H0465395 B2 JPH0465395 B2 JP H0465395B2 JP 62061734 A JP62061734 A JP 62061734A JP 6173487 A JP6173487 A JP 6173487A JP H0465395 B2 JPH0465395 B2 JP H0465395B2
Authority
JP
Japan
Prior art keywords
distance
pattern
vector
code
word
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired
Application number
JP62061734A
Other languages
Japanese (ja)
Other versions
JPS63226695A (en
Inventor
Hiroaki Sekoe
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NEC Corp
Original Assignee
Nippon Electric Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Nippon Electric Co Ltd filed Critical Nippon Electric Co Ltd
Priority to JP62061734A priority Critical patent/JPS63226695A/en
Priority to DE88104087T priority patent/DE3882062T2/en
Priority to CA000561475A priority patent/CA1335001C/en
Priority to EP88104087A priority patent/EP0283902B1/en
Publication of JPS63226695A publication Critical patent/JPS63226695A/en
Priority to US07/508,503 priority patent/US5121465A/en
Publication of JPH0465395B2 publication Critical patent/JPH0465395B2/ja
Granted legal-status Critical Current

Links

Landscapes

  • Image Processing (AREA)

Description

【発明の詳細な説明】 (産業上の利用分野) 本発明は人間が発声した音声を自動認識する音
声認識の主要処理であるパターンマツチングの方
式に関するものである。
DETAILED DESCRIPTION OF THE INVENTION (Field of Industrial Application) The present invention relates to a pattern matching method, which is the main process of speech recognition for automatically recognizing speech uttered by humans.

(従来の技術) 音声認識のパターンマツチング方式に関しては
種々の技術が開発されているが、それらの中で最
も重用されているものの一つとして「日本音響学
会誌第42巻9号(昭和61年9月発行)の第725頁」
(以下文献−1とする)に記載されるが如きDPマ
ツチング法がある。これは音声の時間軸歪を整合
する手法として極めて有効とされている。また、
DPマツチング法を連続単語認識に拡張したもの
として特願昭56−199098号明細書に記載されるが
如きクロツクワイズDP法がある。この手法は構
文制御を有する連続単語認識法として説明されて
いるが、その特殊形として当然離散単語認識をも
包含している。ここでは簡単のため離散単語の認
識の形式で、クロツクワイズDP法の要部を説明
する。
(Prior art) Various technologies have been developed regarding pattern matching methods for speech recognition, but one of the most heavily used among them is the one published in ``Journal of the Acoustical Society of Japan, Vol. 42, No. 9 (Showa 61). (Published in September 2016), page 725.”
There is a DP matching method as described in (hereinafter referred to as Document-1). This is considered to be extremely effective as a method for matching time axis distortion of audio. Also,
As an extension of the DP matching method to continuous word recognition, there is a clockwise DP method as described in Japanese Patent Application No. 56-199098. Although this method is described as a continuous word recognition method with syntactic control, it naturally also includes discrete word recognition as a special form. For simplicity's sake, we will explain the main parts of the Crotwise DP method in the form of discrete word recognition.

単語名を番号nで指定することとして {n|n=1、2、……N} なる単語セツトを認識対象とする。各単語に標準
パターン Bn=〓1 n、〓2 n……〓j n……〓n Jo を考える。ここにjは時刻を示し、〓j nは標準パ
ターンBnの時刻jの特徴を意味する。入力音声
パタンを同様に A=〓1、〓2……〓i……〓I と示す。
Assuming that word names are designated by numbers n, a set of words {n|n=1, 2, . . . N} is to be recognized. Consider the standard pattern B n =〓 1 n , 〓 2 n ……〓 j n ……〓 n Jo for each word. Here, j indicates time, and 〓 j n means the characteristic of standard pattern B n at time j. The input voice patterns are similarly expressed as A=〓 1 , 〓 2 ...〓 i ...〓 I.

音声認識は、入力パターンAと標準パターン
Bnとのパターン距離D(A、Bn)を求め、それが
最小となるnを定め、認識結果とすることによつ
て行なわれる。
Speech recognition uses input pattern A and standard pattern
This is done by finding the pattern distance D (A, B n ) with respect to B n , determining n at which it is the minimum, and using this as the recognition result.

DPマツチングではこのパターン間距離の計算
を一例として次のような動的計画法計算によつて
行なう。
In DP matching, the distance between patterns is calculated by the following dynamic programming calculation, for example.

Γ初期条件 gn(1、1)=dn(1、1) ……(1) Γ漸化式 gn(i、j)=dn(i、j)+mingn(i−1
、j) gn(i−1、j−1) gn(i−1、j−2) ……(2) i=1、2、……I j=1、2、……J Γパターン間距離 D(A、Bn)=gn(I、Jn) ……(3) ここにdn(i、j)は特徴〓iと〓j nの距離dn
(i、j)=‖〓i−〓j n‖である。これを積分した
形式となる。gn(i、j)を最適累積距離と呼ぶ。
このDPマツチイング処理は当初、単語ごとに実
行されていたが、クロツクワイズDP法では各単
語に対して並列的に実行される形式に改良され
た。すなわち、第1図のような、i,j,nが張
る空間において入力パターンの各時刻iにおい
て、各標準パターンBnの指定nと、それらの中
のjのすべての組み合わせで指定されるn,jに
対してgn(i、j)なる最適累積値を計算し、し
かる後に時刻iを進めて処理を実行するという方
式になつている。
Γ initial condition g n (1, 1) = d n (1, 1) ...(1) Γ recurrence formula g n (i, j) = d n (i, j) + ming n (i-1
, j) g n (i-1, j-1) g n (i-1, j-2) ...(2) i=1, 2, ...I j=1, 2, ...J Γ pattern Distance D (A, B n ) = g n (I, J n ) ...(3) Here, d n (i, j) is the distance d n between the features 〓 i and 〓 j n
(i, j)=‖〓 i −〓 j n ‖. This is the integral form. g n (i, j) is called the optimal cumulative distance.
Initially, this DP matching process was performed for each word, but in the Crotwise DP method, it has been improved to a format in which it is performed for each word in parallel. That is, at each time i of the input pattern in the space spanned by i, j, and n as shown in Figure 1, the n specified by the specification n of each standard pattern B n and all the combinations of j among them. , j, and then calculates the optimal cumulative value g n (i, j), and then advances the time i and executes the process.

実際の計算においては、図の空間すべてのワー
クエリアを用意する必要はなく、i方向に関して
は、時刻iとi−1の2時刻分あれば(2)式の計算
を進めることができる。
In the actual calculation, it is not necessary to prepare a work area for the entire space in the figure, and in the i direction, the calculation of equation (2) can proceed if two times, i and i-1, are needed.

このようなDPマツチングでは距離d(i、j)
のための計算量が問題になる。通常〓iや〓j nは10
次元以上のベクトルであり、このようなベクトル
間の距離計算をNn=1 Jn回もiの1クロツク(通常
10ms程度)で行なうのは通常のハードウエアで
は非常な負担になる。
In such DP matching, the distance d(i, j)
The amount of calculation required becomes a problem. Usually 〓 i or 〓 j n is 10
It is a vector with more than one dimension, and the distance calculation between such vectors is performed Nn=1 J n times in one clock of i (usually
10ms) would be a huge burden on normal hardware.

この問題に対する方策として、前記文献−1の
第725頁〜第730頁に“音声認識におけるパタンマ
ツチング手法”と題して発表された論文に記され
るが如き、ベクトル量子化を適用することが考え
られる。すなわち、標準パタンの特徴の集合{〓
n}の分布を近似するコードベクトルの集合{〓
}を用意し、各標準パターンBnは、各〓j nに最
も近いコードベクトル〓kを指定する番号k=k
(n、j)の時系列としと表現する。かくした上
で、DPマツチングの実行時には、入力パターン
の特徴〓iと、各コードベクトルとの距離D(k)を
計算してテーブル化しておき、漸化式計算時には dn(i、j)=D(k(n、j)) ……(4) と参照して(2)式を計算する。このベクトル量子化
の採用によつて距離計算の回数は大幅に低減され
たが、それでも相当の計算量になると見積られ
る。
As a solution to this problem, it is possible to apply vector quantization as described in the paper entitled "Pattern matching method in speech recognition" on pages 725 to 730 of the above-mentioned document-1. Conceivable. In other words, the set of features of the standard pattern {〓
A set of code vectors that approximates the distribution of j n } {〓
k }, and each standard pattern B n is a number k = k that specifies the code vector 〓 k closest to each 〓 j n .
It is expressed as a time series of (n, j). Based on this, when executing DP matching, calculate the distance D(k) between the input pattern feature 〓 i and each code vector and create a table, and when calculating the recurrence formula, calculate d n (i, j) =D(k(n,j))...Calculate equation (2) with reference to (4). Although the number of distance calculations has been significantly reduced by adopting this vector quantization, it is still estimated that the amount of calculation is considerable.

(発明が解決しようとする問題点) 通常のDPマツチング法に比して認識率の低減
を生じないためにはコードベクトルとして256個
程度が必要とされる。1回のD(i、k)の計算
が40μsで終了するとしても256個分では10msを
要する。すなわち、iの1クロツク分(10ms)
のほとんどをベクトル間の距離計算で使用してし
まつて、漸化式計算に使用する時間が残らないこ
とになる。このため、従来は高速な専用ハードウ
エアを利用してDPマツチングを実行していた。
(Problems to be Solved by the Invention) Approximately 256 code vectors are required in order to avoid a reduction in recognition rate compared to the normal DP matching method. Even if one calculation of D(i, k) is completed in 40 μs, 10 ms is required for 256 calculations. In other words, 1 clock of i (10ms)
Most of the time is used to calculate the distance between vectors, and there is no time left for calculating the recurrence formula. For this reason, DP matching has traditionally been performed using high-speed dedicated hardware.

本発明はベクトル量子化技法と組み合わせて
も、なお計算量が多いというクロツクワイズDP
法の上記欠点を改良して、高速でありながら安価
な音声認識のパターンマツチング方式を提供する
ことを目的とする。
Even if the present invention is combined with vector quantization techniques, the clockwise DP still requires a large amount of calculation.
The present invention aims to improve the above-mentioned drawbacks of the method and provide a pattern matching method for speech recognition that is high speed and inexpensive.

(問題点を解決するための手段) 本発明のパターンマツチング方式は、ベクトル
量子化手法を採用した上記クロツクワイズDP法
において、過去において計算された最適累積値に
基づいて、現クロツクで入力音声パターンの特徴
iとの距離を計算する必要があるコードベクト
ル〓kのセツトを予測し、それ以外のコードベク
トルとの距離計算を不要とすることを特徴とす
る。
(Means for Solving the Problems) The pattern matching method of the present invention uses the clockwise DP method that employs the vector quantization method to match the input audio pattern using the current clock based on the optimal cumulative value calculated in the past. The feature of 〓 is that it predicts the set of code vectors 〓 k whose distance to i needs to be calculated, and there is no need to calculate the distance with other code vectors.

(作用・原理) 元来DPマツチングは第1図の如きn,i,j
の張る空間において、各単語nごとに、(1、1)
点から(I、Jn)点に至る経路でdn(i、j)の
総和すなわち累積値が最小となるものを深索する
ものである。この過程で計算される最適累積値gn
(i、j)は(1、1)点から(i、j)点まで
の最適経路上でのdn(i、j)の累積値を与えて
いる。したがつてgn(i、j)の値が大であると
いうことはこの(i、j)点が最適経路上にある
可能性が低いことを意味する。本発明は、gn(i、
j)が大となると予測される場合に(4)式のdn(i、
j)=D(k(n、j))の計算を省略することによ
つて計算量低減の効果を得んとするものである。
(Operation/principle) Originally, DP matching was based on n, i, j as shown in Figure 1.
In the space spanned by, for each word n, (1, 1)
This is a deep search for the path from the point to the (I, J n ) point that minimizes the sum total of d n (i, j), that is, the cumulative value. The optimal cumulative value g n calculated in this process
(i, j) gives the cumulative value of d n (i, j) on the optimal path from point (1, 1) to point (i, j). Therefore, a large value of g n (i, j) means that there is a low possibility that this point (i, j) is on the optimal route. The present invention provides g n (i,
j) is predicted to be large, d n (i,
By omitting the calculation of j)=D(k(n,j)), it is intended to reduce the amount of calculation.

(実施例) 第2図は本発明の原理を実施した離散単語認識
装置の構成例である。マイクロホン10より入力
された音声波形は分析部20によつて周波数分析
され、特徴ベクトル〓iの時系列に変換されてマ
イクロプロセツサ30に入力される。コードブツ
ク40にはコードベクトル〓kが記憶され、標準
パターン記憶部50には各単語nの標準パターン
Bnが、コードベクトルの番号kを指定するk
(n、j)の時系列として記憶されている。Dメ
モリ41はコードベクトル〓kと入力ベクトル〓i
との距離D(k)を一時記憶するものである。gメモ
リ60は(2)式の漸化式計算のワークメモリとなる
ので、gn(i、j)とgn(i−1、j)とが所要の
n、jに対して記憶される構成になつている。な
お、これら40,41,50,60のメモリーは
マイクロプロセツサ30の主記憶上のエリアとし
て構成されてよい。
(Embodiment) FIG. 2 is a configuration example of a discrete word recognition device implementing the principle of the present invention. The audio waveform input from the microphone 10 is frequency-analyzed by the analyzer 20, converted into a time series of feature vectors i , and input to the microprocessor 30. A code vector 〓 k is stored in the code book 40, and a standard pattern for each word n is stored in the standard pattern storage unit 50.
B n specifies the code vector number k
It is stored as a time series of (n, j). The D memory 41 stores the code vector 〓 k and the input vector 〓 i
This is to temporarily store the distance D(k) between the two. Since the g memory 60 serves as a work memory for calculating the recurrence formula of equation (2), g n (i, j) and g n (i-1, j) are stored for the required n, j. It's structured well. Note that these memories 40, 41, 50, and 60 may be configured as areas on the main memory of the microprocessor 30.

入力パターンの最初の特徴ベクトル〓1が入力
されるとマイクロプロセツサ30の働きによつ
て、gメモリ60のgn(i−1、j)の部分に対
して次のような初期設定処理がなされる。
When the first feature vector of the input pattern 〓 1 is input, the microprocessor 30 performs the following initial setting process on the portion g n (i-1, j) of the g memory 60. It will be done.

gn(1、1)=D(k(n、1) すなわち、標準パターン記憶50より各単語毎
にk=k(n、1)を読み出し、これに対応する
コードベクトル〓kをコードブツク40より参照
して特徴ベクトル〓iとの距離を計算して初期値
gn(1、1)としてセツトする。なお、j≠1の
部分に対しては十分大な数値∞をセツトするの
は、特願昭56−199098号明細書第6図aの場合と
同様である。
g n (1, 1) = D (k (n, 1) In other words, k = k (n, 1) is read out for each word from the standard pattern memory 50, and the corresponding code vector 〓 k is stored in the code book 40. Refer to the feature vector 〓 Calculate the distance from i and set the initial value
Set as g n (1, 1). Note that setting a sufficiently large value ∞ for the part where j≠1 is the same as in the case of FIG. 6a of the specification of Japanese Patent Application No. 56-199098.

一般的に、時刻iでは第3図に示す処理が実行
される。まず、特徴ベクトル〓iが入力されると
Dテーブルの内容D(k)を総て∞でリセツトする。
次に各単語n毎に、j=1、2、……Jnに対して
次のような処理を行う。gメモリ60より、過去
の最適累積値gn(i−1、j)、gn(i−1、j−
1)、gn(i−1、j−2)を読み出してそれらの
最小値gを決定する。この値を閾値θ(i)と比較し
(ブロツク100)、この時点の(i、j)が最適
経路上にあるか否かをテストする。なお、最適累
積値は時刻iとともに増加するものであるから、
単調増加関数として予かじめ定められているもの
である。g>θ(i)なるときは、この点(i、j)
は最適経路上にないと判定して、漸化式と距離の
計算を省略して、gn(i、j)としては∞をセツ
トする。g≦θ(i)のときは、この点(i、j)は
最適経路上にあると予測して、以下の漸化式計算
を行なう。
Generally, at time i, the process shown in FIG. 3 is executed. First, when the feature vector 〓i is input, all contents D(k) of the D table are reset to ∞.
Next, for each word n, the following processing is performed for j=1, 2, . . . J n . From the g memory 60, the past optimal cumulative values g n (i-1, j), g n (i-1, j-
1), g n (i-1, j-2) are read and their minimum value g is determined. This value is compared with a threshold value θ(i) (block 100) to test whether (i, j) at this point is on the optimal path. Note that since the optimal cumulative value increases with time i,
This is predetermined as a monotonically increasing function. When g>θ(i), this point (i, j)
is not on the optimal route, the recurrence formula and distance calculation are omitted, and g n (i, j) is set to ∞. When g≦θ(i), it is predicted that this point (i, j) is on the optimal path, and the following recurrence formula calculation is performed.

まず、標準パターン記憶50よりk=k(n、
j)を読み出し、この信号をもとにして、Dテー
ブル41内のD(k)を参照する。これが∞ならばD
(k)の値は未だ計算されていないとして、特徴ベク
トル〓iと、コードブツクより読み出されるコー
ドベクトル〓kとの距離を計算しDとするととも
に、D(k)としてDテーブルに書き込む。D(k)が∞
でない場合は、コードベクトル〓kと特徴ベクト
ル〓iとの距離は計算済みであるとしてD=D(k)
とする。この一連の処理は、この時点のn、i、
jが最適経路上にあるとして、k=k(n、j)
で指定されるコードベクトル〓kと特徴ベクトル
iとの距離が必要と予測して距離計算を行ない、
かつ重複した距離計算を回避したものである。か
くしてブロツク110においてg+D→gn(i、
j)なる処理によつて gn(i、j)=D(k(n、j))+ming
(i−1、j) g(i−1、j−1) g(i−1、j−2) ……(5) が計算され、(2)、(4)式と同等な漸化式計算が行な
われたことになる。この新しい最適累積値はgメ
モリ60に書き込まれる。この処理の繰り返しが
所要のjとnに対して行なわれることにより、時
刻iでの漸化式計算が終了する。ブロツク120
によつて、gメモリ内のgn(i、j)のエリアと
gn(i−1、j)のエリアの切り替えを行なつて、
現時刻iで計算された最適累積値を過去のデータ
として、次の時刻i+1に移行する。
First, k=k(n,
j) and refer to D(k) in the D table 41 based on this signal. If this is ∞, then D
Assuming that the value of (k) has not been calculated yet, the distance between the feature vector 〓 i and the code vector 〓 k read from the codebook is calculated and set as D, and is written in the D table as D(k). D(k) is ∞
If not, assuming that the distance between the code vector 〓 k and the feature vector 〓 i has already been calculated, D=D(k)
shall be. This series of processing consists of n, i,
Assuming that j is on the optimal path, k=k(n,j)
The distance is calculated by predicting that the distance between the code vector 〓 k specified by 〓 k and the feature vector 〓 i is necessary.
This also avoids redundant distance calculations. Thus, in block 110 g+D→g n (i,
j) by the process g n (i, j) = D (k (n, j)) + ming
(i-1, j) g (i-1, j-1) g (i-1, j-2) ...(5) is calculated, and the recurrence formula is equivalent to equations (2) and (4). A calculation has been made. This new optimal cumulative value is written to g memory 60. By repeating this process for the required j and n, the recurrence formula calculation at time i is completed. block 120
The area of g n (i, j) in g memory and
By switching the area of g n (i-1, j),
The optimal cumulative value calculated at the current time i is used as past data, and the process moves to the next time i+1.

かくして時刻Iまでの処理が行なわれ、入力音
声が終了しi=I+1となつた時点では、各単語
nごとにgメモリ60内にgn(i−1、Jn)とし
てパターン間距離D(A、Bn)が得られる。これ
らを比較して最小となる単語n=n^として認識結
果を定め出力する。
In this way, the processing up to time I is completed, and when the input voice ends and i=I+1, the inter-pattern distance D ( A, B n ) are obtained. These are compared and the recognition result is determined and output as the minimum word n=n^.

以上、本発明の原理を実施例に基づいて述べた
が、これらは本発明の範囲を限定するものではな
い。特に、第3図におけるブロツク100の判定
処理には種々の変形が考えられる。閾値θ(i)の定
め方に関しても、予じめ人手によつて定義してお
く方法の他に、gn(i−1、j)の最小値にリン
クさせて設定するなどの変形が考えられる。ま
た、〓iと〓kとを距離計算を、j、nのループの
外で予かじめ行なつておくことも可能である。こ
れらの変形は本発明の権利範囲に属するものであ
る。
Although the principle of the present invention has been described above based on examples, these do not limit the scope of the present invention. In particular, various modifications can be made to the determination process of block 100 in FIG. Regarding the method of determining the threshold value θ(i), in addition to the method of manually defining it in advance, variations such as setting it by linking it to the minimum value of g n (i-1, j) are considered. It will be done. Further, it is also possible to perform the distance calculation for 〓 i and 〓 k in advance outside the loop of j and n. These modifications are within the scope of the present invention.

また、以上の説明では、基本的な漸化式として
(2)式を用いたが、「日経エレクトロニクスの1983
年11月7日第184頁の表1」に記載されるが如き、
種々の変形の漸化式についても本発明の原理は適
用される。さらに本発明は特願昭56−199098記載
のクロツクワイズDP法と同様連続単語認識に利
用できるものである。
In addition, in the above explanation, the basic recurrence formula is
Equation (2) was used, but ``Nikkei Electronics' 1983
As stated in Table 1 on page 184 of November 7th,
The principles of the present invention are also applicable to various deformed recurrence formulas. Furthermore, the present invention can be used for continuous word recognition similar to the clockwise DP method described in Japanese Patent Application No. 56-199098.

(発明の効果) 以上述べた過去の最適累積値によつて、現時刻
で距離計算が必要なコードベクトルを限定するこ
とにより、距離計算の回数を低減することができ
る。
(Effects of the Invention) The number of distance calculations can be reduced by limiting the code vectors that require distance calculations at the current time using the past optimal cumulative values.

【図面の簡単な説明】[Brief explanation of the drawing]

第1図は本発明の原理説明図、第2図は本発明
の一実施例を示すブロツク図、第3図はその動作
を説明するフローチヤートである。 10……マイクロホン、20……分部値、30
……マイクロプロセツサ、40……コードブツ
ク、41……Dテーブル、50……標準パターン
記憶、60……gメモリ。
FIG. 1 is a diagram explaining the principle of the present invention, FIG. 2 is a block diagram showing an embodiment of the invention, and FIG. 3 is a flowchart explaining its operation. 10...Microphone, 20...Partial value, 30
... Microprocessor, 40 ... Code book, 41 ... D table, 50 ... Standard pattern memory, 60 ... G memory.

Claims (1)

【特許請求の範囲】[Claims] 1 音声の特徴を表わすコードベクトル〓kの集
合として成るコードブツクと、各単語nに対応し
てコードベクトルを指定する番号k(n、j)(j
=1、2…Jn)の時系列として表わされる標準パ
ターンBnを記憶する手段と、入力音声パターン
の特徴〓iを一時保持する手段と〓iと各コードベ
クトル〓kとの距離D(k)を計算する手段と、各単
語毎に距離D(k(n、j))の最適累積値gn(i、
j)を動的計画法によつて計算する手段とを有
し、各時刻iにて、過去に計算された最適累積値
に基づいて現クロツクで〓iとの距離を計算する
必要があるコードベクトル〓kのセツトを限定し、
これらに対してのみ、距離D(k)を計算することを
特徴とする高速パターンマツチング方式。
1. A codebook consisting of a set of code vectors representing speech characteristics k , and a number k (n, j) (j) that specifies the code vector corresponding to each word n.
= 1, 2...J n ), a means for storing the standard pattern B n expressed as a time series, a means for temporarily retaining the characteristics of the input speech pattern 〓 i , and a distance D( between 〓 i and each code vector 〓 k k) and the optimal cumulative value g n (i,
j) by dynamic programming, and at each time i, it is necessary to calculate the distance to 〓 i at the current clock based on the optimal cumulative value calculated in the past. Restrict the set of vector 〓 k ,
A high-speed pattern matching method characterized by calculating the distance D(k) only for these.
JP62061734A 1987-03-16 1987-03-16 High-speed pattern matching system Granted JPS63226695A (en)

Priority Applications (5)

Application Number Priority Date Filing Date Title
JP62061734A JPS63226695A (en) 1987-03-16 1987-03-16 High-speed pattern matching system
DE88104087T DE3882062T2 (en) 1987-03-16 1988-03-15 System for comparing patterns.
CA000561475A CA1335001C (en) 1987-03-16 1988-03-15 Pattern matching system
EP88104087A EP0283902B1 (en) 1987-03-16 1988-03-15 Pattern matching system
US07/508,503 US5121465A (en) 1987-03-16 1990-04-11 Pattern matching system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP62061734A JPS63226695A (en) 1987-03-16 1987-03-16 High-speed pattern matching system

Publications (2)

Publication Number Publication Date
JPS63226695A JPS63226695A (en) 1988-09-21
JPH0465395B2 true JPH0465395B2 (en) 1992-10-19

Family

ID=13179724

Family Applications (1)

Application Number Title Priority Date Filing Date
JP62061734A Granted JPS63226695A (en) 1987-03-16 1987-03-16 High-speed pattern matching system

Country Status (1)

Country Link
JP (1) JPS63226695A (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2841404B2 (en) * 1989-01-12 1998-12-24 日本電気株式会社 Continuous speech recognition device

Also Published As

Publication number Publication date
JPS63226695A (en) 1988-09-21

Similar Documents

Publication Publication Date Title
US4601054A (en) Pattern distance calculating equipment
KR100760666B1 (en) Pattern recognition
KR950035134A (en) How to generate linear predictive filter coefficient signal during frame erasure
JPH11259095A (en) Method of speech synthesis and device therefor, and storage medium
JPH0159600B2 (en)
US5369728A (en) Method and apparatus for detecting words in input speech data
KR950035136A (en) How to synthesize a signal representing the human voice
US5621849A (en) Voice recognizing method and apparatus
KR950035133A (en) How to operate the parametric signal adapter
US5369727A (en) Method of speech recognition with correlation of similarities
US7162417B2 (en) Speech synthesizing method and apparatus for altering amplitudes of voiced and invoiced portions
US5812967A (en) Recursive pitch predictor employing an adaptively determined search window
US5121465A (en) Pattern matching system
JPS60211498A (en) Continuous voice recognition equipment
US5704005A (en) Speech recognition apparatus and word dictionary therefor
JPH0465395B2 (en)
EP0103258B1 (en) Pattern matching apparatus
JP4732030B2 (en) Information processing apparatus and control method thereof
US4670850A (en) Pattern matching apparatus
JPH0465397B2 (en)
JP2000035797A (en) Speech recognition apparatus
JP3068250B2 (en) Speech synthesizer
JP3254933B2 (en) Voice recognition method
JP3036706B2 (en) Voice recognition method
JPH0465394B2 (en)

Legal Events

Date Code Title Description
LAPS Cancellation because of no payment of annual fees