JP2001043357A - Image processing method, device thereof and recording medium - Google Patents

Image processing method, device thereof and recording medium

Info

Publication number
JP2001043357A
JP2001043357A JP11216900A JP21690099A JP2001043357A JP 2001043357 A JP2001043357 A JP 2001043357A JP 11216900 A JP11216900 A JP 11216900A JP 21690099 A JP21690099 A JP 21690099A JP 2001043357 A JP2001043357 A JP 2001043357A
Authority
JP
Japan
Prior art keywords
image
interpolation
original image
pixel
weighted sum
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.)
Pending
Application number
JP11216900A
Other languages
Japanese (ja)
Inventor
Shin Aoki
青木  伸
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.)
Ricoh Co Ltd
Original Assignee
Ricoh 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 Ricoh Co Ltd filed Critical Ricoh Co Ltd
Priority to JP11216900A priority Critical patent/JP2001043357A/en
Publication of JP2001043357A publication Critical patent/JP2001043357A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T3/00Geometric image transformations in the plane of the image
    • G06T3/40Scaling of whole images or parts thereof, e.g. expanding or contracting
    • G06T3/4007Scaling of whole images or parts thereof, e.g. expanding or contracting based on interpolation, e.g. bilinear interpolation

Landscapes

  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Image Processing (AREA)
  • Editing Of Facsimile Originals (AREA)

Abstract

PROBLEM TO BE SOLVED: To attain the interpolation with reduced aliasing and blur and at a low calculation cost. SOLUTION: A bilinear interpolation part 104 of this image processor fetches 4-pixel value corresponding to the pixel positions designated at a pixel position generation part 102 to the images of three hierarchies selected at a hierarchy selection part 103 from an original image/reduced image storage part 101 and performs a bilinear interpolation operation. These obtained three interpolation pixel value undergo the weighted sum via a weighted sum calculation part 105 by means of the weighting including negative value. The sum total of three weightings is always equal to 1 and also gradually changes as the enlargement/ reduction ratio varies at the periphery of an attentional pixel. Thus, a deformed image that is obtained via the perspective conversion and has the smoothly continuous parts of different scale factors and reduced aliasing and blur is obtained at a deformed image storage part 106.

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【発明の属する技術分野】本発明は、デジタル画像処理
の分野に係り、特に、デジタル画像の変形処理の分野に
関する。
The present invention relates to the field of digital image processing, and more particularly, to the field of digital image deformation processing.

【0002】[0002]

【従来の技術】画像処理の分野では、デジタル画像の変
形操作が必要になることが多い。例えば異なる位置、角
度などの条件で撮影した複数の画像を正確に貼り合わせ
るためには、画像に透視変換による変形を施すことが必
要である。透視変換に対応した変形では、一枚の画像中
に拡大される部分と縮小される部分が生じる。このよう
な場合、拡大、縮小をともに高品質に処理し、かつ倍率
の異なる部分がなめらかに連続することが望ましい。
2. Description of the Related Art In the field of image processing, digital images often need to be deformed. For example, in order to accurately combine a plurality of images photographed under conditions such as different positions and angles, it is necessary to perform deformation by perspective transformation on the images. In the deformation corresponding to the perspective transformation, a portion to be enlarged and a portion to be reduced occur in one image. In such a case, it is desirable that both enlargement and reduction be performed with high quality, and that portions having different magnifications be smoothly continuous.

【0003】デジタル画像を変形するためには、原画像
上に原画像の画素格子とは異なる新たな格子を考え、そ
の格子点位置の画素値を求めることが必要である。しか
し、変形された画像の画素位置は、一般的に元の画像の
画素位置とは一致しないため、変形画像の画素値は、原
画像の画素値を補間することによって求めることにな
る。補間処理とは、原画像上の位置(i, j)(ただしi, j
は整数)の画素値をA(i, j)として、任意の位置(x, y)で
の画素値B(x, y)を、A(i, j)から推定する処理である。
デジタル画像の画素値補間法として、次の3つの方法が
知られている。
In order to transform a digital image, it is necessary to consider a new grid on the original image which is different from the pixel grid of the original image, and to obtain the pixel value at the grid point position. However, since the pixel position of the deformed image generally does not match the pixel position of the original image, the pixel value of the deformed image is obtained by interpolating the pixel value of the original image. Interpolation processing refers to the position (i, j) (where i, j
Is a process of estimating a pixel value B (x, y) at an arbitrary position (x, y) from A (i, j), where A (i, j) is a pixel value of (integer).
The following three methods are known as pixel value interpolation methods for digital images.

【0004】《ニアレストネイバー法(最近傍法)》
(x, y)に最も近い原画像画素(i, j)を選択し、その画素
値をそのまま補間画素値B(x, y)とする方法である。す
なわち、
<< Nearest Neighbor Method (Nearest Neighbor Method) >>
This is a method in which an original image pixel (i, j) closest to (x, y) is selected, and the pixel value is directly used as an interpolation pixel value B (x, y). That is,

【数1】 この方法は、ここに述べる3つの補間法の中では、補間
結果の画質が最も悪いが、計算コストは最も低い。
(Equation 1) This method has the worst image quality of the interpolation result among the three interpolation methods described here, but has the lowest calculation cost.

【0005】《バイリニア法》(x, y)を囲む四つの原画
像画素を選択し、その画素値から線形補間する方法であ
る。すなわち、
[0005] << Bilinear method >> This is a method of selecting four original image pixels surrounding (x, y) and linearly interpolating from the pixel values. That is,

【数2】 (Equation 2)

【0006】《キュービックスプライン法》(x, y)を囲
む4×4=16個の原画像画素を選択し、その画素値の
加重平均を求める方法である。すなわち、
<< Cubic Spline Method >> In this method, 4 × 4 = 16 original image pixels surrounding (x, y) are selected, and a weighted average of the pixel values is obtained. That is,

【数3】 この方法は、負の加重を使うことから、バイリニア法に
比べエッジ強調の効果が生じ、3つの補間法の中で最も
解像度が高い補間結果を得られる。その反面、16個の
画素値を使用するため計算コストは最も大きい。
(Equation 3) Since this method uses a negative weight, the effect of edge enhancement is produced as compared with the bilinear method, and an interpolation result with the highest resolution among the three interpolation methods can be obtained. On the other hand, the calculation cost is the highest because 16 pixel values are used.

【0007】また、デジタル画像の拡大、縮小に関連し
た画質向上もしくは画質劣化の防止のための技術とし
て、次のような処理方法が知られている。
The following processing method is known as a technique for improving image quality or preventing image quality deterioration related to enlargement and reduction of digital images.

【0008】《ぼけ防止のための手法:アンシャープマ
スク処理》画像を拡大する場合、原画像の詳細度を超え
る細かい情報は得られないため、画像がぼける傾向にあ
る。輪郭を強調してぼけを減少させる方法として、例え
ば特開平10−23267号公報などに見られるよう
な、原画像から、原画像をぼかした画像を減算するアン
シャープマスクという処理法が知られている。以下、こ
のアンシャープマスク処理について説明する。例えば、
原画像(I)に図4に示す係数を使いフィルタをかけると
する。このフィルタは平滑化フィルタであり、フィルタ
処理の結果(Is)は原画像をぼかしたものになる。
<< Technique for Preventing Blur: Unsharp Mask Processing >> When an image is enlarged, fine information exceeding the detail level of the original image cannot be obtained, and the image tends to be blurred. As a method of enhancing the outline and reducing blur, there is known a processing method called an unsharp mask that subtracts an image obtained by blurring an original image from an original image, as disclosed in, for example, JP-A-10-23267. I have. Hereinafter, the unsharp mask processing will be described. For example,
It is assumed that the original image (I) is filtered using the coefficients shown in FIG. This filter is a smoothing filter, and the result (Is) of the filter processing is a blur of the original image.

【0009】次に、原画像(I)と平滑化画像(Is)を使
い、下式のように画素毎に加重和を取ることを考える。
Next, consider the use of the original image (I) and the smoothed image (Is) to obtain a weighted sum for each pixel as in the following equation.

【数4】 (Equation 4)

【0010】式(4)において、平滑化画像(Is)につい
て図4のフィルタ処理まで遡って考えると、I'は、図4
の係数を−0.5倍し、さらに中央の画素の重みに1.5を加
えた、図5に示す係数を使ったフィルタ処理の結果と同
じであることがわかる。図5のように、中央の画素以外
の係数が負の値を持つフィルタは、一般に輪郭強調の効
果を持つ。また、係数(1.5,0.5)から、加重和の結果は
平均的には原画像(I)と同じになる。このことから、
(4)式のように、平滑化した画像を原画像から減算す
ることにより、輪郭強調された画像が得られることが分
かる。
In equation (4), when considering the smoothed image (Is) retroactively to the filter processing in FIG.
It can be seen that the result is the same as the result of the filter processing using the coefficient shown in FIG. 5 in which the coefficient of .times. As shown in FIG. 5, a filter having a coefficient other than the center pixel having a negative value generally has an edge enhancement effect. From the coefficients (1.5, 0.5), the result of the weighted sum is the same as the original image (I) on average. From this,
As can be seen from equation (4), by subtracting the smoothed image from the original image, an image with enhanced edges can be obtained.

【0011】《エイリアシング防止のための手法:ミッ
プマップ法》画像の縮小処理では、エイリアシングと呼
ばれる画質劣化が問題になる。図3にエイリアシングの
例を示す。図3の(a)は斜線が描かれた原画像、
(b)は原画像を1/4に縮小した画像である。この縮
小画像の例のように、縮小により、なだらかな斜線が破
線に変化してしまうなどの画質劣化が生じることがあ
り、これをエイリアシングと呼ぶ。この例では1/4に
縮小したため、変換画像の画素位置は原画像の画素位置
に一致する。そのため、上記の3つの補間法のどれを使
用しても結果は同じである。一般的に、エイリアシング
は、キュービックスプラインのような高精度の補間法を
使用しても解決しない。エイリアシングを防止する処理
方法として、ミップマップと呼ばれる方法が知られてい
る。ミップマップ法では、以下のような一連の処理によ
り変形画像を得る。 (1)ピラミッド縮小:原画像の縦横2画素ずつ計4画
素の平均をとることで、1/2に縮小した画像を生成す
る。このような1/2縮小を繰り返し、1/4,1/
8,... と、徐々に詳細度が低くなる一連の縮小画
像を準備する。 (2)最適階層選択:補間処理する画素位置の周辺での
倍率に対して適当な縮小率の画像を選択する。要求され
た倍率が1/nに等しくない場合は、その倍率と縮小率
が近い上下2階層の縮小画像を選択する。例えば、周辺
の倍率が1/6の場合、1/4縮小画像と1/8縮小画
像を選択する。 (3)階層内補間:選択された各縮小画像上で、目的の
画素位置に対応する位置の画素値を、補間処理により求
める。この補間処理では、変形画像とほぼ同じ大きさの
縮小画像をもとにするため、エイリアシングは生じにく
い。 (4)階層間補間:補間処理する画素位置の周辺での倍
率が、選択された上下2階層の縮小画像の倍率の間にあ
る場合、その周辺倍率と各階層の倍率との近さに応じた
重みを使い、2つの階層内補間結果の加重平均を取る。
例えば、倍率が1/6の場合、1/4縮小画像上の補間
結果と1/8縮小画像上の補間結果の1対1の平均を取
る。この処理により、位置によって倍率が徐々に変化す
るような場合でも、処理結果はなめらかに連続するよう
になる。
<< Method for Preventing Aliasing: Mipmap Method >> In image reduction processing, image quality deterioration called aliasing becomes a problem. FIG. 3 shows an example of aliasing. FIG. 3A shows an original image in which oblique lines are drawn,
(B) is an image obtained by reducing the original image to 1/4. As in the example of the reduced image, the image quality may be degraded due to the reduction, for example, a gentle oblique line may be changed to a broken line. This is called aliasing. In this example, since the pixel size is reduced to 1/4, the pixel position of the converted image matches the pixel position of the original image. Therefore, the results are the same no matter which of the three interpolation methods is used. In general, aliasing is not resolved by using high-precision interpolation methods such as cubic splines. As a processing method for preventing aliasing, a method called a mipmap is known. In the mipmap method, a deformed image is obtained by a series of processes described below. (1) Pyramid reduction: An image reduced to 1/2 is generated by taking an average of a total of 4 pixels each of 2 pixels vertically and horizontally of the original image. Such 1/2 reduction is repeated, and 1/4, 1 /
8,. . . Then, a series of reduced images whose level of detail gradually decreases is prepared. (2) Optimal hierarchy selection: An image having an appropriate reduction ratio with respect to the magnification around the pixel position to be subjected to the interpolation processing is selected. If the requested magnification is not equal to 1 / n, a reduced image of the upper and lower two layers having the same magnification and a reduced ratio is selected. For example, when the peripheral magnification is 1/6, a 1/4 reduced image and a 1/8 reduced image are selected. (3) Intra-hierarchical interpolation: A pixel value at a position corresponding to a target pixel position on each selected reduced image is obtained by an interpolation process. In this interpolation processing, aliasing is unlikely to occur because a reduced image having substantially the same size as the deformed image is used. (4) Inter-layer interpolation: When the magnification at the periphery of the pixel position to be interpolated is between the magnifications of the reduced image of the selected upper and lower two layers, it is determined according to the proximity between the peripheral magnification and the magnification of each layer. A weighted average of the two intra-layer interpolation results is obtained using the calculated weights.
For example, when the magnification is 6, the one-to-one average of the interpolation result on the 4 reduced image and the interpolation result on the 8 reduced image is calculated. With this processing, even when the magnification gradually changes depending on the position, the processing result smoothly continues.

【0012】このミップマップ法の利点は、サンプリン
グをする前に縮小処理が行われるため、エイリアシング
が生じにくいことである。例えば、図3(a)に示した
画像の場合、図6(a)のような1/2縮小画像、同図
(b)のような1/4縮小画像を得られる。
The advantage of the mipmap method is that aliasing is less likely to occur because the reduction process is performed before sampling. For example, in the case of the image shown in FIG. 3A, a 縮小 reduced image as shown in FIG. 6A and a 縮小 reduced image as shown in FIG.

【0013】他方、ミップマップの欠点は、階層内補間
処理法として一般に8個の画素参照で済むバイリニア法
が使われるが、この場合にキュービックスプライン法に
比べ解像度が低くなることである。解像度を上げるた
め、階層内でキュービックスプライン法を使うと、計3
2個の画素値を参照する必要があり計算量が非常に多く
なってしまう。
On the other hand, a disadvantage of the mipmap is that a bilinear method which generally requires only eight pixels is used as an intra-layer interpolation processing method. In this case, the resolution is lower than that of the cubic spline method. Using the cubic spline method in the hierarchy to increase the resolution, a total of 3
Since it is necessary to refer to two pixel values, the amount of calculation becomes very large.

【0014】[0014]

【発明が解決しようとする課題】本発明の目的は、エイ
リアシング及びぼけが少ない補間を低い計算コストで実
現することである。本発明のもう1つの目的は、透視変
換により変形した高画質画像の生成を可能にすることで
ある。
SUMMARY OF THE INVENTION It is an object of the present invention to achieve low aliasing and low blur interpolation at low computational costs. Another object of the present invention is to enable generation of a high quality image deformed by perspective transformation.

【0015】[0015]

【課題を解決するための手段】本発明においては、原画
像とそれを縮小した詳細度の異なる複数の画像の中から
複数の画像を選択し、選択した各画像に対し補間処理を
行い、得られた複数の補間結果の加重和演算を行うこと
によって補間画素値を得るが、この加重和演算で使用さ
れる加重中に負の値を含めることにより、低い計算コス
トにてエイリアシング及びぼけの少ない補間を達成する
ことである。
According to the present invention, a plurality of images are selected from an original image and a plurality of images obtained by reducing the original image and having different levels of detail, and interpolation processing is performed on each of the selected images. The interpolation pixel value is obtained by performing a weighted sum operation of a plurality of interpolation results obtained, but by including a negative value in the weight used in the weighted sum operation, aliasing and blurring are reduced at a low calculation cost. To achieve interpolation.

【0016】また、変形パラメータに基づいて原画像を
透視変換により変形した画像上の各画素位置に対応す
る、原画像上の画素位置を生成するとともに、その画素
位置の周辺の拡大/縮小倍率を求め、この縮小/拡大倍
率に基づいて画像を選択し、選択された各画像の、上記
画素位置に対応した複数の画素値を用いて補間演算を行
うことにより、原画像を透視変換により変形したエイリ
アシング及びぼけの少ない画像を生成する。さらに、加
重和演算に用いられる加重を、その総和が常に1で、か
つ、拡大/縮小倍率が変化するに従い徐々に変化するも
のとすることにより、倍率が異なる部分が滑らかに連続
する変形画像を生成する。
In addition, a pixel position on the original image corresponding to each pixel position on the image obtained by subjecting the original image to perspective transformation based on the transformation parameter is generated, and an enlargement / reduction magnification around the pixel position is determined. Then, the original image is transformed by perspective transformation by selecting an image based on the reduction / enlargement magnification and performing an interpolation operation using a plurality of pixel values corresponding to the pixel positions of each of the selected images. Produces images with less aliasing and blur. Further, the weight used in the weighted sum calculation is set such that the sum thereof is always 1 and gradually changes as the enlargement / reduction magnification changes. Generate.

【0017】[0017]

【発明の実施の形態】添付図面を参照しつつ、本発明の
実施の形態を説明する。
Embodiments of the present invention will be described with reference to the accompanying drawings.

【0018】図1は本発明による画像処理装置の一例を
示すブロック図である。この画像処理装置は、変形パラ
メータに基づいて原画像を透視変換により変形した画像
を生成するものであり、縮小画像生成部100、原画像
・縮小画像記憶部101、画素位置生成部102、階層
選択部103、バイリニア補間部104、加重和演算部
105、変形画像記憶部106、結果出力部107、原
画像入力部108、及び、パラメータ入力部109から
構成されている。図2は、この画像処理装置の処理フロ
ーを示すフローチャートである。以下、このフローチャ
ートの流れに沿って、処理内容を説明する。
FIG. 1 is a block diagram showing an example of an image processing apparatus according to the present invention. This image processing apparatus generates an image in which an original image is transformed by perspective transformation based on transformation parameters, and includes a reduced image generation unit 100, an original image / reduced image storage unit 101, a pixel position generation unit 102, a hierarchical selection It comprises a unit 103, a bilinear interpolation unit 104, a weighted sum calculation unit 105, a deformed image storage unit 106, a result output unit 107, an original image input unit 108, and a parameter input unit 109. FIG. 2 is a flowchart showing a processing flow of the image processing apparatus. Hereinafter, the processing content will be described along the flow of this flowchart.

【0019】《ステップS1》原画像入力部108によ
り、原画像データが縮小画像生成部100に入力され
る。
<Step S1> The original image data is input to the reduced image generation unit 100 by the original image input unit 108.

【0020】《ステップS2》パラメータ入力部109
により、透視変換の変形パラメータが画素位置生成部1
02に入力される。この時に、出力画像(目的の変形画
像)のサイズ(高さ、幅)も画素位置生成部109に入
力される。
<< Step S2 >> Parameter input unit 109
The transformation parameter of the perspective transformation is
02 is input. At this time, the size (height, width) of the output image (target deformed image) is also input to the pixel position generation unit 109.

【0021】《ステップS3》縮小画像生成部100に
おいて、入力された原画像データに対する複数段階の縮
小処理を行い、詳細度が異なる複数の縮小画像データを
生成する。ここでは、原画像の近傍2×2画素の平均値
をとることで縦横1/2に縮小した画像データを生成
し、その縮小画像を同様にさらに縮小した画像データを
生成するという1/2縮小処理を、縦又は横方向のサイ
ズが1画素になるまで繰り返すものとする。生成された
縮小画像データは、原画像データとともに原画像・縮小
画像記憶部101に記憶される。すなわち、原画像・縮
小画像記憶部101上に、詳細度が順次低下する複数の
縮小画像データと、最も詳細度が高い原画像データとか
らなる(詳細度が低い縮小画像ほど高階層)階層データ
構造が得られる。原画像・縮小画像記憶部101は、バ
イリニア補間部104より、階層(縮小の段数)と、そ
の階層の画像(原画像又縮小画像)上の(x,y)座標
を指定して参照されると、該当階層画像の該当位置の画
素値を出力する。
<Step S3> The reduced image generation section 100 performs a plurality of stages of reduction processing on the input original image data to generate a plurality of reduced image data having different levels of detail. In this case, the average value of 2 × 2 pixels in the vicinity of the original image is calculated to generate image data reduced to 縦 in height and width, and the reduced image is further reduced to generate image data. The process is repeated until the size in the vertical or horizontal direction becomes one pixel. The generated reduced image data is stored in the original image / reduced image storage unit 101 together with the original image data. In other words, hierarchical data composed of a plurality of reduced image data of which the degree of detail is sequentially reduced and original image data of the highest degree of detail are stored in the original image / reduced image storage unit 101 (a reduced image having a lower degree of detail has a higher hierarchy). The structure is obtained. The original image / reduced image storage unit 101 is referred to by the bilinear interpolation unit 104 by designating the hierarchy (the number of reduction stages) and the (x, y) coordinates on the image (original image or reduced image) of the hierarchy. Then, the pixel value at the corresponding position in the corresponding hierarchical image is output.

【0022】《ステップS4》画素位置生成部102に
おいて、変形パラメータに基づいて、透視変換による変
形を施した結果の出力画像上での各画素位置に対応す
る、原画像上の画素位置を生成し、それをバイリニア補
間部104へ出力する。すなわち、出力画像上の位置を
(i,j)、原画像上の位置を(x,y)とすると、決
められた出力画像の範囲内のすべての(i,j)の組合
わせに対してスキャンライン順に、下式に従い画素位置
(x,y)を計算する。ここではステップS4〜ステッ
プS8の処理ループで1画素ずつの逐次処理を考えてい
るので、この処理ループの各パスで注目した1つの
(i,j)の組み合わせに対し計算が行われ、その結果
が出力される。
<Step S4> The pixel position generator 102 generates pixel positions on the original image corresponding to the respective pixel positions on the output image resulting from the perspective transformation based on the transformation parameters. Is output to the bilinear interpolation unit 104. That is, assuming that the position on the output image is (i, j) and the position on the original image is (x, y), for all combinations of (i, j) within the determined range of the output image, The pixel position (x, y) is calculated in the scan line order according to the following equation. Here, since the sequential processing for each pixel is considered in the processing loop of steps S4 to S8, calculation is performed for one (i, j) combination of interest in each pass of this processing loop, and as a result, Is output.

【数5】 ただし、a0からa7は、外部から与えられた変形パラメ
ータである。
(Equation 5) However, a 7 from a 0 is a modified parameter given from the outside.

【0023】また、画素位置生成部102において、そ
の画素位置(x,y)の周辺の拡大/縮小倍率を計算
し、その結果を階層選択部103へ出力する。この倍率
は以下のようにして求められる。まず出力画像上で、
(i,j)を一角とする縦横1の大きさの正方形を考
え、次式により各頂点の原画像上での対応位置を求める
(図7参照)。
The pixel position generation unit 102 calculates the enlargement / reduction ratio around the pixel position (x, y), and outputs the result to the hierarchy selection unit 103. This magnification is obtained as follows. First, on the output image,
Consider a square having a size of 1 in the horizontal and vertical directions with (i, j) as one corner, and find the corresponding position of each vertex on the original image by the following equation.
(See FIG. 7).

【数6】 (Equation 6)

【0024】次に、原画像上の対応する四角形の占める
範囲(w,h)を求める。
Next, the range (w, h) occupied by the corresponding rectangle on the original image is determined.

【数7】 ただし、max(x...)とmin(x...)は、引数のうちの最大
値、最小値を返す関数である。そして、このw,hのう
ちの大きい方を出力画像上での長さ1に対応する、原画
像上の長さと考え、注目した画素位置の周辺の倍率mを
次式により計算する。
(Equation 7) However, max (x ...) and min (x ...) are functions that return the maximum and minimum values of the arguments. The larger one of w and h is considered as the length on the original image corresponding to the length 1 on the output image, and the magnification m around the pixel position of interest is calculated by the following equation.

【数8】 (Equation 8)

【0025】《ステップS5》階層選択部103におい
て、画素位置生成部102より与えられた倍率mに基づ
いて、使用すべき画像の階層(L)を以下の式に従って決
定する。
<Step S5> In the hierarchy selection unit 103, the hierarchy (L) of the image to be used is determined according to the following equation based on the magnification m given by the pixel position generation unit 102.

【数9】 (Equation 9)

【数10】 (Equation 10)

【0026】この階層(L)と、階層(L+1),(L+2)の3
階層の画像(縮小画像又は原画像)が、次のバイリニア
補間演算の処理対象となる。すなわち、実質的に、これ
ら3つの階層が選択されたことになる。また、周辺倍率
mから式(9)により計算された対数倍数lも加重和演
算部105へ指示される(ただし、倍率mを加重和演算
部105へ指示してもよい)。
This layer (L) and three layers (L + 1) and (L + 2)
The hierarchical image (reduced image or original image) is to be processed by the next bilinear interpolation operation. That is, these three hierarchies are substantially selected. Further, the logarithm multiple 1 calculated from the peripheral magnification m by the equation (9) is also instructed to the weighted sum calculation unit 105 (however, the magnification m may be instructed to the weighted sum calculation unit 105).

【0027】《ステップS6》バイリニア補間部104
において、画素位置生成部102より入力された原画像
上の画素位置(x,y)から、階層(L)の画像上の画素
位置(xL,yL)を次式により求める。
<< Step S6 >> Bilinear interpolation section 104
, The pixel position (x L , y L ) on the image of the layer (L) is obtained from the pixel position (x, y) on the original image input from the pixel position generation unit 102 by the following equation.

【数11】 [Equation 11]

【0028】次に、原画像・縮小画像記録部101を参
照し、階層(L)の画像上の画素(xL,yL)を囲む4つ
の画素の画素値を読み込み、バイリニア補間演算を行
う。すなわち、AL(i, j) を階層(L)の画像上の位置
(i,j)の画素値として、次式の補間演算を行う。
Next, with reference to the original image / reduced image recording unit 101, the pixel values of four pixels surrounding the pixel (x L , y L ) on the image of the hierarchy (L) are read, and bilinear interpolation calculation is performed. . That is, the interpolation calculation of the following equation is performed using AL (i, j) as the pixel value at the position (i, j) on the image of the layer (L).

【数12】 (Equation 12)

【0029】階層(L+1),(L+2)の画像に関しても、同様
にして、画素位置を計算し、その位置を囲む4つの画素
の画素値を読み込んでバイリニア補間演算を行い、補間
画素値(IL+1),(IL+2)を求める。
Similarly, for the images of the layers (L + 1) and (L + 2), the pixel positions are calculated, the pixel values of the four pixels surrounding the positions are read, and the bilinear interpolation operation is performed. Pixel values ( IL + 1 ) and ( IL + 2 ) are obtained.

【0030】《ステップS7》加重和演算部105にお
いて、次式に従い、各階層でのバイリニア補間結果の加
重和をとることで出力画素値(Iout)を求め、変形画像
記憶部106に書き込む。
<Step S7> In the weighted sum calculation unit 105, an output pixel value (Iout) is obtained by calculating the weighted sum of the bilinear interpolation results in each layer according to the following equation, and the output pixel value (Iout) is written to the deformed image storage unit 106.

【数13】 (Equation 13)

【0031】ここで、加重 wi は、画素位置生成部1
02より与えられた注目画素位置周辺の対数倍率(l)
を使って、以下の式に従い決定する。
Here, the weight w i is determined by the pixel position generator 1
Logarithmic magnification (l) around the position of the pixel of interest given from 02
Is determined according to the following equation.

【数14】 [Equation 14]

【数15】 ただし、対数倍率でなく倍率mに基づいて、同様の方法
で加重を決定することも可能である。
(Equation 15) However, it is also possible to determine the weight by a similar method based on the magnification m instead of the logarithmic magnification.

【0032】図8及び図9に倍率と加重の関係を示す。
横軸が対数倍率1、縦軸が重みwで、太い実線がL層の
補間結果に対する重みwLを表す。参考のためwL-1,w
L+1も破線で示されている。また、比較のため、図10
に従来のミップマップ法での加重を示す。
FIGS. 8 and 9 show the relationship between the magnification and the weight.
The horizontal axis represents the logarithmic magnification 1, the vertical axis represents the weight w, and the thick solid line represents the weight w L for the interpolation result of the L layer. For reference, w L-1 , w
L + 1 is also indicated by a dashed line. For comparison, FIG.
Fig. 2 shows the weight in the conventional mipmap method.

【0033】ここで、図8及び図9に示すような加重の
特徴と、それにより生じる本発明の利点を説明する。
(a)まず、3つの加重のうち、高い階層(小さく縮小
された画像)の加重が負の値をとる。このように負の加
重を含むことにより、アンシャープマスクの効果が生
じ、エイリアシングとぼけの少ない、高解像度の補間結
果を得られる。(b)また、3つの加重の和が常に1
で、倍率が変化するに従い加重が徐々に変化する。透視
変換により、位置によって徐々に倍率が変化しても処理
内容が急激に変化することはないので、倍率の異なる部
分が滑らかに連続した結果を得られる。(c)階層内補
間は通常のミップマップ法と同じく4つの画素値を使っ
たバイリニア法であるため、3階層合計で12個の画素
値を参照することになる。これは、通常のミップマップ
法の8画素よりは多いが、各層でキュービックスプライ
ン法を使う場合の32画素よりも半分以下であるため、
計算コストはかなり低くなる。
Here, the features of the weighting as shown in FIGS. 8 and 9 and the resulting advantages of the present invention will be described.
(A) First, of the three weights, the weight of the higher hierarchy (small and reduced image) takes a negative value. By including the negative weight in this manner, the effect of the unsharp mask is generated, and a high-resolution interpolation result with less aliasing and blurring can be obtained. (B) The sum of the three weights is always 1
Thus, the weight gradually changes as the magnification changes. By the perspective transformation, even if the magnification gradually changes depending on the position, the processing content does not suddenly change, so that a result in which portions having different magnifications are smoothly continuous can be obtained. (C) Intra-hierarchical interpolation is a bilinear method using four pixel values in the same way as the normal mipmap method, and therefore refers to a total of 12 pixel values in three hierarchies. This is more than 8 pixels in the normal mipmap method, but less than half of 32 pixels when using the cubic spline method in each layer,
The computation cost is much lower.

【0034】《ステップS8》目的の変形画像の生成が
終了したか判定する。例えば、画素位置生成部102に
おいて、入力された出力画像(変形画像)のサイズ(高
さ、幅)に基づいて、生成すべき画素位置を全て生成し
たか判定する。生成すべき画素位置が残っている場合に
は(判定結果No)、処理はステップS4に戻る。生成
すべき画素位置が残っていない場合には(判定結果Ye
s)、目的の変形画像データ全体が変形画像記憶部10
6に得られたので、処理は次のステップS9に進む。
<< Step S8 >> It is determined whether the generation of the target deformed image has been completed. For example, the pixel position generation unit 102 determines whether all pixel positions to be generated have been generated based on the size (height, width) of the input output image (deformed image). If there is a pixel position to be generated (determination result No), the process returns to step S4. If there is no pixel position to be generated (determination result Ye
s) The entire target deformed image data is stored in the deformed image storage unit 10
6, the process proceeds to the next step S9.

【0035】《ステップS9》結果出力部107によっ
て、変形画像記憶部106に得られた変形画像データを
外部に出力する。
<Step S9> The result output unit 107 outputs the deformed image data obtained in the deformed image storage unit 106 to the outside.

【0036】以上説明した第1の実施例では、補間処理
に3階層の画像を使用し、階層内補間に4画素を使用し
たので、合計12個の加重和をとった。しかし、一般
に、倍率mが1より小さい場合、つまり縮小の場合は、
多少解像度が落ちても目立たないことが多い。そこで、
第2の実施例においては、拡大の場合のみアンシャープ
マスク効果を生じさせるため、2つの階層の画像だけを
使う。このようにしても、視覚的には高い効果が期待で
きる。
In the first embodiment described above, three hierarchical images are used for the interpolation processing, and four pixels are used for the intra-hierarchical interpolation. Therefore, a total of 12 weighted sums are obtained. However, in general, when the magnification m is smaller than 1, that is, when the magnification is reduced,
Even if the resolution is slightly lowered, it is often inconspicuous. Therefore,
In the second embodiment, in order to generate an unsharp mask effect only in the case of enlargement, only images of two layers are used. Even in this case, a visually high effect can be expected.

【0037】すなわち、第2の実施例においては、バイ
リニア補間部104(ステップS6)で、2つの階層
(L),(L+1)の画像だけを対象にして補間演算を行い、
加重和演算部105(ステップS7)で次式の加重和演
算を行う。
That is, in the second embodiment, the bilinear interpolation unit 104 (step S6)
Interpolation is performed only on the images (L) and (L + 1),
The weighted sum calculation unit 105 (step S7) performs the weighted sum calculation of the following equation.

【数16】 (Equation 16)

【0038】ただし、加重 wi は、以下の式に従い決
定する。
Here, the weight w i is determined according to the following equation.

【数17】 [Equation 17]

【数18】 (Equation 18)

【数19】 図11に、このような倍率と加重の関係を示す。この第
2の実施例においては、2つの階層の画像だけを使うた
め、通常のミップマップ法と同じく8画素の参照です
み、計算コストをさらに低く抑えることができ、かつ、
ぼけの目立つ、等倍から拡大の部分についてはアンシャ
ープマスク処理と同様の輪郭強調効果を得られる。
[Equation 19] FIG. 11 shows such a relationship between the magnification and the weight. In the second embodiment, since only two layers of images are used, only eight pixels need to be referenced as in the normal mipmap method, and the calculation cost can be further reduced.
For a portion where the blur is conspicuous and which is from the same size to the enlarged size, the same edge enhancement effect as in the unsharp mask processing can be obtained.

【0039】以上に説明した本発明は、例えば図12に
示すようなCPU200、メモリ201、ハードディス
ク装置202、ディスプレイ203、キーボードやマウ
スなどの入力装置204、プリンタ205、通信装置2
06、フロッピー(登録商標)ディスクやCD−ROM
等の記録媒体207の読み書きのための媒体駆動装置2
08等をバス209で接続した一般的な計算機システム
を利用し、ソフトウエアにより実施することもできる。
この場合、図2のフローチャートに示したような各処理
ステップをコンピュータに実施させるためのプログラ
ム、あるいは、図1に示したような各機能手段をコンピ
ュータ上に実現させるためのプログラムが、例えば、同
プログラムが記録された記録媒体207から媒体駆動装
置208を介して、又は、外部装置より通信装置206
を介して、ハードディスク装置202に読み込まれ、処
理実行時にハードディスク装置202からメモリ201
へロードされる。あるいは、同プログラムはメモリ20
1の一部を構成するROMに格納された形で実装され
る。
According to the present invention described above, for example, a CPU 200, a memory 201, a hard disk device 202, a display 203, an input device 204 such as a keyboard and a mouse, a printer 205, a communication device 2 as shown in FIG.
06, floppy (registered trademark) disk or CD-ROM
Drive 2 for reading and writing of recording medium 207 such as
08 and the like can be implemented by software using a general computer system connected by a bus 209.
In this case, a program for causing a computer to execute each processing step as shown in the flowchart of FIG. 2 or a program for realizing each functional unit as shown in FIG. From the recording medium 207 on which the program is recorded via the medium driving device 208 or from an external device, the communication device 206
Is read into the hard disk drive 202 via the hard disk drive 202, and is executed when the processing is executed.
Loaded into Alternatively, the program is stored in the memory 20
1 is implemented in a form stored in a ROM constituting a part of the ROM.

【0040】[0040]

【発明の効果】以上に説明したように、請求項1乃至9
の各項記載の発明によれば、低い計算コストで、エイリ
アシングとぼけが少ない補間を実現することが可能にな
り、また、請求項4、5、8又は9によれば、エイリア
シング及びぼけの少ない投影変換による変形画像の生成
が可能になり、特に、請求項5又は9記載の発明によれ
ば、倍率の異なる部分が滑らかに連続した変形画像を生
成することができる。また、請求項6記載の発明によれ
ば、上に述べたような補間及び変形画像生成を一般的な
コンピュータを使用して容易に実施可能になる等の効果
を得られる。
As described above, claims 1 to 9 are described.
According to the present invention, it is possible to realize interpolation with less aliasing and blurring at a low calculation cost, and according to claims 4, 5, 8 and 9, projection with less aliasing and blurring A transformed image can be generated by the conversion, and in particular, according to the invention described in claim 5 or 9, a transformed image in which portions having different magnifications are smoothly continuous can be generated. According to the sixth aspect of the present invention, it is possible to obtain the effect that the above-described interpolation and generation of the deformed image can be easily performed by using a general computer.

【図面の簡単な説明】[Brief description of the drawings]

【図1】本発明による画像処理装置の一例を示すブロッ
ク図である。
FIG. 1 is a block diagram illustrating an example of an image processing apparatus according to the present invention.

【図2】図1の画像処理装置における処理を説明するた
めのフローチャートである。
FIG. 2 is a flowchart for explaining processing in the image processing apparatus of FIG. 1;

【図3】原画像と、エイリアシングを生じた1/4縮小
画像を示す図である。
FIG. 3 is a diagram showing an original image and a 1/4 reduced image in which aliasing has occurred.

【図4】ぼけ画像の生成のための平滑化フィルタの係数
を示す図である。
FIG. 4 is a diagram illustrating coefficients of a smoothing filter for generating a blurred image.

【図5】輪郭強調フィルタの係数を示す図である。FIG. 5 is a diagram illustrating coefficients of an outline emphasis filter.

【図6】図3に示した原画像を縮小した、エイリアシン
グのない1/2縮小画像と1/4縮小画像を示す図であ
る。
6 is a diagram showing a 1/2 reduced image and a 1/4 reduced image without aliasing obtained by reducing the original image shown in FIG. 3;

【図7】注目画素位置の周辺倍率の計算の説明のための
図である。
FIG. 7 is a diagram for explaining calculation of a peripheral magnification of a target pixel position.

【図8】中間層に対する加重和演算のための加重と対数
倍率の関係を示す図である。
FIG. 8 is a diagram illustrating a relationship between weights for a weighted sum operation on an intermediate layer and logarithmic magnification.

【図9】最下層に対する加重和演算のための加重と対数
倍率の関係を示す図である。
FIG. 9 is a diagram illustrating a relationship between weights and a logarithmic magnification for a weighted sum operation with respect to the lowest layer.

【図10】従来のミップマップ処理で用いられた加重と
対数倍率の関係を示す図である。
FIG. 10 is a diagram showing the relationship between weight and logarithmic magnification used in conventional mipmap processing.

【図11】2つの階層を使用する場合の加重和演算のた
めの加重と対数倍率の関係を示す図である。
FIG. 11 is a diagram illustrating a relationship between weights and a logarithmic scaling factor for a weighted sum operation when two layers are used.

【図12】本発明をソフトウエアで実施するためのコン
ピュータの一例を示すブロック図である。
FIG. 12 is a block diagram showing an example of a computer for implementing the present invention by software.

【符号の説明】[Explanation of symbols]

100 縮小画像生成部 101 原画像・縮小画像記憶部 102 画素位置生成部 103 階層選択部 104 バイナリ補間部 105 加重和演算部 106 変形画像記憶部 107 結果出力部 108 原画像入力部 109 パラメータ入力部 Reference Signs List 100 Reduced image generation unit 101 Original image / reduced image storage unit 102 Pixel position generation unit 103 Hierarchical selection unit 104 Binary interpolation unit 105 Weighted sum calculation unit 106 Deformed image storage unit 107 Result output unit 108 Original image input unit 109 Parameter input unit

Claims (9)

【特許請求の範囲】[Claims] 【請求項1】 原画像と、それを縮小した詳細度の異な
る複数の画像の中から複数の画像を選択する第1のステ
ップと、選択された各画像に対する補間処理を行う第2
のステップと、得られた複数の補間結果の加重和演算を
行う第3のステップとを有し、前記加重和演算で使用さ
れる加重中に負の値が含まれることを特徴とする画像処
理方法。
1. A first step of selecting a plurality of images from an original image and a plurality of images obtained by reducing the original image and having different levels of detail, and a second step of performing an interpolation process on each of the selected images.
And a third step of performing a weighted sum operation on the obtained plurality of interpolation results, wherein a negative value is included in the weight used in the weighted sum operation. Method.
【請求項2】 3つ以上の画像に対し補間処理が行われ
ることを特徴とする請求項1記載の画像処理方法。
2. The image processing method according to claim 1, wherein interpolation processing is performed on three or more images.
【請求項3】 特定の詳細度の画像に対する補間結果に
対して、加重和演算で負の加重が使用されることを特徴
とする請求項1記載の画像処理方法。
3. The image processing method according to claim 1, wherein a negative weight is used in a weighted sum operation for an interpolation result for an image having a specific level of detail.
【請求項4】 変形パラメータに基づいて原画像を透視
変換により変形した画像上の各画素位置に対応する、原
画像上の画素位置を生成するとともに、その画素位置の
周辺の拡大/縮小倍率を求める第4のステップをさらに
有し、前記第1のステップは前記第4のステップで求め
られた拡大/縮小倍率に基づいて画像を選択し、前記第
2のステップは前記第4のステップで生成された画素位
置に対応した、選択された各画像の複数の画素値を用い
て補間演算を行い、前記加重和演算の結果として原画像
を透視変換により変形した画像の画素値が生成されるこ
とを特徴とする請求項1、2又は3記載の画像処理方
法。
4. Generating a pixel position on the original image corresponding to each pixel position on the image obtained by subjecting the original image to perspective transformation based on the transformation parameter, and setting an enlargement / reduction magnification around the pixel position. The method further includes a fourth step of obtaining, wherein the first step selects an image based on the enlargement / reduction magnification obtained in the fourth step, and the second step generates the image in the fourth step. And performing an interpolation operation using a plurality of pixel values of each selected image corresponding to the pixel position thus selected, and generating a pixel value of an image obtained by transforming the original image by perspective transformation as a result of the weighted sum operation. The image processing method according to claim 1, 2, or 3, wherein
【請求項5】 前記加重和演算に用いられる加重は、そ
の総和が常に1で、かつ、前記第4ステップで求められ
た拡大/縮小倍率が変化するに従い徐々に変化すること
を特徴とする請求項4記載の画像処理方法。
5. The weight used in the weighted sum calculation, the sum of the weights is always 1, and the weight gradually changes as the enlargement / reduction magnification obtained in the fourth step changes. Item 5. The image processing method according to Item 4.
【請求項6】 請求項1、2、3、4又は5記載の画像
処理方法の各ステップをコンピュータに実行させるため
のプログラムが記録されたことを特徴とするコンピュー
タ読み取り可能記録媒体。
6. A computer-readable recording medium on which a program for causing a computer to execute each step of the image processing method according to claim 1, 2, 3, 4, or 5 is recorded.
【請求項7】 入力された原画像を縮小した詳細度の異
なる複数の画像を生成する第1の手段、入力された原画
像及び生成された画像からなる複数階層の画像を記憶す
る第2の手段、前記第2手段に記憶されている画像の中
から複数の画像を選択する第3の手段、選択された各画
像に対し補間処理を行う第4の手段、得られた複数の補
間結果の加重和演算を行う第5の手段を具備し、前記加
重和演算で使用される加重中に負の値が含まれることを
特徴とする画像処理装置。
7. A first means for generating a plurality of images having different levels of detail obtained by reducing an input original image, and a second means for storing an image of a plurality of layers including the input original image and the generated image. Means, third means for selecting a plurality of images from among the images stored in the second means, fourth means for performing an interpolation process on each of the selected images, An image processing apparatus comprising: fifth means for performing a weighted sum operation, wherein the weight used in the weighted sum operation includes a negative value.
【請求項8】 入力された変形パラメータに基づいて原
画像を透視変換により変形した画像上の各画素位置に対
応する、原画像上の画素位置を生成するとともに、その
画素位置の周辺の拡大/縮小倍率を求める第6の手段を
さらに具備し、前記第3手段は前記第6手段で求められ
た拡大/縮小倍率に基づいて画像を選択し、前記第4手
段が前記第6手段で生成された画素位置に対応した、選
択された各画像の複数の画素値を用いて補間演算を行
い、前記加重和演算の結果として原画像を透視変換によ
り変形した画像の画素値が生成されることを特徴とする
請求項7記載の画像処理装置。
8. Generating a pixel position on the original image corresponding to each pixel position on the image obtained by transforming the original image by perspective transformation based on the input deformation parameters, and enlarging / enlarging the periphery of the pixel position. The image processing apparatus further includes a sixth unit for calculating a reduction ratio, wherein the third unit selects an image based on the enlargement / reduction ratio obtained by the sixth unit, and wherein the fourth unit is generated by the sixth unit. Interpolation operation is performed using a plurality of pixel values of each selected image corresponding to the pixel position thus selected, and as a result of the weighted sum operation, a pixel value of an image obtained by transforming the original image by perspective transformation is generated. The image processing apparatus according to claim 7, wherein:
【請求項9】 前記加重和演算に用いられる加重は、そ
の総和が常に1で、かつ、前記第6手段で求められた拡
大/縮小倍率が変化するに従い徐々に変化することを特
徴とする請求項8記載の画像処理装置。
9. The weight used for the weighted sum calculation, the sum of the weights is always 1, and the weight gradually changes as the enlargement / reduction ratio obtained by the sixth means changes. Item 10. The image processing device according to Item 8.
JP11216900A 1999-07-30 1999-07-30 Image processing method, device thereof and recording medium Pending JP2001043357A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP11216900A JP2001043357A (en) 1999-07-30 1999-07-30 Image processing method, device thereof and recording medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP11216900A JP2001043357A (en) 1999-07-30 1999-07-30 Image processing method, device thereof and recording medium

Publications (1)

Publication Number Publication Date
JP2001043357A true JP2001043357A (en) 2001-02-16

Family

ID=16695679

Family Applications (1)

Application Number Title Priority Date Filing Date
JP11216900A Pending JP2001043357A (en) 1999-07-30 1999-07-30 Image processing method, device thereof and recording medium

Country Status (1)

Country Link
JP (1) JP2001043357A (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100685858B1 (en) 2005-01-20 2007-02-22 (주)제이투엠소프트 Method And System For Revising Distance Distortion
KR100719976B1 (en) * 2003-04-24 2007-05-18 닛본 덴끼 가부시끼가이샤 Channel estimation circuit and channel estimation method
JP2007280267A (en) * 2006-04-11 2007-10-25 Matsushita Electric Ind Co Ltd Image processing method and image processor
JP2008269073A (en) * 2007-04-17 2008-11-06 Denso Corp Object detector for vehicle

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100719976B1 (en) * 2003-04-24 2007-05-18 닛본 덴끼 가부시끼가이샤 Channel estimation circuit and channel estimation method
KR100685858B1 (en) 2005-01-20 2007-02-22 (주)제이투엠소프트 Method And System For Revising Distance Distortion
JP2007280267A (en) * 2006-04-11 2007-10-25 Matsushita Electric Ind Co Ltd Image processing method and image processor
JP2008269073A (en) * 2007-04-17 2008-11-06 Denso Corp Object detector for vehicle

Similar Documents

Publication Publication Date Title
JP3276886B2 (en) Generating pixel values for enlarged destination images
US6943807B2 (en) Image processing apparatus and method, recording medium, and program thereof
EP1347410B1 (en) Edge-based enlargement and interpolation of images
US7043091B2 (en) Method and apparatus for increasing spatial resolution of an image
JP3549720B2 (en) Image processing device
KR100860968B1 (en) Image-resolution-improvement apparatus and method
JPH08294001A (en) Image processing method and image processing unit
JPH09149241A (en) Method and device for enlarging picture
JP3026706B2 (en) Image processing device
JP2001043357A (en) Image processing method, device thereof and recording medium
JP2000115526A (en) Picture processor and edge processing method
JP2000354244A (en) Image processing unit, its method and computer-readable storage medium
JP4265363B2 (en) Image processing device
WO2000075865A1 (en) Image processing method
JPH07105359A (en) Picture processor
JP3462957B2 (en) Image processing method
KR20070119482A (en) Image resampling method
JP3059287B2 (en) Binary image scaling device
CN116843555B (en) Image interpolation method, device, electronic equipment and storage medium
Morsy Comparison of commonly used non-adaptive image scaling techniques
JP2001177719A (en) Image processor and print system and image display system
Lee et al. A content-adaptive up-sampling technique for image resolution enhancement
JP4265362B2 (en) Image processing device
JP3054338B2 (en) Image processing apparatus and method
JP2001195571A (en) Device and method for processing image, and recording medium