JP3817979B2 - Template matching method - Google Patents

Template matching method Download PDF

Info

Publication number
JP3817979B2
JP3817979B2 JP19836099A JP19836099A JP3817979B2 JP 3817979 B2 JP3817979 B2 JP 3817979B2 JP 19836099 A JP19836099 A JP 19836099A JP 19836099 A JP19836099 A JP 19836099A JP 3817979 B2 JP3817979 B2 JP 3817979B2
Authority
JP
Japan
Prior art keywords
image
noise
template
value
normalized correlation
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 - Fee Related
Application number
JP19836099A
Other languages
Japanese (ja)
Other versions
JP2001022941A (en
Inventor
昌司 吉田
光二 池田
淳 高根
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.)
Hitachi Ltd
Original Assignee
Hitachi 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 Hitachi Ltd filed Critical Hitachi Ltd
Priority to JP19836099A priority Critical patent/JP3817979B2/en
Publication of JP2001022941A publication Critical patent/JP2001022941A/en
Application granted granted Critical
Publication of JP3817979B2 publication Critical patent/JP3817979B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Images

Landscapes

  • Image Processing (AREA)
  • Image Analysis (AREA)

Description

【0001】
【発明の属する技術分野】
本発明は、データ処理計算機の技術分野に属し、画像認識装置及びパターンマッチングの方法に関する。
【0002】
【従来の技術】
画像処理のさまざまな応用分野において、被探索画像から、特定の画像パターン(これをテンプレートと呼ぶ)と類似した部分領域を探索するテンプレートマッチングが利用されている。このような技術は、例えば高木幹雄、下田陽久: “画像解析ハンドブック”,東京大学出版会(1991)に記載されている。テンプレートマッチングでは、類似したかどうかを評価する尺度として正規化相関係数を用いることが多い。
【0003】
ここで、テンプレートマッチングの概念について説明する。大きさM×Nのテンプレートt(m,n)と、被探索画像f(x,y)の中の座標(i,j)を起点とする、大きさM×Nの部分画像f(i+m,j+n)との正規化相関値r(i,j)を求める。正規化相関値r(i,j)は、テンプレートをt(m,n)(m=0,1,…,M−1,n=0,1,…,N−1)、部分画像をf(i+m,j+n)(m=0,1,…,M−1,n=0,1,…,N−1)、μfはfの平均値、μt はtの平均値としたとき、次式で与えられる。
【0004】
【数1】

Figure 0003817979
【0005】
但し、
【0006】
【数2】
Figure 0003817979
【0007】
正規化相関値は1の時、両者が全く一致していることを示し、−1の時、両者が全く一致しないことを示す。従って、値がより1に近ければより類似しており、値がより−1に近ければ似ていないことを表わしている。
【0008】
数式1は、実用上は以下のように変形して計算を高速化する。
【0009】
【数3】
Figure 0003817979
【0010】
テンプレートマッチングを行うときは、複数の部分領域に対して上記正規化相関値を求め、正規化相関値が最大になる位置を求めたり、正規化相関値があるしきい値を超える位置を列挙したりして、1つまたは複数の類似領域を決定する。正規化相関の特徴は、テンプレートとサーチ画像で照明変動などにより同じ物体が異なる画素値になる場合でも、影響なく適切なマッチングが行える点にある。
しかしながら、正規化相関係数を用いたテンプレートマッチングでは、被探索画像やテンプレート画像にそれぞれノイズがのると、正規化相関値が小さくなる性質がある。特に電子顕微鏡の場合、電子のサーマルノイズが信号値と同等またはそれ以上の大きさで加わることが多く、正規化相関値が小さくなる傾向が顕著である。
【0011】
これに対処するために、平滑化フィルタを用いてノイズ量を低減した画像を生成し、これを入力として用いることが一般に行われている。また、エッジ強調フィルタなどを施して信号変化を拡大したり、パターンの輪郭を抽出してマッチングを行ったりして、相対的にノイズ量を減らす効果を得ることが一般に行われている。
【0012】
次に、従来のテンプレートマッチング方法について説明する。原画像f0 は、ノイズNf を加えられ、被探索画像となって入力される。また、原テンプレート画像t0 は、ノイズNt を加えられ、テンプレート画像となって入力される。被探索画像,テンプレート画像は、前処理によってノイズの影響を低減する効果のあるフィルタなどの画像処理を施され、ノイズ低減被探索画像f,ノイズ低減テンプレート画像tに変換させられて、正規化相関に入力される。正規化相関は、数式1にもとづいて正規化相関値rを計算する。この正規化相関値は、ノイズの影響を受けて小さくなった値となっている。正規化相関値は判定部で、外部から入力されるしきい値Thにもとづき、しきい値以上の正規化相関値をとる部分画像をマッチング候補とし、マッチング候補に関する座標などの検出情報を生成する。
【0013】
また、特開平10−187967号には、数式3をさらに単調減少関数の形に変形し、計算途中でしきい値を下回った部分画像に関し正規化相関値の計算を打ち切ることで、全体の計算量を減らすアイデアが開示されている。
【0014】
さらに、ノイズ量を推定する方法として、Immerkaer, J.,“Fast Noise Variance-Estimation”,Computer Vision and Image Understanding, Vol.64,No.2,Sep. 1996,pp.300−302.がある。これは、ノイズとしてガウスノイズを仮定し、ガウスノイズの成分を推定するもので、画像f(i+k,j+l)に対して、
n(−1,−1)=1 n(0,−1)=−2 n(1,−1)=1
n(−1,0)=−2 n(0,0)=4 n(1,0)=−2
n(−1,1)=1 n(0,1)=−2 n(1,1)=1
なる係数から成るカーネルでフィルタをかけ、以下の式に従ってノイズ分散推定値Vを求めるものである。
【0015】
一次モードの時、
【0016】
【数4】
Figure 0003817979
【0017】
または、二次モードの時、
【0018】
【数5】
Figure 0003817979
【0019】
【発明が解決しようとする課題】
平滑化フィルタ,エッジ強調フィルタを用いると、確かにノイズの影響を減らすことが可能だが、探すべきパターンも変質してしまい、マッチングの精度が落ちるという問題がある。
【0020】
平滑化フィルタでは、ノイズの低減に伴って、パターンもぼけてしまう。
【0021】
エッジ強調フィルタでは、パターンが強調されるが、同様にノイズも増幅してしまう。
【0022】
さらに、正規化相関値が小さくなることにより、判定に用いるしきい値も下げて定める必要があり、結果的に多くの候補に関して計算を行わなければならず、無駄な計算が増えて処理速度が遅くなる問題がある。
【0023】
本発明の目的は、パターンを変質させるような前処理を行わずに、精度高く、また高速なパターンマッチング方法を提供することにある。
【0024】
【課題を解決するための手段】
本発明は、上記課題を解決するために、被探索画像f中からテンプレート画像tのパターンを検出するテンプレートマッチング方法において、
前記被探索画像に含まれるノイズ分散値量V fn 、及び前記テンプレート画像に含まれるノイズ分散値量V tn を推定し、
数式1に従い正規化相関値rを計算することを特徴とするものである。
【数1】
Figure 0003817979
ただし、V f は被検索画像fの分散値、V t はテンプレート画像tの分散値、
ft は被検索画像fとテンプレート画像tの相関値を表す。
また、本発明は、上記課題を解決するために、被探索画像f中からテンプレート画像tのパターンを検出するテンプレートマッチング方法において、
前記被探索画像fに含まれるノイズ量を低減した画像f′、及び前記テンプレート画像tに含まれるノイズ量を低減した画像t′を生成し、
数式2に従い正規化相関値rを計算することを特徴とするものである。
【数2】
Figure 0003817979
ただし、V f ′はノイズ量を低減した被検索画像f′の分散値、
t ′はノイズ量と低減したテンプレート画像t′の分散値、
ft は被検索画像fとテンプレート画像tの相関値を表す。
【0025】
【発明の実施の形態】
まず、ノイズが正規化相関値を小さくする原理を考察する。
【0026】
一般に、被探索画像は信号成分f0 と平均値が0のノイズ成分Nf から成り、テンプレート画像tは信号成分t0と平均値が0のノイズ成分Nt から成るとモデル化することができる。
【0027】
【数6】
f(i+m,j+n)=f0(i+m,j+n)+Nf(i+m,j+n)
t(m,n)=t0(m,n)+Nt(m,n)
ノイズ成分の平均値が0であることより、以下が成り立つ。
【0028】
【数7】
Figure 0003817979
【0029】
また、ノイズ成分は相関性がないと仮定すると、以下が成り立つ。
【0030】
【数8】
Figure 0003817979
【0031】
従って、数式7,数式8を用いると、次の式が成り立ち、数式3の分子はノイズの影響を受けないことがわかる。
【0032】
【数9】
Figure 0003817979
【0033】
一方、数式3の分母に関して、次の式が成り立つ。
【0034】
【数10】
Figure 0003817979
【0035】
被探索画像のノイズ分散値Vf ,テンプレート画像のノイズ分散値Vt を以下のように定義する。
【0036】
【数11】
Figure 0003817979
【0037】
すると、この被探索画像のノイズ分散値Vf ,テンプレート画像のノイズ分散値Vt を推定できれば、ノイズを含まない信号部分のみに関する正規化相関値
r(i,j)を、次の数式で求めることができると考えられる。
【0038】
【数12】
Figure 0003817979
【0039】
図1は、第一の実施例を示す。ノイズ推定104,ノイズ考慮正規化相関120,判定123からなる。原画像f0 101は、ノイズNf 102を加えられ、被探索画像f103となって入力される。また、原テンプレート画像t0 111は、ノイズNt 112を加えられ、テンプレート画像t113となって入力される。被探索画像f103,テンプレート画像t113は、ノイズ推定104によって画像全体のノイズの分散量を推定され、それぞれノイズ推定値Vf 105,ノイズ推定値Vt 115となってノイズ考慮正規化相関120に入力される。ノイズ考慮正規化相関120は、被探索画像f103,テンプレート画像t113,ノイズ推定値Vf 105、及びノイズ推定値Vt 115を入力し、数式12にもとづき、ノイズ考慮正規化相関値r121を計算する。ノイズ考慮正規化相関値r121は、判定123で、外部から入力されるしきい値Th112にもとづき、しきい値以上の正規化相関値をとる部分画像をマッチング候補とし、マッチング候補に関する座標などの検出情報124を生成する。
【0040】
なお、テンプレート画像にはノイズの少ない画像を選ぶことが普通であるので、Nt =0とし、従ってノイズ考慮正規化相関120でVt =0とし、テンプレート画像に対するノイズ推定104を削除する方法も、本実施例より容易に類推することができる。
【0041】
図4にノイズ推定104のフローチャートを示す。まず、601で、対象画像をΔi画素×Δj画素の微小領域に分け、次の式のように、それぞれの微小領域の分散値v(i,j)を求める。(i,j)は、微小領域の始点である。
【0042】
【数13】
Figure 0003817979
【0043】
十分小さいΔi×Δjの微小領域をとると、大部分の微小領域では信号f0 の変化がほとんどなく、ほぼ一定値をとると考えられる。従って、
【0044】
【数14】
Figure 0003817979
【0045】
が成立するので、
【0046】
【数15】
Figure 0003817979
【0047】
となって、ノイズの分散値となる。ここで、多少とも含まれてしまう可能性のある信号成分を排除するために、最も多くの領域で分散値をとっているものをノイズの分散値と推定するのが妥当である。Δi,Δjとしては、数式14が成立すると考えられる程十分小さいサイズを選べばよく、例えば8画素程度となる。
【0048】
次に602で、図5に示すような、分散値v(i,j)を横軸とし、縦軸を度数とするヒストグラムを生成するため、ヒストグラムの該当する分散値の度数に1を加算する。
【0049】
603で、601,602を、対象画像全体で繰り返してヒストグラムを完成させる。
【0050】
最後に604で、ヒストグラムの最大度数をとる分散値を求め、最も多くの微小領域が有している分散値を、ノイズの分散値Vと推定する。
【0051】
このように、本ノイズ分散量推定方法は、ノイズに相関がないという仮定のみに従うことにより、ガウス分布に従わないノイズを含んでいても正しいノイズ分散量を推定できる。
【0052】
図2は、第二の実施例を示す。ノイズ推定104,部分画像ノイズ推定204,ノイズ考慮正規化相関220,判定123からなる。基本的に、図1の第一の実施例と同様であるので異なる点のみ説明する。図2で図1と異なる点は被探索画像に関する部分画像ノイズ推定204が、テンプレート画像に関するノイズ推定104と異なっている点である。ノイズ推定204は、テンプレートと重ねあわせて正規化相関演算させようとする部分画像に対してノイズ推定を行う。ノイズ推定204の出力は、部分画像のノイズ推定値Vf 205となって、ノイズ考慮正規化相関220に入力され、ノイズ考慮正規化相関220は、部分画像ごとに異なったノイズ推定値Vf 205を用いながら、数式12にのっとり、ノイズ考慮正規化相関値121を計算する。
【0053】
なお、テンプレート画像にはノイズの少ない画像を選ぶことが普通であるので、Nt =0とし、従ってノイズ考慮正規化相関220でVt =0とし、テンプレート画像に対するノイズ推定104を削除する方法も、本実施例より容易に類推することができる。
【0054】
ノイズ推定204は、ノイズ推定104と比較するとノイズ推定を行う対象が部分画像になっている点が異なるのみなので、処理の内容としてはノイズ推定104と全く同様に構成することができる。
【0055】
図3は、第三の実施例を示す。前処理304,ノイズ考慮正規化相関320,判定123からなる。原画像f0 101は、ノイズNf 102を加えられ、被探索画像f103となって入力される。また、原テンプレート画像t0 111は、ノイズNt 112を加えられ、テンプレート画像t113となって入力される。被探索画像f103,テンプレート画像t113は、前処理304によってノイズを低減され、それぞれノイズ低減画像f′315,ノイズ低減テンプレートt′315となってノイズ考慮正規化相関320に入力される。ノイズ考慮正規化相関320は、被探索画像f103,テンプレート画像t113,ノイズ低減画像f′315、及びノイズ低減テンプレートt′315を入力し、ノイズ考慮正規化相関値r121を計算する。ノイズ考慮正規化相関320がノイズ考慮正規化相関値r121を計算する数式は次のとおりである。
【0056】
【数16】
Figure 0003817979
【0057】
但し、
【0058】
【数17】
Figure 0003817979
【0059】
つまり、正規化相関の分子を計算する時には、ノイズがのっているがパターンがはっきりしている元の被探索画像f103,テンプレート画像t113、を用い、正規化相関の分母を計算する時には、パターンがつぶれているかもしれないが、ノイズが低減されているノイズ低減画像f′315,ノイズ低減テンプレートt′315を用いる、ということである。ノイズ考慮正規化相関値r121は、判定123で、外部から入力されるしきい値Th112にもとづき、しきい値以上の正規化相関値をとる部分画像をマッチング候補とし、マッチング候補に関する座標などの検出情報124を生成する。
【0060】
【発明の効果】
本発明によれば、パターンを変質させるような前処理を行わないので、元のパターンをそのまま使うことができ、テンプレートマッチングを精度高く高速に実行できる。
【図面の簡単な説明】
【図1】本発明にかかるテンプレートマッチング方法の一実施例を示す図である。
【図2】本発明にかかるテンプレートマッチング方法の他の実施例を示す図である。
【図3】本発明にかかるテンプレートマッチング方法の他の実施例を示す図である。
【図4】ノイズ推定のフローチャートを示す図である。
【図5】ノイズ分散値ヒストグラムの説明図である。
【符号の説明】
104…ノイズ推定、120…ノイズ考慮正規化相関、123…判定。[0001]
BACKGROUND OF THE INVENTION
The present invention belongs to the technical field of data processing computers, and relates to an image recognition apparatus and a pattern matching method.
[0002]
[Prior art]
In various application fields of image processing, template matching for searching a partial area similar to a specific image pattern (referred to as a template) from a searched image is used. Such a technique is described, for example, in Mikio Takagi, Yoshihisa Shimoda: “Image Analysis Handbook”, University of Tokyo Press (1991). In template matching, a normalized correlation coefficient is often used as a measure for evaluating whether or not they are similar.
[0003]
Here, the concept of template matching will be described. A partial image f (i + m, M × N) starting from a template t (m, n) of size M × N and coordinates (i, j) in the searched image f (x, y). The normalized correlation value r (i, j) with j + n) is obtained. The normalized correlation value r (i, j) is obtained by using a template as t (m, n) (m = 0, 1,..., M−1, n = 0,1,..., N−1), and a partial image as f. (i + m, j + n) (m = 0, 1,..., M−1, n = 0, 1,..., N−1), μ f is an average value of f, and μ t is an average value of t. It is given by
[0004]
[Expression 1]
Figure 0003817979
[0005]
However,
[0006]
[Expression 2]
Figure 0003817979
[0007]
When the normalized correlation value is 1, it indicates that they are exactly the same, and when it is -1, it indicates that they are not the same. Therefore, it is more similar if the value is closer to 1, and it is not similar if the value is closer to -1.
[0008]
Formula 1 is practically modified as follows to speed up the calculation.
[0009]
[Equation 3]
Figure 0003817979
[0010]
When performing template matching, find the normalized correlation value for multiple partial areas, find the position where the normalized correlation value is maximum, or list the positions where the normalized correlation value exceeds a certain threshold. Or determining one or more similar regions. The feature of the normalized correlation is that appropriate matching can be performed without any influence even when the same object has different pixel values due to illumination variation or the like between the template and the search image.
However, the template matching using the normalized correlation coefficient has a property that the normalized correlation value becomes small when noise is added to the searched image and the template image. In particular, in the case of an electron microscope, the thermal noise of electrons is often added with a magnitude equal to or greater than the signal value, and the tendency that the normalized correlation value becomes small is remarkable.
[0011]
In order to cope with this, it is common practice to generate an image with a reduced amount of noise using a smoothing filter and use this as an input. Further, it is generally performed to obtain an effect of relatively reducing the amount of noise by applying an edge emphasis filter or the like to expand a signal change or extracting a pattern outline to perform matching.
[0012]
Next, a conventional template matching method will be described. The original image f 0 is added with noise N f and input as a searched image. Further, the original template image t 0 is added with noise N t and inputted as a template image. The image to be searched and the template image are subjected to image processing such as a filter having an effect of reducing the influence of noise by pre-processing, and converted into the noise reduced image to be searched f and the noise reduced template image t, and normalized correlation is performed. Is input. In the normalized correlation, a normalized correlation value r is calculated based on Equation 1. This normalized correlation value is a value that has become smaller due to the influence of noise. The normalized correlation value is determined by a determination unit, and based on the threshold value Th input from the outside, a partial image having a normalized correlation value equal to or greater than the threshold value is used as a matching candidate, and detection information such as coordinates related to the matching candidate is generated. .
[0013]
Japanese Patent Laid-Open No. 10-187967 further modifies Equation 3 into a monotonically decreasing function, and terminates the calculation of the normalized correlation value for the partial image that falls below the threshold value during the calculation. An idea to reduce the amount is disclosed.
[0014]
Further, as a method of estimating the amount of noise, Immerkaer, J., “Fast Noise Variance-Estimation”, Computer Vision and Image Understanding, Vol. 64, No. 2, Sep. 1996, pp. 300-302. There is. This assumes Gaussian noise as noise and estimates the component of Gaussian noise. For image f (i + k, j + l),
n (-1, -1) = 1 n (0, -1) =-2 n (1, -1) = 1
n (-1, 0) =-2 n (0, 0) = 4 n (1, 0) =-2
n (-1,1) = 1 n (0,1) =-2 n (1,1) = 1
And a noise variance estimation value V is obtained according to the following equation.
[0015]
When in primary mode
[0016]
[Expression 4]
Figure 0003817979
[0017]
Or in secondary mode,
[0018]
[Equation 5]
Figure 0003817979
[0019]
[Problems to be solved by the invention]
If the smoothing filter and the edge enhancement filter are used, it is possible to reduce the influence of noise, but there is a problem that the pattern to be searched for is changed and matching accuracy is lowered.
[0020]
In the smoothing filter, the pattern is blurred as noise is reduced.
[0021]
The edge enhancement filter enhances the pattern, but similarly amplifies the noise.
[0022]
Furthermore, since the normalized correlation value becomes smaller, it is necessary to lower the threshold value used for the determination. As a result, it is necessary to perform calculations for many candidates, resulting in an increase in useless calculations and an increase in processing speed. There is a problem that slows down.
[0023]
An object of the present invention is to provide a high-accuracy and high-speed pattern matching method without performing preprocessing that alters the pattern.
[0024]
[Means for Solving the Problems]
In order to solve the above problems, the present invention provides a template matching method for detecting a pattern of a template image t from a searched image f.
Estimating a noise variance value amount V fn included in the search image and a noise variance value amount V tn included in the template image ;
The normalized correlation value r is calculated according to Equation (1).
[Expression 1]
Figure 0003817979
V f Is the variance value of the image to be searched f, V t Is the variance value of the template image t,
R ft represents the correlation value between the searched image f and the template image t.
In order to solve the above-mentioned problem, the present invention provides a template matching method for detecting a pattern of a template image t from a searched image f.
Generating an image f ′ with a reduced amount of noise included in the searched image f and an image t ′ with a reduced amount of noise included in the template image t;
The normalized correlation value r is calculated in accordance with Equation (2).
[Expression 2]
Figure 0003817979
However, V f ′ is a variance value of the searched image f ′ with reduced noise amount,
V t ′ is the amount of noise and the variance value of the reduced template image t ′,
R ft represents the correlation value between the searched image f and the template image t.
[0025]
DETAILED DESCRIPTION OF THE INVENTION
First, consider the principle that noise reduces the normalized correlation value.
[0026]
In general, an image to be searched can be modeled as comprising a signal component f 0 and a noise component N f having an average value of 0, and a template image t comprising a signal component t 0 and a noise component N t having an average value of 0. .
[0027]
[Formula 6]
f (i + m, j + n) = f 0 (i + m, j + n) + N f (i + m, j + n)
t (m, n) = t 0 (m, n) + N t (m, n)
Since the average value of the noise components is 0, the following holds.
[0028]
[Expression 7]
Figure 0003817979
[0029]
Assuming that the noise components have no correlation, the following holds.
[0030]
[Equation 8]
Figure 0003817979
[0031]
Therefore, using Equations 7 and 8, the following equation is established, and it can be seen that the numerator of Equation 3 is not affected by noise.
[0032]
[Equation 9]
Figure 0003817979
[0033]
On the other hand, the following equation holds for the denominator of Equation 3.
[0034]
[Expression 10]
Figure 0003817979
[0035]
The noise variance value V f of the image to be searched and the noise variance value V t of the template image are defined as follows.
[0036]
[Expression 11]
Figure 0003817979
[0037]
Then, if the noise variance value V f of the image to be searched and the noise variance value V t of the template image can be estimated, the normalized correlation value r (i, j) relating to only the signal portion not including noise is obtained by the following equation. It is considered possible.
[0038]
[Expression 12]
Figure 0003817979
[0039]
FIG. 1 shows a first embodiment. It consists of noise estimation 104, noise-considered normalized correlation 120, and determination 123. The original image f 0 101 is added with noise N f 102 and input as a searched image f 103. Further, the original template image t 0 111 is added with noise N t 112 and inputted as a template image t113. The search image F103, the template image t113 is estimated variance of the noise of the whole image by noise estimation 104, respectively noise estimate V f 105, input as noise estimate V t 115 to noise consideration normalized correlation 120 Is done. Noise considering normalized correlation 120, the search image F103, the template image t113, enter the noise estimate V f 105 and noise estimate V t 115,, based on Equation 12 to calculate the noise considered normalized correlation value r121 . The noise-considered normalized correlation value r121 is determined in the determination 123 based on the threshold value Th112 input from the outside, and a partial image having a normalized correlation value equal to or greater than the threshold value is used as a matching candidate, and coordinates relating to the matching candidate are detected. Information 124 is generated.
[0040]
Note that since it is common to select an image with less noise as the template image, N t = 0, and therefore V t = 0 in the noise-considered normalized correlation 120, and the noise estimation 104 for the template image is deleted. It can be easily estimated from this embodiment.
[0041]
FIG. 4 shows a flowchart of the noise estimation 104. First, in 601, the target image is divided into small areas of Δi pixels × Δj pixels, and a variance value v (i, j) of each minute area is obtained as in the following equation. (i, j) is the starting point of the minute region.
[0042]
[Formula 13]
Figure 0003817979
[0043]
If a sufficiently small Δi × Δj minute region is taken, it is considered that the signal f 0 hardly changes in most of the minute regions and takes a substantially constant value. Therefore,
[0044]
[Expression 14]
Figure 0003817979
[0045]
So that
[0046]
[Expression 15]
Figure 0003817979
[0047]
Becomes the variance value of noise. Here, in order to eliminate a signal component that may be included somewhat, it is appropriate to estimate a noise variance value that has a variance value in the most area. As Δi and Δj, it is sufficient to select a size that is sufficiently small that Formula 14 is considered to hold, for example, about 8 pixels.
[0048]
Next, at 602, as shown in FIG. 5, in order to generate a histogram with the variance value v (i, j) as the horizontal axis and the vertical axis as the frequency, 1 is added to the frequency of the corresponding variance value in the histogram. .
[0049]
In 603, 601 and 602 are repeated for the entire target image to complete the histogram.
[0050]
Finally, at 604, a variance value that takes the maximum frequency of the histogram is obtained, and the variance value that the most minute regions have is estimated as the noise variance value V.
[0051]
In this way, the present noise variance estimation method can estimate the correct noise variance even if it contains noise that does not follow the Gaussian distribution, by following only the assumption that the noise has no correlation.
[0052]
FIG. 2 shows a second embodiment. It consists of noise estimation 104, partial image noise estimation 204, noise-considered normalized correlation 220, and determination 123. Since it is basically the same as the first embodiment of FIG. 1, only the differences will be described. 2 is different from FIG. 1 in that the partial image noise estimation 204 related to the searched image is different from the noise estimation 104 related to the template image. The noise estimation 204 performs noise estimation on a partial image that is to be subjected to a normalized correlation operation by being superimposed on a template. The output of the noise estimation 204, as noise estimate V f 205 of the partial image, is input to the noise consideration normalized correlation 220, the noise taking into account normalized correlation 220, the noise estimation value V f 205 which differ from one partial image In accordance with Equation 12, a noise-considered normalized correlation value 121 is calculated.
[0053]
Note that since it is common to select an image with less noise as the template image, N t = 0, and therefore V t = 0 in the noise-considered normalized correlation 220, and the noise estimation 104 for the template image is deleted. It can be easily estimated from this embodiment.
[0054]
Since the noise estimation 204 is different from the noise estimation 104 only in that the target for noise estimation is a partial image, the processing contents can be configured in exactly the same way as the noise estimation 104.
[0055]
FIG. 3 shows a third embodiment. It consists of preprocessing 304, noise-considered normalized correlation 320, and determination 123. The original image f 0 101 is added with noise N f 102 and input as a searched image f 103. Further, the original template image t 0 111 is added with noise N t 112 and inputted as a template image t113. The searched image f103 and the template image t113 are reduced in noise by the preprocessing 304, and are input to the noise-considered normalized correlation 320 as a noise-reduced image f′315 and a noise-reduced template t′315, respectively. The noise-considered normalized correlation 320 receives the searched image f103, the template image t113, the noise-reduced image f′315, and the noise-reduced template t′315, and calculates a noise-considered normalized correlation value r121. The formula for the noise-considered normalized correlation 320 to calculate the noise-considered normalized correlation value r121 is as follows.
[0056]
[Expression 16]
Figure 0003817979
[0057]
However,
[0058]
[Expression 17]
Figure 0003817979
[0059]
That is, when calculating the normalized correlation numerator, the original searched image f103 and the template image t113, which are noisy but have a clear pattern, are used to calculate the normalized correlation denominator. The noise reduction image f′315 and noise reduction template t′315 in which noise is reduced may be used. In the determination 123, the noise-considered normalized correlation value r121 is determined based on the threshold value Th112 input from the outside, and a partial image having a normalized correlation value equal to or greater than the threshold value is used as a matching candidate, and coordinates relating to the matching candidate are detected. Information 124 is generated.
[0060]
【The invention's effect】
According to the present invention, since the preprocessing that alters the pattern is not performed, the original pattern can be used as it is, and template matching can be executed with high accuracy and at high speed.
[Brief description of the drawings]
FIG. 1 is a diagram showing an embodiment of a template matching method according to the present invention.
FIG. 2 is a diagram showing another embodiment of the template matching method according to the present invention.
FIG. 3 is a diagram showing another embodiment of the template matching method according to the present invention.
FIG. 4 is a diagram illustrating a flowchart of noise estimation.
FIG. 5 is an explanatory diagram of a noise variance value histogram.
[Explanation of symbols]
104: Noise estimation, 120: Noise-considered normalized correlation, 123: Determination.

Claims (4)

被探索画像f中からテンプレート画像tのパターンを検出するテンプレートマッチング方法において、
前記被探索画像に含まれるノイズ分散値量Vfn、及び前記テンプレート画像に含まれるノイズ分散値量Vtnを推定し、
数式1に従い正規化相関値rを計算するテンプレートマッチング方法。
Figure 0003817979
ただし、Vf は被検索画像fの分散値、Vt はテンプレート画像tの分散値、
ftは被検索画像fとテンプレート画像tの相関値を表す。
In the template matching method for detecting the pattern of the template image t from the searched image f,
Estimating a noise variance value amount V fn included in the search image and a noise variance value amount V tn included in the template image;
A template matching method for calculating a normalized correlation value r according to Equation 1.
Figure 0003817979
Where V f is the variance value of the image to be searched f, V t is the variance value of the template image t,
R ft represents the correlation value between the searched image f and the template image t.
請求項1のテンプレートマッチング方法において、
前記被探索画像全体についてノイズ量の推定が行われるテンプレートマッチング方法。
The template matching method according to claim 1,
A template matching method in which an amount of noise is estimated for the entire searched image.
請求項1のテンプレートマッチング方法において、
前記被探索画像の予め定められた領域毎にノイズ量の推定が行われるテンプレートマッチング方法。
The template matching method according to claim 1,
A template matching method in which an amount of noise is estimated for each predetermined region of the searched image.
被探索画像f中からテンプレート画像tのパターンを検出するテンプレートマッチング方法において、
前記被探索画像fに含まれるノイズ量を低減した画像f′、及び前記テンプレート画像tに含まれるノイズ量を低減した画像t′を生成し、
数式2に従い正規化相関値rを計算するテンプレートマッチング方法。
Figure 0003817979
ただし、Vf′はノイズ量を低減した被検索画像f′の分散値、
t′はノイズ量と低減したテンプレート画像t′の分散値、
ftは被検索画像fとテンプレート画像tの相関値を表す。
In the template matching method for detecting the pattern of the template image t from the searched image f,
Generating an image f ′ with a reduced amount of noise included in the searched image f and an image t ′ with a reduced amount of noise included in the template image t;
A template matching method for calculating a normalized correlation value r according to Equation 2.
Figure 0003817979
However, V f ′ is a variance value of the searched image f ′ with reduced noise amount,
V t ′ is the amount of noise and the variance value of the reduced template image t ′,
R ft represents the correlation value between the searched image f and the template image t.
JP19836099A 1999-07-13 1999-07-13 Template matching method Expired - Fee Related JP3817979B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP19836099A JP3817979B2 (en) 1999-07-13 1999-07-13 Template matching method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP19836099A JP3817979B2 (en) 1999-07-13 1999-07-13 Template matching method

Publications (2)

Publication Number Publication Date
JP2001022941A JP2001022941A (en) 2001-01-26
JP3817979B2 true JP3817979B2 (en) 2006-09-06

Family

ID=16389823

Family Applications (1)

Application Number Title Priority Date Filing Date
JP19836099A Expired - Fee Related JP3817979B2 (en) 1999-07-13 1999-07-13 Template matching method

Country Status (1)

Country Link
JP (1) JP3817979B2 (en)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4174487B2 (en) 2005-03-24 2008-10-29 アドバンスド・マスク・インスペクション・テクノロジー株式会社 Image correction method
JP5074513B2 (en) * 2006-11-30 2012-11-14 アドラー、ジェレミー Correlation between data sets
JP5331721B2 (en) * 2010-02-02 2013-10-30 アズビル株式会社 Image processing apparatus, image processing method, and image processing program
JP5455229B2 (en) * 2010-04-26 2014-03-26 株式会社Kddi研究所 Image encoding apparatus and image decoding apparatus
JP6017399B2 (en) 2013-10-23 2016-11-02 オリンパス株式会社 Imaging apparatus and phase difference detection method

Also Published As

Publication number Publication date
JP2001022941A (en) 2001-01-26

Similar Documents

Publication Publication Date Title
US10388018B2 (en) Image processing apparatus, image processing method, and storage medium
US9947077B2 (en) Video object tracking in traffic monitoring
CN106934333B (en) Gesture recognition method and system
JP5213486B2 (en) Object tracking device and object tracking method
US6701026B1 (en) Method and apparatus for cancelling lighting variations in object recognition
US10692215B2 (en) Image processing apparatus, image processing method, and storage medium
CN103679743A (en) Target tracking device and method as well as camera
CN110675463B (en) Method and device for generating partial color pencil drawing
CN111369570B (en) Multi-target detection tracking method for video image
JP6260113B2 (en) Edge extraction method and equipment
JP3817979B2 (en) Template matching method
US7058221B1 (en) Method of recognizing object based on pattern matching and medium for recording computer program having same
JP2625384B2 (en) Image recognition device and image recognition method
US6885770B2 (en) Irradiation field extracting method and apparatus and recording medium
JP3878590B2 (en) Time-series image processing method and apparatus
Čisar et al. Kernel sets in compass edge detection
JP4560434B2 (en) Change region extraction method and program of the method
JPH0217832B2 (en)
CN105608711A (en) Local-sensitive-histogram-based dynamic target tracking and extracting method of video
JP3447716B2 (en) Image processing device
CN111476807A (en) Edge processing method and device for segmenting image and analysis instrument
JP2005242703A (en) Image processing device and method
JP2005071125A (en) Object detector, object detection method, object data selection program and object position detection program
Nercessian et al. A new reference-based measure for objective edge map evaluation
CN112802055B (en) Target ghost detection and edge propagation inhibition algorithm

Legal Events

Date Code Title Description
A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20051115

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20060124

A521 Request for written amendment filed

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20060327

RD01 Notification of change of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7421

Effective date: 20060417

TRDD Decision of grant or rejection written
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 20060523

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20060605

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090623

Year of fee payment: 3

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100623

Year of fee payment: 4

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100623

Year of fee payment: 4

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110623

Year of fee payment: 5

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110623

Year of fee payment: 5

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20120623

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20120623

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20130623

Year of fee payment: 7

LAPS Cancellation because of no payment of annual fees