JP6273764B2 - 画像処理装置 - Google Patents
画像処理装置 Download PDFInfo
- Publication number
- JP6273764B2 JP6273764B2 JP2013220169A JP2013220169A JP6273764B2 JP 6273764 B2 JP6273764 B2 JP 6273764B2 JP 2013220169 A JP2013220169 A JP 2013220169A JP 2013220169 A JP2013220169 A JP 2013220169A JP 6273764 B2 JP6273764 B2 JP 6273764B2
- Authority
- JP
- Japan
- Prior art keywords
- image processing
- initial value
- coordinate
- calculation unit
- image
- 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.)
- Active
Links
- 238000012545 processing Methods 0.000 title claims description 134
- 238000004364 calculation method Methods 0.000 claims description 137
- 238000006243 chemical reaction Methods 0.000 claims description 54
- 238000003384 imaging method Methods 0.000 claims description 31
- 238000012937 correction Methods 0.000 claims description 30
- 238000000034 method Methods 0.000 claims description 25
- 238000003702 image correction Methods 0.000 claims description 19
- 230000008569 process Effects 0.000 claims description 17
- 230000009466 transformation Effects 0.000 claims description 8
- 230000006870 function Effects 0.000 description 21
- 238000010586 diagram Methods 0.000 description 14
- 238000004891 communication Methods 0.000 description 11
- 230000004048 modification Effects 0.000 description 11
- 238000012986 modification Methods 0.000 description 11
- 230000008859 change Effects 0.000 description 7
- 230000005540 biological transmission Effects 0.000 description 4
- 230000003287 optical effect Effects 0.000 description 4
- 239000004065 semiconductor Substances 0.000 description 4
- 230000002411 adverse Effects 0.000 description 1
- 230000003111 delayed effect Effects 0.000 description 1
- 230000000694 effects Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T5/00—Image enhancement or restoration
- G06T5/80—Geometric correction
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T5/00—Image enhancement or restoration
- G06T5/20—Image enhancement or restoration using local operators
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/10—Image acquisition modality
- G06T2207/10004—Still image; Photographic image
- G06T2207/10012—Stereo images
Landscapes
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Image Processing (AREA)
- Closed-Circuit Television Systems (AREA)
- Facsimile Image Signal Circuits (AREA)
- Studio Devices (AREA)
Description
<システム構成>
図1は、本実施形態に係る画像処理システム1000aの構成例を示す図である。図1に示した画像処理システム1000aは、2つの撮像装置を備えたステレオカメラシステムとなっている。
図2は、本実施形態に係る画像処理装置100の構成例を示す図である。図2には、ステレオカメラシステムに対応する画像処理装置100の構成例が示されている。図2に示すように、本実施形態に係る画像処理装置100は、ステレオカメラの第1の撮像装置1301及び第2の撮像装置1302に対応するように、第1ラインバッファ101及び第2ラインバッファ102を備えている。また、本実施形態に係る画像処理装置100は、第1書き込みアドレス計算部111及び第2書き込みアドレス計算部112を備えている。本実施形態に係る画像処理装置100は、第1インターポレータ171及び第2インターポレータ172を備えている。
Addr_r=Addr_w−(Y−Y’+Δy)×Linepix−(X−X’+Δx) ・・・ (式1)
Addr_r:読み込みアドレス,Addr_w:書き込みアドレス
X,Y:入力側書き込み時の画素の座標値,X’,Y’:出力側読み込み時の画素の座標値
Δx,Δy:座標変換元の座標移動量
Linepix:1ラインのピクセル数(画素数)
本実施形態に係る画像処理機能について説明する。本実施形態に係る画像処理装置100は、画像補正の補正割合(画像をどのくらい補正するのか)に応じて係数を変化させた高次多項式により、漸化式に用いる初期値を、入力画像の主走査方向のラインごとに演算する。本実施形態に係る画像処理装置100は、演算した値を初期値とする漸化式により、座標変換時の座標変換量(座標移動量)を演算する。本実施形態に係る画像処理装置100は、このような画像処理機能を有している。
f(X)=cx(3)×X2+cx(4)×X×Y+cx(5)×Y2+cx(1)×X+cx(2)×Y+cx(0) ・・・ (式2)
X:X座標値,Y:Y座標値
cx(0)〜cx(5):X方向の高次多項式係数(画像補正の補正割合を定義する係数)
d0(1)=f(1) ・・・ (式3)
d1(1)=f(2)−f(1) ・・・ (式4)
d2=f(3)−2×f(2)+f(1) ・・・ (式5)
d0(1),d1(1),d2:漸化式の初期値
d0(k+1)=d0(k)+d1(k) ・・・ (式6)
d1(k+1)=d1(k)+d2 ・・・ (式7)
d0(k):座標変換量
k=1,2,,,,n−1,n:現在のY座標におけるX座標軸のライン上のピクセル
n=X座標軸(主走査方向)のライン上のピクセル数
fy(X)=cy(3)×X2+cy(4)×X×Y+cy(5)×Y2+cy(1)×X+cy(2)×Y+cy(0) ・・・ (式8)
X:X座標値,Y:Y座標値
cy(0)〜cy(5):Y方向の高次多項式係数(画像補正の補正割合を定義する係数)
d0y(1)=fy(1) ・・・ (式9)
d1y(1)=fy(2)−fy(1) ・・・ (式10)
d2y=fy(3)−2×fy(2)+fy(1) ・・・ (式11)
d0y(1),d1y(1),d2y:y方向の漸化式の初期値
d0y(k+1)=d0y(k)+d1y(k) ・・・ (式12)
d1y(k+1)=d1y(k)+d2y ・・・ (式13)
d0y(k):座標変換量
k=1,2,,,,n−1,n:現在のY座標におけるX座標軸のライン上のピクセル
n=X座標軸(主走査方向)のライン上のピクセル数
以上のように、本実施形態に係る画像処理装置100によれば、座標計算部15が、画像補正の補正割合に応じて係数を変化させた高次多項式により、漸化式に用いる初期値を、入力画像の主走査方向のラインごとに演算する。次に、座標計算部15が、画像補正の補正割合に応じて演算した値を初期値とする漸化式により、座標変換時の座標変換量(座標移動量)を演算する。
上記実施形態では、ステレオカメラシステムを例に説明を行ったが、この限りでない。例えば、撮像装置130を単体で備える画像処理システム1000であってもよい。
100 画像処理装置
110a 画像処理ユニット
115 視差演算装置
116 認識処理装置
117 機器制御ユニット
130 撮像装置
1301 第1の撮像装置
1302 第2の撮像装置
151 初期値演算部
152 漸化式演算部
1000、1000a 画像処理システム
Claims (11)
- 入力画像の座標変換時の座標変換量を演算するための漸化式の初期値を、前記入力画像の主走査方向のラインごとに、前記主走査方向の座標について前記漸化式を用いて演算し、副走査方向の座標について画像補正時の補正割合に応じて係数を変化させた高次多項式により演算し、該演算した値を元に、X方向の漸化式の係数を求める初期値演算部と、
演算された初期値を用いた前記漸化式により、前記座標変換量を演算する座標変換量演算部と、を備えることを特徴とする画像処理装置。 - 前記座標変換量演算部は、
演算された初期値を用いた前記漸化式により、前記座標変換量をピクセルごとに演算すること
を特徴とする請求項1に記載の画像処理装置。 - 前記初期値演算部の演算処理と前記座標変換量演算部の演算処理をパイプライン処理することを特徴とする請求項1に記載の画像処理装置。
- 前記初期値演算部は、
前記座標変換量演算部で、副走査方向のm番目のライン上の前記座標変換量を演算している間に、副走査方向のm+1番目のライン以降で前記漸化式の初期値を演算することを特徴とする請求項1に記載の画像処理装置。 - 前記初期値演算部は、
出力画像の開始の1ライン前から前記漸化式の初期値の演算を開始することを特徴とする請求項1に記載の画像処理装置。 - 前記座標変換量演算部は、
座標変換元の画像の有効画像範囲以外を参照する場合に、例外処理を行うことを特徴とする請求項1に記載の画像処理装置。 - 前記例外処理は、
対応する画素の画素値をゼロとして出力することを特徴とする請求項6に記載の画像処理装置。 - 前記入力画像は、
異なる撮像装置から入力された複数の入力画像であることを特徴とする請求項1に記載の画像処理装置。 - 前記初期値演算部は、
前記漸化式の初期値を、前記入力画像の主走査方向のラインごとに演算し、複数の前記入力画像に対して前記漸化式の初期値を逐次演算することを特徴とする請求項8に記載の画像処理装置。 - 前記座標変換量演算部は、
演算された初期値を用いた前記漸化式により、前記座標変換量をピクセルごとに演算し、複数の前記入力画像に対して前記座標変換量を並列演算することを特徴とする請求項8に記載の画像処理装置。 - 前記初期値演算部は、ソフトウェアの実行により実現し、前記座標変換量演算部は、ハードウェアの実装により実現することを特徴とする請求項1に記載の画像処理装置。
Priority Applications (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2013220169A JP6273764B2 (ja) | 2012-12-28 | 2013-10-23 | 画像処理装置 |
EP13198350.4A EP2752814B1 (en) | 2012-12-28 | 2013-12-19 | Image processing apparatus |
Applications Claiming Priority (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2012289044 | 2012-12-28 | ||
JP2012289044 | 2012-12-28 | ||
JP2013220169A JP6273764B2 (ja) | 2012-12-28 | 2013-10-23 | 画像処理装置 |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2014142917A JP2014142917A (ja) | 2014-08-07 |
JP6273764B2 true JP6273764B2 (ja) | 2018-02-07 |
Family
ID=49882851
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2013220169A Active JP6273764B2 (ja) | 2012-12-28 | 2013-10-23 | 画像処理装置 |
Country Status (2)
Country | Link |
---|---|
EP (1) | EP2752814B1 (ja) |
JP (1) | JP6273764B2 (ja) |
Families Citing this family (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP7210337B2 (ja) | 2019-03-14 | 2023-01-23 | 株式会社東芝 | 画像処理装置、及び、歪み補正係数算出方法 |
Family Cites Families (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7881563B2 (en) * | 2006-02-15 | 2011-02-01 | Nokia Corporation | Distortion correction of images using hybrid interpolation technique |
US20070211154A1 (en) * | 2006-03-13 | 2007-09-13 | Hesham Mahmoud | Lens vignetting correction algorithm in digital cameras |
JP4769880B2 (ja) | 2009-01-30 | 2011-09-07 | キヤノン株式会社 | 画像処理装置及び方法 |
JP2011114649A (ja) * | 2009-11-27 | 2011-06-09 | Sanyo Electric Co Ltd | 撮像装置 |
US8116587B2 (en) * | 2010-02-16 | 2012-02-14 | Ricoh Co., Ltd. | Method and apparatus for high-speed and low-complexity piecewise geometric transformation of signals |
EP2458842B1 (en) * | 2010-03-31 | 2013-12-25 | FUJIFILM Corporation | 3d-image capturing device |
JP2012147281A (ja) * | 2011-01-13 | 2012-08-02 | Ricoh Co Ltd | 画像処理装置 |
-
2013
- 2013-10-23 JP JP2013220169A patent/JP6273764B2/ja active Active
- 2013-12-19 EP EP13198350.4A patent/EP2752814B1/en not_active Not-in-force
Also Published As
Publication number | Publication date |
---|---|
EP2752814A3 (en) | 2014-10-22 |
JP2014142917A (ja) | 2014-08-07 |
EP2752814B1 (en) | 2019-03-06 |
EP2752814A2 (en) | 2014-07-09 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN109754434A (zh) | 相机标定方法、装置、用户设备及存储介质 | |
JP5602532B2 (ja) | 画像処理装置および画像処理方法 | |
JP2015015587A (ja) | 撮像装置およびその制御方法 | |
JP2004266750A (ja) | シェーディング補正方法および装置、並びにデジタルカメラ | |
JP5679763B2 (ja) | 半導体集積回路及び全周囲映像システム | |
JP6136190B2 (ja) | 画像処理装置、撮像装置 | |
US9269130B2 (en) | Image correction method using approximately non-linear regression approach and related image correction circuit | |
WO2023070862A1 (zh) | 校正广角镜头图像畸变的方法、装置及照相设备 | |
JP2010098662A (ja) | 撮像装置及び撮像装置の制御方法 | |
JP6273764B2 (ja) | 画像処理装置 | |
JP2010176547A (ja) | 画像処理装置に含まれる制御装置、制御方法、及び制御処理プログラム | |
JP6094224B2 (ja) | 画像処理装置 | |
JP6295619B2 (ja) | 画像処理装置及び方法、並びに電子機器 | |
JP2010177919A (ja) | 画像記録装置及び画像記録装置の製造装置 | |
WO2011161746A1 (ja) | 画像処理方法、プログラム、画像処理装置及び撮像装置 | |
JP5047912B2 (ja) | 車載用画像処理装置及びその画像処理方法 | |
JP6326914B2 (ja) | 補間装置及び補間方法 | |
TWI635746B (zh) | 扭曲畫面校正裝置及方法 | |
JP7020225B2 (ja) | 情報処理装置、情報処理方法及び情報処理プログラム | |
US10672107B2 (en) | Image processing apparatus and method of controlling the same | |
JP2017228849A (ja) | 画像処理装置、撮像装置、制御方法及びプログラム | |
JP6972089B2 (ja) | 画像処理装置、画像処理方法、及びプログラム | |
JP2013257665A (ja) | 映像処理装置、映像処理装置の制御方法 | |
JP4718618B2 (ja) | 信号処理装置 | |
JP4769880B2 (ja) | 画像処理装置及び方法 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20161013 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20170904 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20170912 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20171113 |
|
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: 20171212 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20171225 |
|
R151 | Written notification of patent or utility model registration |
Ref document number: 6273764 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R151 |