Skip to content

Commit 6a91e49

Browse files
Update PV_MUMC_biexp.py
1 parent 95b2623 commit 6a91e49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/standardized/PV_MUMC_biexp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import numpy as np
22
from src.wrappers.OsipiBase import OsipiBase
3-
from src.original.PV_MUMC.ivim_fit_method_biexp import fit_least_squares_array
3+
from src.original.PV_MUMC.two_step_IVIM_fit import fit_least_squares_array
44

55

66
class PV_MUMC_biexp(OsipiBase):
@@ -31,7 +31,7 @@ def __init__(self, bvalues=None, thresholds=None, bounds=([0.9, 0.0001, 0.0, 0.0
3131
Our OsipiBase object could contain functions that compare the inputs with
3232
the requirements.
3333
"""
34-
super(PV_MUMC, self).__init__(bvalues, None, bounds, None)
34+
super(PV_MUMC_biexp, self).__init__(bvalues, None, bounds, None)
3535
self.PV_algorithm = fit_least_squares_array
3636

3737

@@ -53,4 +53,4 @@ def ivim_fit(self, signals, bvalues=None):
5353
Dstar = fit_results[2]
5454
D = fit_results[0]
5555

56-
return f, Dstar, D
56+
return f, Dstar, D

0 commit comments

Comments
 (0)