Classes | |
| class | noiseX |
| Adds Gaussian Noise to image Note how noiseX inherits all of its linear operator functionality from LinearOperatorStruct. More... | |
noiseX is a subclass of LinearOperatorStruct.
from slimpy_base.Core.User.linop.rclinOp import linearop_r as LinearOperatorStruct
#===============================================================================
# Linear operator class itself
#===============================================================================
class noiseX( LinearOperatorStruct ):
\"""
Adds Gaussian Noise to image
Note how noiseX inherits all of its linear operator functionality
from LinearOperatorStruct. after the initialization is done of
noiseX SLIMpy will do the rest of the work.
\"""
name = "noise"
def __init__( self, domain):
kparams = dict( adj=False )
LinearOperatorStruct.__init__( self, domain, **kparams )
1.5.6