Ignore:
Timestamp:
Feb 27, 2013, 1:57:32 PM (11 years ago)
Author:
sommeria
Message:

clean the transform fcts

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/transform_field/ima_filter.m

    r570 r574  
    1 function DataOut=im_filter(DataIn,Calib)
    2 np=20 %size ofthe filtering window
     1% 'ima_filter': low-pass filtr of an image (builtin filtering parameter)
     2
     3%------------------------------------------------------------------------
     4%%%%  Use the general syntax for transform fields with a single input %%%%
     5% OUTPUT:
     6% DataOut:   output field structure
     7
     8%INPUT:
     9% DataIn:  first input field structure
     10%------------------------------------------------------------------------
     11function DataOut=ima_filter(DataIn)
     12np=20 %size of the filtering window
    313%definition of the cos shape matrix filter
    414ix=[1/2-np/2:-1/2+np/2];%
Note: See TracChangeset for help on using the changeset viewer.