JP6040838B2 - デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム - Google Patents
デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム Download PDFInfo
- Publication number
- JP6040838B2 JP6040838B2 JP2013071993A JP2013071993A JP6040838B2 JP 6040838 B2 JP6040838 B2 JP 6040838B2 JP 2013071993 A JP2013071993 A JP 2013071993A JP 2013071993 A JP2013071993 A JP 2013071993A JP 6040838 B2 JP6040838 B2 JP 6040838B2
- Authority
- JP
- Japan
- Prior art keywords
- depth
- depth map
- distance
- image
- unit
- 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
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T15/00—Three-dimensional [3D] image rendering
- G06T15/08—Volume rendering
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T7/00—Image analysis
- G06T7/50—Depth or shape recovery
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04N—PICTORIAL COMMUNICATION, e.g. TELEVISION
- H04N13/00—Stereoscopic video systems; Multi-view video systems; Details thereof
- H04N13/20—Image signal generators
- H04N13/261—Image signal generators with monoscopic-to-stereoscopic image conversion
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; 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
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/20—Special algorithmic details
- G06T2207/20092—Interactive image processing based on input by user
- G06T2207/20104—Interactive definition of region of interest [ROI]
Landscapes
- Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Multimedia (AREA)
- Signal Processing (AREA)
- Computer Graphics (AREA)
- Processing Or Creating Images (AREA)
- Testing, Inspecting, Measuring Of Stereoscopic Televisions And Televisions (AREA)
- Image Analysis (AREA)
- Image Processing (AREA)
- Measurement Of Optical Distance (AREA)
Description
まず、デプスマップ加工部20によるレイヤ処理としてゲイン調整する例を説明する。ゲイン調整はオブジェクトの奥行き方向の厚みを調整する処理である。ゲインを上げるとオブジェクトが厚くなり、ゲインを下げるとオブジェクトが薄くなる。
次に、デプスマップ加工部20によるレイヤ処理としてオフセット調整する例を説明する。オフセット調整はオブジェクトの奥行き方向の位置を調整する処理である。正のオフセット値を加算するとオブジェクトが飛び出し方向に移動し、負のオフセット値を加算すると引っ込み方向に移動する。
次に、デプスマップ加工部20によるレイヤ処理としてグラデーションを付加する例を説明する。グラデーションの付加は、個々のオブジェクトの奥行きに傾斜を付ける処理である。
Slope:グラデーションの傾斜 [デプス値/画素]
Angle:グラデーションの画像に対する角度 [degree]
slope_x=slope*cosθ=slope*cos(2π*(Angle/360)) …式(1)
slope_y=slope*sinθ=slope*sin(2π*(Angle/360)) …式(2)
grad_depth_x=Slope_x*x_base …式(3)
grad_depth_y=Slope_y*y_base …式(4)
grad_depth=grad_depth_x+grad_depth_y …式(5)
Offset:グラデーションのオフセット
grad_offset_depth=grad_depth_x+grad_depth_y+Offset …式(6)
x=r*cosθ+x0 …式(7)
y=r*sinθ+y0 …式(8)
L=√((x1-x0)2+(y1-y0)2) …式(9)
また、このような偏心している探索円は、半径が大きくなるほど中心位置が所定方向にずれていく円とも言える。例えば、図27に示す例では、半径が大きくなるほど中心位置が左方向にずれていく複数の探索円となっている。
x = r*cos(θ*π/180)+x0
y = r*sin(θ*π/180)+y0 …式(10)
r:半径、θ:角度(degree)
x =r*cos(θ*π/180)+x0+Sx
y =r*sin(θ*π/180)+y0+Sy
Sx =r*Px
Sy =r*Py
Px=Dx*cos(DyθDx)
Py=Dy*sin(DyθDy)
DxθDy =tan-1(Dx/Dy) …式(11)
r:半径、θ:角度(degree)
Dx:水平方向の偏心比率(-1<Dx<+1)
Dy:垂直方向の偏心比率(-1<Dy<+1)
x=r*cos(θ*π/180)+x0
y=r*sin(θ*π/180)+y0 …式(12)
r::半径、θ:角度(degree)
x=Rx*r*cos(θ*π/180)+x0
y=Ry*r*sin(θ*π/180)+y0 …式(13)
r:半径、θ:角度(degree)
Rx:水平方向の楕円化比率(0<Rx<+1)
Ry:垂直方向の楕円化比率(0<Ry<+1)
x1=x-x0
y1=y- y0
x2=cos(rotθ)*x1-sin(rotθ)*y1
y2=sin(rotθ)*x1+cos(rotθ)*y1
x_rot = x2 + x0
y_rot = y2 + y0 …式(14)
rotθ:探索円の傾斜角
(x1,y1):座標軸を傾斜させる前の探索円の(x0,y0)を基準としたオフセット座標
(x2,y2):座標軸を傾斜させた後の探索円の(x0,y0)を基準としたオフセット座標
Claims (10)
- 対象画像内のオブジェクトの輪郭を特定する輪郭特定部と、
前記オブジェクトの領域内の対象画素と、前記輪郭との距離を求める距離特定部と、
前記距離に応じて前記対象画素のデプス値を決定するデプス値決定部と、を備え、
前記距離特定部は、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索する、
ことを特徴とするデプス推定装置。 - 前記距離特定部は、前記探索円を、外部設定されるパラメータに応じて変形可能なことを特徴とする請求項1に記載のデプス推定装置。
- 前記パラメータは、偏心率、楕円化率、楕円化した場合の楕円の傾斜角の内、少なくとも一つを含むことを特徴とする請求項2に記載のデプス推定装置。
- 前記距離特定部は、前記オブジェクトを、外部設定されるパラメータに応じて変形可能なことを特徴とする請求項1に記載のデプス推定装置。
- 前記デプス値決定部により決定された前記オブジェクトのデプスマップに基づくエンボスパターンを、写像関数または数値変換テーブルを用いて、レベル変換するレベル変換部を、さらに備える、
ことを特徴とする請求項1から4のいずれかに記載のデプス推定装置。 - 入力画像とデプスモデルをもとに、前記入力画像のデプスマップを生成するデプスマップ生成部と、
前記入力画像内のオブジェクトのエンボスパターンを生成するボリュームエンボス生成部と、
前記デプスマップ生成部により生成されたデプスマップにおける、前記オブジェクトに対応する領域を加工するデプスマップ加工部と、
前記入力画像、及び前記デプスマップ加工部により加工されたデプスマップをもとに、別視点の画像を生成する画像生成部と、を備え、
前記ボリュームエンボス生成部は、
前記オブジェクトの輪郭を特定する輪郭特定部と、
前記オブジェクト内の対象画素と、前記輪郭との距離を求める距離特定部と、
前記距離に応じて前記対象画素のデプス値を決定するデプス値決定部と、を有し、
前記距離特定部は、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索し、
前記ボリュームエンボス生成部は、前記デプス値決定部によって決定したデプス値に基づいて前記エンボスパターンを生成し、
前記デプスマップ加工部は、前記エンボスパターンを使用して前記デプスマップの前記オブジェクトに対応する領域にエンボスを付加することを特徴とする画像処理装置。 - 対象画像内のオブジェクトの輪郭を特定するステップと、
前記オブジェクトの領域内の対象画素と、前記輪郭との距離を求めるステップと、
前記距離に応じて前記対象画素のデプス値を決定するステップと、を有し、
前記輪郭との距離を求めるステップは、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索する、
ことを特徴とするデプス推定方法。 - 入力画像とデプスモデルをもとに、前記入力画像のデプスマップを生成するステップと、
前記入力画像内のオブジェクトのエンボスパターンを生成するステップと、
生成されたデプスマップにおける、前記オブジェクトに対応する領域を加工するステップと、
前記入力画像、及び加工されたデプスマップをもとに、別視点の画像を生成するステップと、を有し、
前記エンボスパターンを生成するステップは、
前記オブジェクトの輪郭を特定するステップと、
前記オブジェクト内の対象画素と、前記輪郭との距離を求めるステップと、
前記距離に応じて前記対象画素のデプス値を決定するステップと、を含み、
前記輪郭との距離を求めるステップは、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索し、
前記エンボスパターンを生成するステップは、前記デプス値を決定するステップによって決定したデプス値に基づいて前記エンボスパターンを生成し、
前記デプスマップを加工するステップは、前記エンボスパターンを使用して前記デプスマップの前記オブジェクトに対応する領域にエンボスを付加する、
ことを特徴とする画像処理方法。 - 対象画像内のオブジェクトの輪郭を特定する処理と、
前記オブジェクトの領域内の対象画素と、前記輪郭との距離を求める処理と、
前記距離に応じて前記対象画素のデプス値を決定する処理と、をコンピュータに実行させ、
前記輪郭との距離を求める処理は、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索する、
ことを特徴とするデプス推定プログラム。 - 入力画像とデプスモデルをもとに、前記入力画像のデプスマップを生成する処理と、
前記入力画像内のオブジェクトのエンボスパターンを生成する処理と、
生成されたデプスマップにおける、前記オブジェクトに対応する領域を加工する処理と、
前記入力画像、及び加工されたデプスマップをもとに、別視点の画像を生成する処理と、をコンピュータに実行させ、
前記エンボスパターンを生成する処理は、
前記オブジェクトの輪郭を特定する処理と、
前記オブジェクト内の対象画素と、前記輪郭との距離を求める処理と、
前記距離に応じて前記対象画素のデプス値を決定する処理と、を含み、
前記輪郭との距離を求める処理は、前記対象画素の位置を中心にして、当該中心から同心円状に広がる探索円を用いて、前記オブジェクトの領域内の画素に対してのみ、前記輪郭との距離が最短となる接点を探索する、
前記エンボスパターンを生成する処理は、前記デプス値を決定する処理によって決定したデプス値に基づいて前記エンボスパターンを生成し、
前記デプスマップを加工する処理は、前記エンボスパターンを使用して前記デプスマップの前記オブジェクトに対応する領域にエンボスを付加する、
ことを特徴とする画像処理プログラム。
Priority Applications (4)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| JP2013071993A JP6040838B2 (ja) | 2012-08-29 | 2013-03-29 | デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム |
| US13/955,756 US20140063018A1 (en) | 2012-08-29 | 2013-07-31 | Depth estimation device, depth estimation method, depth estimation program, image processing device, image processing method, and image processing program |
| EP13020075.1A EP2704097A3 (en) | 2012-08-29 | 2013-08-02 | Depth estimation device, depth estimation method, depth estimation program, image processing device, image processing method, and image processing program |
| CN201310343868.7A CN103686125B (zh) | 2012-08-29 | 2013-08-08 | 深度推测装置、方法及图像处理装置、方法 |
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| JP2012189178 | 2012-08-29 | ||
| JP2012189178 | 2012-08-29 | ||
| JP2013071993A JP6040838B2 (ja) | 2012-08-29 | 2013-03-29 | デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| JP2014063470A JP2014063470A (ja) | 2014-04-10 |
| JP6040838B2 true JP6040838B2 (ja) | 2016-12-07 |
Family
ID=48979517
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| JP2013071993A Active JP6040838B2 (ja) | 2012-08-29 | 2013-03-29 | デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US20140063018A1 (ja) |
| EP (1) | EP2704097A3 (ja) |
| JP (1) | JP6040838B2 (ja) |
| CN (1) | CN103686125B (ja) |
Families Citing this family (47)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US9568713B2 (en) | 2013-01-05 | 2017-02-14 | Light Labs Inc. | Methods and apparatus for using multiple optical chains in parallel to support separate color-capture |
| US9667947B2 (en) * | 2013-02-25 | 2017-05-30 | The United States of America represented by the Secretary of the Air Force | Stereoscopic 3-D presentation for air traffic control digital radar displays |
| GB2519112A (en) * | 2013-10-10 | 2015-04-15 | Nokia Corp | Method, apparatus and computer program product for blending multimedia content |
| US9374514B2 (en) | 2013-10-18 | 2016-06-21 | The Lightco Inc. | Methods and apparatus relating to a camera including multiple optical chains |
| US9549127B2 (en) | 2013-10-18 | 2017-01-17 | Light Labs Inc. | Image capture control methods and apparatus |
| US9423588B2 (en) | 2013-10-18 | 2016-08-23 | The Lightco Inc. | Methods and apparatus for supporting zoom operations |
| US9736365B2 (en) | 2013-10-26 | 2017-08-15 | Light Labs Inc. | Zoom related methods and apparatus |
| US9467627B2 (en) | 2013-10-26 | 2016-10-11 | The Lightco Inc. | Methods and apparatus for use with multiple optical chains |
| US9426365B2 (en) | 2013-11-01 | 2016-08-23 | The Lightco Inc. | Image stabilization related methods and apparatus |
| US9554031B2 (en) | 2013-12-31 | 2017-01-24 | Light Labs Inc. | Camera focusing related methods and apparatus |
| US10931866B2 (en) | 2014-01-05 | 2021-02-23 | Light Labs Inc. | Methods and apparatus for receiving and storing in a camera a user controllable setting that is used to control composite image generation performed after image capture |
| US9979878B2 (en) | 2014-02-21 | 2018-05-22 | Light Labs Inc. | Intuitive camera user interface methods and apparatus |
| US9462170B2 (en) | 2014-02-21 | 2016-10-04 | The Lightco Inc. | Lighting methods and apparatus |
| EP3164831A4 (en) | 2014-07-04 | 2018-02-14 | Light Labs Inc. | Methods and apparatus relating to detection and/or indicating a dirty lens condition |
| US10110794B2 (en) | 2014-07-09 | 2018-10-23 | Light Labs Inc. | Camera device including multiple optical chains and related methods |
| WO2016061565A1 (en) | 2014-10-17 | 2016-04-21 | The Lightco Inc. | Methods and apparatus for using a camera device to support multiple modes of operation |
| EP3235243A4 (en) | 2014-12-17 | 2018-06-20 | Light Labs Inc. | Methods and apparatus for implementing and using camera devices |
| CN105791663B (zh) * | 2014-12-24 | 2018-01-16 | 光宝科技股份有限公司 | 距离估算系统及距离估算方法 |
| US9544503B2 (en) * | 2014-12-30 | 2017-01-10 | Light Labs Inc. | Exposure control methods and apparatus |
| US9824427B2 (en) | 2015-04-15 | 2017-11-21 | Light Labs Inc. | Methods and apparatus for generating a sharp image |
| US10091447B2 (en) | 2015-04-17 | 2018-10-02 | Light Labs Inc. | Methods and apparatus for synchronizing readout of multiple image sensors |
| US10075651B2 (en) | 2015-04-17 | 2018-09-11 | Light Labs Inc. | Methods and apparatus for capturing images using multiple camera modules in an efficient manner |
| US9967535B2 (en) | 2015-04-17 | 2018-05-08 | Light Labs Inc. | Methods and apparatus for reducing noise in images |
| US9857584B2 (en) | 2015-04-17 | 2018-01-02 | Light Labs Inc. | Camera device methods, apparatus and components |
| US9930233B2 (en) | 2015-04-22 | 2018-03-27 | Light Labs Inc. | Filter mounting methods and apparatus and related camera apparatus |
| US10129483B2 (en) | 2015-06-23 | 2018-11-13 | Light Labs Inc. | Methods and apparatus for implementing zoom using one or more moveable camera modules |
| US10491806B2 (en) | 2015-08-03 | 2019-11-26 | Light Labs Inc. | Camera device control related methods and apparatus |
| US10365480B2 (en) | 2015-08-27 | 2019-07-30 | Light Labs Inc. | Methods and apparatus for implementing and/or using camera devices with one or more light redirection devices |
| US10051182B2 (en) | 2015-10-05 | 2018-08-14 | Light Labs Inc. | Methods and apparatus for compensating for motion and/or changing light conditions during image capture |
| US9749549B2 (en) | 2015-10-06 | 2017-08-29 | Light Labs Inc. | Methods and apparatus for facilitating selective blurring of one or more image portions |
| US10003738B2 (en) | 2015-12-18 | 2018-06-19 | Light Labs Inc. | Methods and apparatus for detecting and/or indicating a blocked sensor or camera module |
| US10225445B2 (en) | 2015-12-18 | 2019-03-05 | Light Labs Inc. | Methods and apparatus for providing a camera lens or viewing point indicator |
| US10306218B2 (en) | 2016-03-22 | 2019-05-28 | Light Labs Inc. | Camera calibration apparatus and methods |
| US9948832B2 (en) | 2016-06-22 | 2018-04-17 | Light Labs Inc. | Methods and apparatus for synchronized image capture in a device including optical chains with different orientations |
| US10735707B2 (en) * | 2017-08-15 | 2020-08-04 | International Business Machines Corporation | Generating three-dimensional imagery |
| CN110326028A (zh) * | 2018-02-08 | 2019-10-11 | 深圳市大疆创新科技有限公司 | 图像处理的方法、装置、计算机系统和可移动设备 |
| JP7418074B2 (ja) * | 2018-12-26 | 2024-01-19 | キヤノン株式会社 | 画像処理装置、画像処理方法、及びプログラム |
| US10872459B2 (en) | 2019-02-05 | 2020-12-22 | X Development Llc | Scene recognition using volumetric substitution of real world objects |
| EP3869395B1 (en) * | 2020-02-21 | 2025-06-04 | Accenture Global Solutions Limited | Identity and liveness verification |
| JP7746006B2 (ja) * | 2020-11-27 | 2025-09-30 | キヤノン株式会社 | 画像処理装置、画像処理方法及びプログラム |
| CN112686937B (zh) * | 2020-12-25 | 2024-05-31 | 杭州海康威视数字技术股份有限公司 | 一种深度图像的生成方法、装置及设备 |
| CN112819878B (zh) * | 2021-01-28 | 2023-01-31 | 北京市商汤科技开发有限公司 | 一种深度检测方法、装置、计算机设备和存储介质 |
| US11836218B2 (en) | 2021-08-18 | 2023-12-05 | Zebra Technologies Corporation | System and method for object detection and dimensioning |
| CN115731554A (zh) * | 2021-08-31 | 2023-03-03 | 顺丰科技有限公司 | 快件面单识别方法、装置、计算机设备及存储介质 |
| CN113962274B (zh) * | 2021-11-18 | 2022-03-08 | 腾讯科技(深圳)有限公司 | 一种异常识别方法、装置、电子设备及存储介质 |
| CN114359361B (zh) * | 2021-12-28 | 2025-04-22 | Oppo广东移动通信有限公司 | 深度估计方法、装置、电子设备和计算机可读存储介质 |
| JP7711641B2 (ja) * | 2022-06-28 | 2025-07-23 | トヨタ自動車株式会社 | 送信装置及び受信装置 |
Family Cites Families (10)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JP3884901B2 (ja) * | 2000-07-19 | 2007-02-21 | 東京電力株式会社 | データ配置方法および2次元図面データ処理システム |
| JP3766878B2 (ja) * | 2001-02-20 | 2006-04-19 | 独立行政法人 国立印刷局 | 立体データ作成方法及びそれを用いた線画レリーフ模様作成方法 |
| JP2007529070A (ja) * | 2004-03-12 | 2007-10-18 | コーニンクレッカ フィリップス エレクトロニクス エヌ ヴィ | 奥行きマップの生成方法及び装置 |
| US7262767B2 (en) * | 2004-09-21 | 2007-08-28 | Victor Company Of Japan, Limited | Pseudo 3D image creation device, pseudo 3D image creation method, and pseudo 3D image display system |
| CN101542529B (zh) * | 2006-11-21 | 2012-10-03 | 皇家飞利浦电子股份有限公司 | 图像的深度图的生成方法和图像处理单元 |
| US8463019B2 (en) * | 2007-07-19 | 2013-06-11 | JVC Kenwood Corporation | Pseudo 3D image generation device, image encoding device, image encoding method, image transmission method, image decoding device, and image decoding method |
| CN101593349B (zh) * | 2009-06-26 | 2012-06-13 | 福州华映视讯有限公司 | 将二维影像转换为三维影像的方法 |
| EP2633688B1 (en) * | 2010-10-29 | 2018-05-02 | Thomson Licensing DTV | Method for generation of three-dimensional images encrusting a graphic object in the image and an associated display device |
| CN102307310B (zh) * | 2011-08-23 | 2014-10-29 | 威盛电子股份有限公司 | 影像深度估计方法及其装置 |
| US9471988B2 (en) * | 2011-11-02 | 2016-10-18 | Google Inc. | Depth-map generation for an input image using an example approximate depth-map associated with an example similar image |
-
2013
- 2013-03-29 JP JP2013071993A patent/JP6040838B2/ja active Active
- 2013-07-31 US US13/955,756 patent/US20140063018A1/en not_active Abandoned
- 2013-08-02 EP EP13020075.1A patent/EP2704097A3/en not_active Withdrawn
- 2013-08-08 CN CN201310343868.7A patent/CN103686125B/zh active Active
Also Published As
| Publication number | Publication date |
|---|---|
| EP2704097A2 (en) | 2014-03-05 |
| CN103686125B (zh) | 2016-08-10 |
| JP2014063470A (ja) | 2014-04-10 |
| CN103686125A (zh) | 2014-03-26 |
| EP2704097A3 (en) | 2017-11-08 |
| US20140063018A1 (en) | 2014-03-06 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| JP6040838B2 (ja) | デプス推定装置、デプス推定方法、デプス推定プログラム、画像処理装置、画像処理方法及び画像処理プログラム | |
| US10652522B2 (en) | Varying display content based on viewpoint | |
| JP4473754B2 (ja) | 仮想試着装置 | |
| JP5818773B2 (ja) | 画像処理装置、画像処理方法及びプログラム | |
| EP3139589B1 (en) | Image processing apparatus and image processing method | |
| US20190362539A1 (en) | Environment Synthesis for Lighting An Object | |
| Rivers et al. | Sculpting by numbers | |
| JP2013235537A (ja) | 画像作成装置、画像作成プログラム、及び記録媒体 | |
| JP5303692B1 (ja) | 立体画像処理装置及び立体画像処理方法 | |
| JP6131843B2 (ja) | デプス推定装置、デプス推定方法、デプス推定プログラム、及び画像処理装置 | |
| JP2005275646A (ja) | 3次元描画モデル生成方法、3次元モデル描画方法及びそのプログラム | |
| WO2020134925A1 (zh) | 人脸图像的光照检测方法、装置、设备和存储介质 | |
| US12020363B2 (en) | Surface texturing from multiple cameras | |
| US11682234B2 (en) | Texture map generation using multi-viewpoint color images | |
| CN109461197B (zh) | 一种基于球面uv和重投影的云实时绘制优化方法 | |
| CN102792337B (zh) | 用于生成数字图片的方法和装置 | |
| US11120606B1 (en) | Systems and methods for image texture uniformization for multiview object capture | |
| JP5807569B2 (ja) | 画像処理装置、画像処理方法及び画像処理プログラム | |
| JP5887966B2 (ja) | 画像処理装置、画像処理方法及び画像処理プログラム | |
| JP5807570B2 (ja) | 画像処理装置、画像処理方法及び画像処理プログラム | |
| JP5807571B2 (ja) | 画像処理装置、画像処理方法及び画像処理プログラム | |
| JP3648099B2 (ja) | 画像合成表示方法および装置ならびに画像合成表示プログラムを記録した記録媒体 | |
| Ji et al. | Improved gloss depiction using the empirical highlight un-distortion method for 3D image-warping-based stereo rendering | |
| Pepperell et al. | The Art and Science of Displaying Visual Space | |
| Li et al. | Digital engraving halftone screen algorithm design |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20151029 |
|
| A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20160825 |
|
| A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20160830 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20160921 |
|
| 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: 20161011 |
|
| A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20161024 |
|
| R150 | Certificate of patent or registration of utility model |
Ref document number: 6040838 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |