Skip to content

Commit 2f07157

Browse files
committed
correcting description about the horizontal detector
1 parent f4790fc commit 2f07157

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

httomolibgpu/recon/algorithm.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def FBP2d_astra(
8383
center : float, optional
8484
The center of rotation (CoR).
8585
detector_pad : int
86-
Horizontal detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
86+
Detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
8787
filter_type: str
8888
Type of projection filter, see ASTRA's API for all available options for filters.
8989
filter_parameter: float, optional
@@ -164,7 +164,7 @@ def FBP3d_tomobar(
164164
center : float, optional
165165
The center of rotation (CoR).
166166
detector_pad : int
167-
Horizontal detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
167+
Detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
168168
filter_freq_cutoff : float
169169
Cutoff frequency parameter for the SINC filter, the lower values produce better contrast but noisy reconstruction.
170170
recon_size : int, optional
@@ -227,7 +227,7 @@ def LPRec3d_tomobar(
227227
center : float, optional
228228
The center of rotation (CoR).
229229
detector_pad : int
230-
Horizontal detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
230+
Detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
231231
filter_type : str
232232
Filter type, the accepted strings are: none, ramp, shepp, cosine, cosine2, hamming, hann, parzen.
233233
filter_freq_cutoff : float
@@ -293,7 +293,7 @@ def SIRT3d_tomobar(
293293
center : float, optional
294294
The center of rotation (CoR).
295295
detector_pad : int
296-
Horizontal detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
296+
Detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
297297
recon_size : int, optional
298298
The [recon_size, recon_size] shape of the reconstructed slice in pixels.
299299
By default (None), the reconstructed size will be the dimension of the horizontal detector.
@@ -364,7 +364,7 @@ def CGLS3d_tomobar(
364364
center : float, optional
365365
The center of rotation (CoR).
366366
detector_pad : int
367-
Horizontal detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
367+
Detector width padding with edge values to remove circle/arc type artifacts in the reconstruction.
368368
recon_size : int, optional
369369
The [recon_size, recon_size] shape of the reconstructed slice in pixels.
370370
By default (None), the reconstructed size will be the dimension of the horizontal detector.
@@ -414,7 +414,7 @@ def _instantiate_direct_recon_class(
414414
data (cp.ndarray): data array
415415
angles (np.ndarray): angles
416416
center (Optional[float], optional): center of recon. Defaults to None.
417-
detector_pad (int): Horizontal detector width padding. Defaults to 0.
417+
detector_pad (int): Detector width padding. Defaults to 0.
418418
recon_size (Optional[int], optional): recon_size. Defaults to None.
419419
gpu_id (int, optional): gpu ID. Defaults to 0.
420420
@@ -454,7 +454,7 @@ def _instantiate_direct_recon2d_class(
454454
data (cp.ndarray): data array
455455
angles (np.ndarray): angles
456456
center (Optional[float], optional): center of recon. Defaults to None.
457-
detector_pad (int): Horizontal detector width padding. Defaults to 0.
457+
detector_pad (int): Detector width padding. Defaults to 0.
458458
recon_size (Optional[int], optional): recon_size. Defaults to None.
459459
gpu_id (int, optional): gpu ID. Defaults to 0.
460460
@@ -494,7 +494,7 @@ def _instantiate_iterative_recon_class(
494494
data (cp.ndarray): data array
495495
angles (np.ndarray): angles
496496
center (Optional[float], optional): center of recon. Defaults to None.
497-
detector_pad (int): Horizontal detector width padding. Defaults to 0.
497+
detector_pad (int): Detector width padding. Defaults to 0.
498498
recon_size (Optional[int], optional): recon_size. Defaults to None.
499499
datafidelity (str, optional): Data fidelity
500500
gpu_id (int, optional): gpu ID. Defaults to 0.

0 commit comments

Comments
 (0)