IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 16, 2008, 1:10:16 PM (19 years ago)
Author:
eugene
Message:

working on the fft function

Location:
trunk/Ohana/src/opihi/cmd.data
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/cmd.data/Makefile

    r16013 r16099  
    4242$(SRC)/erase.$(ARCH).o          \
    4343$(SRC)/extract.$(ARCH).o        \
     44$(SRC)/fft1d.old.$(ARCH).o              \
    4445$(SRC)/fft1d.$(ARCH).o          \
    4546$(SRC)/fft2d.$(ARCH).o          \
  • trunk/Ohana/src/opihi/cmd.data/fft1d.c

    r16094 r16099  
    5050  }   
    5151
    52   fft (Ore[0].elements, Oim[0].elements, Npix, Nbit);
     52  fft (Ore[0].elements, Oim[0].elements, Npix, Nbit, TRUE);
    5353 
    5454  return (TRUE);
  • trunk/Ohana/src/opihi/cmd.data/fft2d.c

    r7917 r16099  
    4242  Ny = Ire[0].header.Naxis[1];
    4343  Naxis[0] = Ny; Naxis[1] = Nx;
    44   if (!IsBinary (Npix)) {
     44  if (!IsBinaryOld (Npix)) {
    4545    gprint (GP_ERR, "dimensions are not binary!\n");
    4646    return (FALSE);
  • trunk/Ohana/src/opihi/cmd.data/init.c

    r16013 r16099  
    2626int erase            PROTO((int, char **));
    2727int extract          PROTO((int, char **));
     28int fft1dold         PROTO((int, char **));
    2829int fft1d            PROTO((int, char **));
    2930int fft2d            PROTO((int, char **));
     
    145146  {"erase",        erase,            "erase objects on an overlay"},
    146147  {"extract",      extract,          "extract a portion of a buffer into another buffer"},
     148  {"fft1dold",     fft1dold,         "fft on the pixel-stream in an image"},
    147149  {"fft1d",        fft1d,            "fft on the pixel-stream in an image"},
    148150  {"fft2d",        fft2d,            "fft on an image"},
Note: See TracChangeset for help on using the changeset viewer.