IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 20, 2014, 6:00:00 PM (12 years ago)
Author:
eugene
Message:

merge changes from eam_branches/ipp-20140402 (Ohana mods for median donuts)

Location:
trunk
Files:
5 edited
4 copied

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/Ohana/src/opihi/cmd.data/Makefile

    r36489 r36679  
    6464$(SRC)/imcut.$(ARCH).o          \
    6565$(SRC)/imhist.$(ARCH).o \
     66$(SRC)/impeaks.$(ARCH).o        \
    6667$(SRC)/imsmooth.$(ARCH).o       \
    6768$(SRC)/imsmooth.generic.$(ARCH).o       \
     
    8889$(SRC)/mget.$(ARCH).o           \
    8990$(SRC)/minterpolate.$(ARCH).o   \
     91$(SRC)/medimage.$(ARCH).o       \
     92$(SRC)/medimage_commands.$(ARCH).o \
    9093$(SRC)/mset.$(ARCH).o           \
    9194$(SRC)/peak.$(ARCH).o           \
  • trunk/Ohana/src/opihi/cmd.data/init.c

    r36489 r36679  
    5353int imcut            PROTO((int, char **));
    5454int imhist           PROTO((int, char **));
     55int impeaks          PROTO((int, char **));
    5556int imsmooth         PROTO((int, char **));
    5657int imsmooth_generic PROTO((int, char **));
     
    7879int mget             PROTO((int, char **));
    7980int minterp          PROTO((int, char **));
     81int medimage_command PROTO((int, char **));
    8082int mset             PROTO((int, char **));
    8183int peak             PROTO((int, char **));
     
    211213  {1, "imcut",        imcut,            "linear image cut between arbitrary coords"},
    212214  {1, "imhistogram",  imhist,           "histogram of an image region"},
     215  {1, "impeaks",      impeaks,          "find peaks in an image (return vectors)"},
    213216  {1, "imsmooth",     imsmooth,         "circular gaussian smoothing"},
    214217  {1, "imsmooth.generic", imsmooth_generic, "circular non-gaussian smoothing"},
     
    233236  {1, "minterp",      minterp,          "interpolate image pixels"},
    234237  {1, "iminterp",     minterp,          "interpolate image pixels"},
     238  {1, "medimage",     medimage_command, "median image manipulation"},
    235239  {1, "matrix",       matrix,           "matrix math operations"},
    236240  {1, "match2d",      match2d,          "match 2 pairs of X,Y vectors and return matched indexes"},
  • trunk/Ohana/src/opihi/cmd.data/rebin.c

    r28241 r36679  
    133133              *Vout += *Vin;
    134134              if (Normalize) {(*Vn) ++;}
     135              // if ((i == 1) && (j == 1)) fprintf (stderr, "%d,%d : %d,%d : %f : %f : %d\n", i, j, x, y, *Vin, *Vout, *Vn);
    135136            }
    136137            if (Normalize) {Vn ++;}
  • trunk/Ohana/src/opihi/cmd.data/vellipse.c

    r25757 r36679  
    228228 */
    229229
     230// XXX NOTE that PHI is defined with the wrong sign, should fix this...
    230231opihi_flt fellipseOD (opihi_flt alpha, opihi_flt *par, int Npar, opihi_flt *dpar) {
    231232 
Note: See TracChangeset for help on using the changeset viewer.