~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to contrib/wavelet/incl/Def_Mallat.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
**                   Copyright (C) 1993 by European Southern Observatory
 
3
*******************************************************************************
 
4
**
 
5
**    UNIT
 
6
**
 
7
**    Version: 19.1
 
8
**
 
9
**    Author: Jean-Luc Starck
 
10
**
 
11
**    Date:  03/02/25
 
12
**    
 
13
**    File:  Def_Mallat.h
 
14
**
 
15
*******************************************************************************
 
16
**
 
17
**    DESCRIPTION  Filter definition for the Mallat's algorithm 
 
18
**    -----------   
 
19
**
 
20
******************************************************************************/ 
 
21
 
 
22
/*  Definitions of filters h0, h1, g0 et g1. */
 
23
 
 
24
float h0[9] =
 
25
{
 
26
         0.02674875741,
 
27
        -0.0168641184 ,
 
28
        -0.0782232665 ,
 
29
         0.26686411844,
 
30
         0.60294901823,
 
31
         0.26686411844,
 
32
        -0.0782232665 ,
 
33
        -0.0168641184 ,
 
34
         0.02674875741,
 
35
};
 
36
 
 
37
float g0[7] =
 
38
{
 
39
         0.04563588155 ,
 
40
        -0.02877176311 ,
 
41
        -0.295635881557,
 
42
         0.557543526229,
 
43
        -0.295635881557,
 
44
        -0.02877176311 ,
 
45
         0.04563588155 ,
 
46
};
 
47
 
 
48
float h1[7] = 
 
49
{
 
50
        -0.04563588155 ,
 
51
        -0.02877176311 ,
 
52
         0.295635881557,
 
53
         0.557543526229,
 
54
         0.295635881557,
 
55
        -0.02877176311 ,
 
56
        -0.04563588155 ,
 
57
};
 
58
 
 
59
float g1[9] =
 
60
{
 
61
         0.02674875741,
 
62
         0.0168641184 ,
 
63
        -0.0782232665 ,
 
64
        -0.26686411844,
 
65
         0.60294901823,
 
66
        -0.26686411844,
 
67
        -0.0782232665 ,
 
68
         0.0168641184 ,
 
69
         0.02674875741,
 
70
};
 
71