File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2929from numpy import float32 , complex64
3030from typing import Optional , Type
3131
32+ from tomobar .methodsDIR_CuPy import RecToolsDIRCuPy
33+ from tomobar .methodsIR_CuPy import RecToolsIRCuPy
34+
3235__all__ = [
3336 "FBP" ,
3437 "LPRec" ,
@@ -360,8 +363,6 @@ def _instantiate_direct_recon_class(
360363 Returns:
361364 Type[RecToolsDIRCuPy]: an instance of the direct recon class
362365 """
363- from tomobar .methodsDIR_CuPy import RecToolsDIRCuPy
364-
365366 if center is None :
366367 center = data .shape [2 ] // 2 # making a crude guess
367368 if recon_size is None :
@@ -400,8 +401,6 @@ def _instantiate_iterative_recon_class(
400401 Returns:
401402 Type[RecToolsIRCuPy]: an instance of the iterative class
402403 """
403- from tomobar .methodsIR_CuPy import RecToolsIRCuPy
404-
405404 if center is None :
406405 center = data .shape [2 ] // 2 # making a crude guess
407406 if recon_size is None :
You can’t perform that action at this time.
0 commit comments