imicpe 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {imicpe-1.0.1 → imicpe-1.0.3}/PKG-INFO +2 -2
- {imicpe-1.0.1 → imicpe-1.0.3}/pyproject.toml +1 -1
- imicpe-1.0.3/src/imicpe/_version.py +1 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/l1.py +9 -10
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/tikhonov.py +9 -10
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/metrics.py +1 -1
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe.egg-info/PKG-INFO +2 -2
- imicpe-1.0.1/src/imicpe/_version.py +0 -1
- {imicpe-1.0.1 → imicpe-1.0.3}/DESCRIPTION.md +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/LICENSE +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/README.md +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/setup.cfg +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/__init__.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/__init__.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/masks.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/metrics.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/operators.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/cs/shepp_logan_phantom.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/__init__.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/operators.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/pnnDataset.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/pnnTrainer.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe/optim/pnnUtils.py +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe.egg-info/SOURCES.txt +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe.egg-info/dependency_links.txt +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe.egg-info/requires.txt +0 -0
- {imicpe-1.0.1 → imicpe-1.0.3}/src/imicpe.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: imicpe
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Toolbox for Maths,Signal,Image Teaching @ CPE
|
|
5
5
|
Author-email: Marion Foare <marion.foare@cpe.fr>, Eric Van Reeth <eric.vanreeth@cpe.fr>, Arthur Gautheron <arthur.gautheron@cpe.fr>
|
|
6
6
|
License: MIT License
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__="1.0.3"
|
|
@@ -32,16 +32,15 @@ def l1(opreg,A,At,z,x0,lam):
|
|
|
32
32
|
|
|
33
33
|
### init ###
|
|
34
34
|
dim = x0.ndim
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Gt = Lt
|
|
35
|
+
if opreg == 'id':
|
|
36
|
+
G = Id
|
|
37
|
+
Gt = Id
|
|
38
|
+
elif opreg == 'gradient':
|
|
39
|
+
G = D
|
|
40
|
+
Gt = Dt
|
|
41
|
+
if opreg == 'laplacien':
|
|
42
|
+
G = L
|
|
43
|
+
Gt = Lt
|
|
45
44
|
|
|
46
45
|
# operator norms
|
|
47
46
|
lipA = opNorm(A,At,dim,x0)
|
|
@@ -29,16 +29,15 @@ def tikhonov(opreg,A,At,z,x0,lam):
|
|
|
29
29
|
|
|
30
30
|
### init ###
|
|
31
31
|
dim = x0.ndim
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
Gt = Lt
|
|
32
|
+
if opreg == 'id':
|
|
33
|
+
G = Id
|
|
34
|
+
Gt = Id
|
|
35
|
+
elif opreg == 'gradient':
|
|
36
|
+
G = D
|
|
37
|
+
Gt = Dt
|
|
38
|
+
if opreg == 'laplacien':
|
|
39
|
+
G = L
|
|
40
|
+
Gt = Lt
|
|
42
41
|
|
|
43
42
|
# operator norms
|
|
44
43
|
lipA = opNorm(A,At,dim,x0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: imicpe
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Toolbox for Maths,Signal,Image Teaching @ CPE
|
|
5
5
|
Author-email: Marion Foare <marion.foare@cpe.fr>, Eric Van Reeth <eric.vanreeth@cpe.fr>, Arthur Gautheron <arthur.gautheron@cpe.fr>
|
|
6
6
|
License: MIT License
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__="1.0.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|