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

« back to all changes in this revision

Viewing changes to contrib/wavelet/proc/wa_rec1d.prg

  • 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
! @(#)wa_rec1d.prg      19.1 (ES0-DMD) 02/25/03 13:34:57
 
2
! @(#) @(#)wa_rec1d.prg 19.1 03/02/25 ESO @(#)
 
3
!+++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
4
!.IDENTIFICATION: wa_rec1d.prg
 
5
!.PURPOSE:    reconstruct the signal from the wavelet transform
 
6
!.USE:        REC1D/WAVE Wave_in Im_out [Num_Trans] [Channel] [Nu0]
 
7
!.AUTHOR:     Jean-Luc Starck
 
8
!.VERSION:    03/02/25
 
9
! KEYWORDS:   Wavelet transform, Multiresolution analysis
 
10
! ----------------------------------------------------------------------
 
11
 
 
12
DEFINE/PARAM P1 ? IMAGE "Wavelet_in:  "
 
13
DEFINE/PARAM P2 ? IMAGE "Image_out:  " 
 
14
DEFINE/PARAM P3 2 N "Enter the algorithm number:  " 1,6
 
15
DEFINE/PARAM P4 12 N "Enter the number of channels:  "
 
16
DEFINE/PARAM P5 0.8 N "Enter Morlet's parameter:  "
 
17
 
 
18
WRITE/KEYW IN_A/C/1/60 {P1}
 
19
WRITE/KEYW OUT_A/C/1/60  {P2}
 
20
WRITE/KEYW INPUTI/I/1/1  {P3}
 
21
WRITE/KEYW INPUTI/I/3/1  {P4}
 
22
WRITE/KEYW INPUTR/R/1/1  {P5}
 
23
 
 
24
RUN CON_EXE:wa_rec1d.exe
 
25