JP6101209B2 - コンピュータ断層撮影(ct)のための逆投影の最適化実装 - Google Patents
コンピュータ断層撮影(ct)のための逆投影の最適化実装 Download PDFInfo
- Publication number
- JP6101209B2 JP6101209B2 JP2013550621A JP2013550621A JP6101209B2 JP 6101209 B2 JP6101209 B2 JP 6101209B2 JP 2013550621 A JP2013550621 A JP 2013550621A JP 2013550621 A JP2013550621 A JP 2013550621A JP 6101209 B2 JP6101209 B2 JP 6101209B2
- Authority
- JP
- Japan
- Prior art keywords
- weight table
- downsampled
- weight
- computed tomography
- perspective geometry
- 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
- 238000002591 computed tomography Methods 0.000 title claims description 70
- 238000000034 method Methods 0.000 claims description 41
- 230000008569 process Effects 0.000 claims description 14
- 238000012545 processing Methods 0.000 claims description 11
- 238000005070 sampling Methods 0.000 claims description 4
- 238000007476 Maximum Likelihood Methods 0.000 claims description 3
- 239000011159 matrix material Substances 0.000 description 12
- 230000005855 radiation Effects 0.000 description 8
- HPTJABJPZMULFH-UHFFFAOYSA-N 12-[(Cyclohexylcarbamoyl)amino]dodecanoic acid Chemical compound OC(=O)CCCCCCCCCCCNC(=O)NC1CCCCC1 HPTJABJPZMULFH-UHFFFAOYSA-N 0.000 description 7
- 238000004364 calculation method Methods 0.000 description 6
- 230000008859 change Effects 0.000 description 6
- 230000006870 function Effects 0.000 description 6
- 230000005055 memory storage Effects 0.000 description 6
- 230000008901 benefit Effects 0.000 description 3
- 238000003325 tomography Methods 0.000 description 3
- 238000012952 Resampling Methods 0.000 description 2
- 238000010187 selection method Methods 0.000 description 2
- 238000009825 accumulation Methods 0.000 description 1
- 230000002411 adverse Effects 0.000 description 1
- 238000013459 approach Methods 0.000 description 1
- 230000006399 behavior Effects 0.000 description 1
- 238000003384 imaging method Methods 0.000 description 1
- 238000005259 measurement Methods 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 230000000737 periodic effect Effects 0.000 description 1
- 230000009467 reduction Effects 0.000 description 1
- 239000011800 void material Substances 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T11/00—2D [Two Dimensional] image generation
- G06T11/003—Reconstruction from projections, e.g. tomography
- G06T11/006—Inverse problem, transformation from projection-space into object-space, e.g. transform methods, back-projection, algebraic methods
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2211/00—Image generation
- G06T2211/40—Computed tomography
- G06T2211/421—Filtered back projection [FBP]
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2211/00—Image generation
- G06T2211/40—Computed tomography
- G06T2211/428—Real-time
Landscapes
- Physics & Mathematics (AREA)
- Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Algebra (AREA)
- Mathematical Analysis (AREA)
- Mathematical Optimization (AREA)
- Mathematical Physics (AREA)
- Pure & Applied Mathematics (AREA)
- Apparatus For Radiation Diagnosis (AREA)
Description
(0.5*W31+0.5*W33)である。
texture<float, 2, cudaReadModeElementType> downsampledWeightTexture;
// Kernel definition
__global__ void interpolateWeight(float* full_resolution_weight, int downsample, int size)
{
// 正規化テクスチャ座標を計算。
unsigned int x = blockIdx.x * blockDim.x + threadIdx.x;
unsigned int y = blockIdx.y * blockDim.y + threadIdx.y;
float u = x / (float)downsample;
float v = y / (float)downsample;
if(y<size && x<size)
full_resolution_weight[y * size + x] = tex2D(downsampledWeightTexture, u,
v);
}
}
Y j 0 <= j < Ny は、所与のスライスに関するボクセルのYインデックスを定義し、ここで、Nyはyにおけるボクセル数である。
Zk 0 <= k < Nz は、Zインデックス(またはスライス)を定義し、ここで、Nzはzにおけるボクセル(またはスライス)数である。
V l 0<= l< Nvは、検出器における行インデックスを定義し、ここで、Nvは検出器の行の数である。
U m 0<= m < Nuは、検出器における列インデックスを定義し、ここで、Nuは検出器の列の数である。
αn 0<= n < Nαは、投影インデックスを定義し、ここで、Nαは1つのスライスに寄与する投影の数である。
Vol(Zk, Yj, Xi)は再構築される体積である。
P(z, α,Um, Vl)は、u,v グリッドにおける検出器からの二次元生データである。
U(z, α, y, x)は、各エレメントが、U(Zk, αn, Y j, Xi)を選択することによって得られる位置を定義する。所与のZk, αn,に関し、この位置は二次元テーブルである。
V(Zk, αn, Y j, Xi)を選択することによって各エレメントが得られる位置V(z, α, y,
x)。所与のZk, αn,に関し、この位置は二次元テーブルである。
W(Zk, αn, Y j, Xi)を選択することによって各エレメントが得られる位置W(z, α, y,
x)。所与のZk, αn,に関し、この位置は二次元テーブルである。
For each (Zk)
For
each project(αn)
For each Yj
For each Xi
Vol(Zk, Yj, Xi) = Vol(Zk, Yj, Zi)
+ W(Zk, αn, Yj, Xi) * P(Zk, αn, V(z, α,
y, x), U(z, α, y, x));
End
End
End
End
For each (Zk)
For
each project(αn)
// 二次元位置および重み行列への2つの参照(ポインタ)を得る。
WW4 = W4(Zk, αn, :, :); # 二次元行列の開始点のみを得る。
UU4 = U4(Zk, αn, :,: )
VV4 = V4(Zk, αn, :,: )
For each Yj
For each Xi
U = interp(WW4, Yj, Xi);
V = interp(UU4, Yj, Xi);
WT = interp(WW4, Yj,Xi);
Vol(Zk, Yj, Xi) = Vol(Zk, Yj, Zi)
+ WT * P(Zk,
αn, V, U);
End
End
End
End
Claims (16)
- コンピュータ断層撮影装置に関連付けられた透視幾何学的形状データおよび重みテーブルをダウンサンプリングしかつ復元するためのコンピュータ実装方法であって、
前記コンピュータ断層撮影装置に関連付けられた透視幾何学的形状データを生成する段階と、
前記コンピュータ断層撮影装置に関連付けられた重みテーブルを生成する段階と、
格納するデータの量を減少させるために、前記重みテーブルおよび前記透視幾何学的形状データをダウンサンプリングする段階と、
前記コンピュータ断層撮影装置に関連付けられた前記ダウンサンプリングされた透視幾何学的形状データおよび前記ダウンサンプリングされた重みテーブルを記憶装置に格納する段階と、
前記コンピュータ断層撮影装置を用いて走査された物体の断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを、それぞれ前記ダウンサンプリングされた透視幾何学的形状および前記ダウンサンプリングされた重みテーブルから、計算処理装置を用いて補間によって再構築する段階とを含み、
前記計算処理装置がグラフィック処理ユニット(GPU)であり、
前記ダウンサンプリングされた重みテーブルが、前記GPUによってテクスチャ表面として格納される、コンピュータ実装方法。 - 前記断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを用いて前記物体の三次元断層撮影体積を生成する段階をさらに含む、請求項1に記載の方法。
- 前記三次元断層撮影体積は、逆投影法、代数的再構築手法(ART)、または最尤推定-期待値最大化(MLEM)法を用いて生成される、請求項2に記載の方法。
- 前記重みテーブルは二次元テーブルである、請求項1に記載の方法。
- 前記重みテーブルは、コンピュータ断層撮影のために走査される前記物体の幾何学的形状内部の各ボクセルに関する重みを含む、請求項1に記載の方法。
- 任意のボクセルに関する前記重みは、前記ボクセルから前記コンピュータ断層撮影に用いられるエネルギー源への距離と、前記ボクセルから前記コンピュータ断層撮影に用いられる検出器への距離との比に等しい、請求項5に記載の方法。
- 前記ダウンサンプリングされた重みテーブルは、双一次ダウンサンプリング、バイキュービックダウンサンプリング、または周波数領域におけるダウンサンプリングの1つまたは複数を用いて前記重みテーブルから計算される、請求項1に記載の方法。
- プロセッサであって、
コンピュータ断層撮影装置に関連付けられた透視幾何学的形状を生成し、
前記コンピュータ断層撮影装置に関連付けられた重みテーブルを生成し、
格納するデータの量を減少させるために、前記重みテーブルおよび前記透視幾何学的形状データをダウンサンプリングし、
前記コンピュータ断層撮影装置に関連付けられた前記ダウンサンプリングされた透視幾何学的形状データおよび前記ダウンサンプリングされた重みテーブルを記憶装置に格納し、
前記コンピュータ断層撮影装置を用いて走査された物体の断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを、それぞれ前記ダウンサンプリングされた透視幾何学的形状および前記ダウンサンプリングされた重みテーブルから補間によって再構築するプロセッサを含み、
前記プロセッサがグラフィック処理ユニット(GPU)であり、
前記ダウンサンプリングされた重みテーブルが、前記GPUによってテクスチャ表面として格納される、システム。 - 前記プロセッサが、前記断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを用いて前記物体の三次元断層撮影体積をさらに生成する、請求項8に記載のシステム。
- 前記三次元断層撮影体積は、逆投影法、代数的再構築手法(ART)、または最尤推定-期待値最大化(MLEM)法を用いて生成される、請求項9に記載のシステム。
- 前記重みテーブルは二次元テーブルである、請求項8に記載のシステム。
- 前記重みテーブルは、コンピュータ断層撮影のために走査される前記物体の幾何学的形状内部の各ボクセルに関する重みを含む、請求項8に記載のシステム。
- 任意のボクセルに関する前記重みは、前記ボクセルから前記コンピュータ断層撮影に用いられるエネルギー源への距離と、前記ボクセルから前記コンピュータ断層撮影に用いられる検出器への距離との比に等しい、請求項12に記載のシステム。
- 前記ダウンサンプリングされた重みテーブルは、双一次ダウンサンプリング、バイキュービックダウンサンプリング、または周波数領域におけるダウンサンプリングの1つまたは複数を用いて前記重みテーブルから計算される、請求項8に記載のシステム。
- コンピュータ上で実行されると、コンピュータ断層撮影装置に関連付けられた透視幾何学的形状データおよび重みテーブルをダウンサンプリングしかつ復元する命令を格納するための非一時的なコンピュータ可読媒体であって、
前記コンピュータ断層撮影装置に関連付けられた透視幾何学的形状データを生成し、
前記コンピュータ断層撮影装置に関連付けられた重みテーブルを生成し、
格納するデータの量を減少させるために、前記重みテーブルおよび前記透視幾何学的形状データをダウンサンプリングし、
前記コンピュータ断層撮影装置に関連付けられた前記ダウンサンプリングされた透視幾何学的形状データおよび前記ダウンサンプリングされた重みテーブルを記憶装置に格納し、
前記コンピュータ断層撮影装置を用いて走査された物体の断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを、それぞれ前記ダウンサンプリングされた透視幾何学的形状および前記ダウンサンプリングされた重みテーブルから、グラフィック処理ユニット(GPU)を用いて補間によって再構築するための1つまたは複数の命令を格納し、
前記ダウンサンプリングされた重みテーブルが、前記GPUによってテクスチャ表面として格納される、非一時的なコンピュータ可読媒体。 - 前記断層撮影体積の再構築工程の間に、前記透視幾何学的形状データおよび前記重みテーブルを用いて前記物体の三次元断層撮影体積を生成するための1つまたは複数の命令をさらに格納する、請求項15に記載の非一時的なコンピュータ可読媒体。
Applications Claiming Priority (5)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US201161435107P | 2011-01-21 | 2011-01-21 | |
US61/435,107 | 2011-01-21 | ||
US13/354,587 | 2012-01-20 | ||
PCT/US2012/022051 WO2012100177A1 (en) | 2011-01-21 | 2012-01-20 | Optimized implementation of back projection for computed tomography (ct) |
US13/354,587 US8494213B2 (en) | 2011-01-21 | 2012-01-20 | Optimized implementation of back projection for computed tomography (CT) |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2014506491A JP2014506491A (ja) | 2014-03-17 |
JP6101209B2 true JP6101209B2 (ja) | 2017-03-22 |
Family
ID=46516118
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2013550621A Active JP6101209B2 (ja) | 2011-01-21 | 2012-01-20 | コンピュータ断層撮影(ct)のための逆投影の最適化実装 |
Country Status (6)
Country | Link |
---|---|
US (1) | US8494213B2 (ja) |
EP (1) | EP2666122A4 (ja) |
JP (1) | JP6101209B2 (ja) |
AU (1) | AU2012207195B2 (ja) |
CA (1) | CA2825704A1 (ja) |
WO (1) | WO2012100177A1 (ja) |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP6280851B2 (ja) * | 2014-09-30 | 2018-02-14 | ジーイー・メディカル・システムズ・グローバル・テクノロジー・カンパニー・エルエルシー | 放射線断層撮影装置及びプログラム |
CN104574509A (zh) * | 2015-01-26 | 2015-04-29 | 上海交通大学 | 一种由投影重建物体三维图像的方法 |
US9626779B1 (en) * | 2015-10-20 | 2017-04-18 | International Business Machines Corporation | Efficient back-projection operation using precomputed table |
WO2019096600A1 (en) * | 2017-11-14 | 2019-05-23 | Koninklijke Philips N.V. | Single ct backprojector with one geometry calculation per voxel for multiple different types of projection data |
CN113017662B (zh) * | 2021-01-28 | 2022-06-14 | 明峰医疗系统股份有限公司 | 一种ct图像的混叠伪影去除方法及系统、ct扫描仪 |
Family Cites Families (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4135247A (en) * | 1977-08-15 | 1979-01-16 | Siemens Aktiengesellschaft | Tomography signal processing system |
US4809065A (en) * | 1986-12-01 | 1989-02-28 | Kabushiki Kaisha Toshiba | Interactive system and related method for displaying data to produce a three-dimensional image of an object |
US5982845A (en) * | 1998-04-07 | 1999-11-09 | Picker International, Inc. | Forward projection and backprojection processor |
EP1700270B1 (en) * | 2003-12-16 | 2010-06-23 | Philips Intellectual Property & Standards GmbH | Imaging method with filtered back projection |
DE102004022332A1 (de) * | 2004-05-06 | 2005-12-08 | Siemens Ag | Verfahren zur post-rekonstruktiven Korrektur von Aufnahmen eines Computer-Tomographen |
US7376255B2 (en) | 2004-06-23 | 2008-05-20 | General Electric Company | System and method for image reconstruction |
US7355598B2 (en) * | 2004-06-25 | 2008-04-08 | Siemens Medical Solutions Usa, Inc. | System and method for fast generation of high-quality maximum/minimum intensity projections |
US7149276B2 (en) * | 2004-07-14 | 2006-12-12 | Kabushiki Kaisha Toshiba | System, method, and computer program product that corrects measured data |
US7778392B1 (en) * | 2004-11-02 | 2010-08-17 | Pme Ip Australia Pty Ltd | Method of reconstructing computed tomography (CT) volumes suitable for execution on commodity central processing units (CPUs) and graphics processors, and apparatus operating in accord with those methods (rotational X-ray on GPUs) |
JP5269283B2 (ja) * | 2005-04-06 | 2013-08-21 | 株式会社東芝 | 医用画像診断装置及び画像再構成方法 |
CN100444798C (zh) * | 2005-07-22 | 2008-12-24 | 清华大学 | 一种用于ct重建的旋转对称体素离散化方法 |
CN101416072B (zh) * | 2005-09-02 | 2012-03-14 | 皇家飞利浦电子股份有限公司 | 用于计算机断层造影成像的改进的重组 |
WO2007034342A2 (en) * | 2005-09-26 | 2007-03-29 | Koninklijke Philips Electronics, N.V. | Iterative reconstruction with enhanced noise control filtering |
JP4414420B2 (ja) * | 2006-10-27 | 2010-02-10 | ジーイー・メディカル・システムズ・グローバル・テクノロジー・カンパニー・エルエルシー | X線断層撮影装置およびアーチファクトの低減方法 |
US20090195541A1 (en) | 2008-02-05 | 2009-08-06 | Rambus Inc. | Rendering dynamic objects using geometry level-of-detail in a graphics processing unit |
US7852977B2 (en) * | 2008-09-11 | 2010-12-14 | Samplify Systems, Inc. | Adaptive compression of computed tomography projection data |
US7829856B2 (en) * | 2009-03-31 | 2010-11-09 | General Electric Company | Apparatus and methods for determining a system matrix for pinhole collimator imaging systems |
DE112009005019B4 (de) * | 2009-06-30 | 2022-02-03 | Analogic Corp. | Effizienter quasi-exakter 3D Bildrekonstruktionsalgorithmus für CTScanner |
-
2012
- 2012-01-20 AU AU2012207195A patent/AU2012207195B2/en active Active
- 2012-01-20 EP EP12736958.5A patent/EP2666122A4/en not_active Withdrawn
- 2012-01-20 WO PCT/US2012/022051 patent/WO2012100177A1/en active Application Filing
- 2012-01-20 CA CA2825704A patent/CA2825704A1/en not_active Abandoned
- 2012-01-20 US US13/354,587 patent/US8494213B2/en active Active
- 2012-01-20 JP JP2013550621A patent/JP6101209B2/ja active Active
Also Published As
Publication number | Publication date |
---|---|
EP2666122A4 (en) | 2018-01-24 |
US20120189158A1 (en) | 2012-07-26 |
EP2666122A1 (en) | 2013-11-27 |
CA2825704A1 (en) | 2012-07-26 |
AU2012207195B2 (en) | 2016-09-15 |
US8494213B2 (en) | 2013-07-23 |
JP2014506491A (ja) | 2014-03-17 |
AU2012207195A1 (en) | 2013-09-05 |
WO2012100177A1 (en) | 2012-07-26 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
Pratx et al. | Fast, accurate and shift-varying line projections for iterative reconstruction using the GPU | |
Rahmim et al. | Statistical dynamic image reconstruction in state-of-the-art high-resolution PET | |
US9801591B2 (en) | Fast iterative algorithm for superresolving computed tomography with missing data | |
US9002090B2 (en) | Forward projection apparatus | |
JP6081477B2 (ja) | Ct装置及びct画像生成方法 | |
JP2008006288A (ja) | 繰り返し式画像再構成のシステム及び方法 | |
JP6101209B2 (ja) | コンピュータ断層撮影(ct)のための逆投影の最適化実装 | |
JPH0910202A (ja) | 診断撮像方法と装置およびヘリカル部分コーンビームデータからの画像再構成 | |
Liu et al. | GPU-based branchless distance-driven projection and backprojection | |
Keck et al. | GPU-accelerated SART reconstruction using the CUDA programming environment | |
Kim et al. | Fully 3D iterative scatter-corrected OSEM for HRRT PET using a GPU | |
Kole et al. | Evaluation of accelerated iterative x-ray CT image reconstruction using floating point graphics hardware | |
Sunnegårdh et al. | Regularized iterative weighted filtered backprojection for helical cone‐beam CT | |
US9495770B2 (en) | Practical model based CT construction | |
US7272205B2 (en) | Methods, apparatus, and software to facilitate computing the elements of a forward projection matrix | |
Yendiki et al. | A comparison of rotation-and blob-based system models for 3D SPECT with depth-dependent detector response | |
Johnston et al. | GPU-based iterative reconstruction with total variation minimization for micro-CT | |
Vintache et al. | Iterative reconstruction for transmission tomography on GPU using Nvidia CUDA | |
US12045916B2 (en) | Stochastic backprojection for 3D image reconstruction | |
Steckmann et al. | High performance cone-beam spiral backprojection with voxel-specific weighting | |
Chen et al. | Accelerating ring artifact correction for flat-detector CT using the CUDA framework | |
Stsepankou et al. | Real-time 3D cone beam reconstruction | |
Huang et al. | Rapid prejudgment of reconstructed object volume and its adaptive reconstruction for industrial cone-beam CT | |
Gao et al. | Distributed computation of linear inverse problems with application to computed tomography | |
Azhari et al. | Basic Principles of Tomographic Reconstruction |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20141212 |
|
A977 | Report on retrieval |
Free format text: JAPANESE INTERMEDIATE CODE: A971007 Effective date: 20150831 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20151006 |
|
A02 | Decision of refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A02 Effective date: 20160706 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20161027 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20161121 |
|
A911 | Transfer to examiner for re-examination before appeal (zenchi) |
Free format text: JAPANESE INTERMEDIATE CODE: A911 Effective date: 20161228 |
|
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: 20170131 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20170224 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 6101209 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |