summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/ccpi/optimisation/operators/IdentityOperator.py
blob: 8f353738890646a440dfbf322a4a54852a6d6ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Mar  6 19:30:51 2019

@author: evangelos
"""

from ccpi.optimisation.operators import LinearOperator
import scipy.sparse as sp
import numpy as np
from ccpi.framework import ImageData


class Identity(LinearOperator):
    
    def __init__(self, gm_domain, gm_range=None):

        self.gm_domain = gm_domain
        self.gm_range = gm_range  
        if self.gm_range is None:
            self.gm_range = self.gm_domain
        
        super(Identity, self).__init__()
        
    def direct(self,x,out=None):
        if out is None:
            return x.copy()
        else:
            out.fill(x)
    
    def adjoint(self,x, out=None):
        if out is None:
            return x.copy()
        else:
            out.fill(x)
        
    def calculate_norm(self, **kwargs):
        return 1.0
        
    def domain_geometry(self):       
        return self.gm_domain
        
    def range_geometry(self):
        return self.gm_range
    
    def matrix(self):
        
        return sp.eye(np.prod(self.gm_domain.shape))
    
    def sum_abs_row(self):
        
        return self.gm_range.allocate(1)#ImageData(np.array(np.reshape(abs(self.matrix()).sum(axis=0), self.gm_domain.shape, 'F')))
 
    def sum_abs_col(self):
        
        return self.gm_domain.allocate(1)#ImageData(np.array(np.reshape(abs(self.matrix()).sum(axis=1), self.gm_domain.shape, 'F')))
            
    
if __name__ == '__main__':
    
    from ccpi.framework import ImageGeometry

    M, N = 2, 3
    ig = ImageGeometry(M, N)
    arr = ig.allocate('random_int')
    
    Id = Identity(ig)
    d = Id.matrix()
    print(d.toarray())
    
    d1 = Id.sum_abs_col()
    print(d1.as_array())