SobolevInpainter

PURPOSE ^

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SUBFUNCTIONS ^

SOURCE CODE ^

0001 classdef SobolevInpainter < FDPDEInpainter    
0002     % Harmonic inpainter (the same result can be obtained with tension == 1
0003     % in CCSTInpainter)
0004     
0005     methods
0006         function obj = SobolevInpainter(varargin)
0007             obj@FDPDEInpainter(varargin{:});                        
0008         end
0009         
0010         function f = stepFun(obj, f, mask)
0011             f = -div(grad(f));
0012         end        
0013     end
0014 end

Generated on Thu 10-Dec-2020 17:34:27 by m2html © 2005