Changeset 36679 for trunk/Ohana/src/opihi/cmd.data
- Timestamp:
- Apr 20, 2014, 6:00:00 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
- 4 copied
-
. (modified) (1 prop)
-
Ohana/src/opihi/cmd.data/Makefile (modified) (2 diffs)
-
Ohana/src/opihi/cmd.data/impeaks.c (copied) (copied from branches/eam_branches/ipp-20140402/Ohana/src/opihi/cmd.data/impeaks.c )
-
Ohana/src/opihi/cmd.data/init.c (modified) (4 diffs)
-
Ohana/src/opihi/cmd.data/medimage.c (copied) (copied from branches/eam_branches/ipp-20140402/Ohana/src/opihi/cmd.data/medimage.c )
-
Ohana/src/opihi/cmd.data/medimage_commands.c (copied) (copied from branches/eam_branches/ipp-20140402/Ohana/src/opihi/cmd.data/medimage_commands.c )
-
Ohana/src/opihi/cmd.data/rebin.c (modified) (1 diff)
-
Ohana/src/opihi/cmd.data/test/medimage.sh (copied) (copied from branches/eam_branches/ipp-20140402/Ohana/src/opihi/cmd.data/test/medimage.sh )
-
Ohana/src/opihi/cmd.data/vellipse.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20140402 (added) merged: 36641,36644,36673-36677
- Property svn:mergeinfo changed
-
trunk/Ohana/src/opihi/cmd.data/Makefile
r36489 r36679 64 64 $(SRC)/imcut.$(ARCH).o \ 65 65 $(SRC)/imhist.$(ARCH).o \ 66 $(SRC)/impeaks.$(ARCH).o \ 66 67 $(SRC)/imsmooth.$(ARCH).o \ 67 68 $(SRC)/imsmooth.generic.$(ARCH).o \ … … 88 89 $(SRC)/mget.$(ARCH).o \ 89 90 $(SRC)/minterpolate.$(ARCH).o \ 91 $(SRC)/medimage.$(ARCH).o \ 92 $(SRC)/medimage_commands.$(ARCH).o \ 90 93 $(SRC)/mset.$(ARCH).o \ 91 94 $(SRC)/peak.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.data/init.c
r36489 r36679 53 53 int imcut PROTO((int, char **)); 54 54 int imhist PROTO((int, char **)); 55 int impeaks PROTO((int, char **)); 55 56 int imsmooth PROTO((int, char **)); 56 57 int imsmooth_generic PROTO((int, char **)); … … 78 79 int mget PROTO((int, char **)); 79 80 int minterp PROTO((int, char **)); 81 int medimage_command PROTO((int, char **)); 80 82 int mset PROTO((int, char **)); 81 83 int peak PROTO((int, char **)); … … 211 213 {1, "imcut", imcut, "linear image cut between arbitrary coords"}, 212 214 {1, "imhistogram", imhist, "histogram of an image region"}, 215 {1, "impeaks", impeaks, "find peaks in an image (return vectors)"}, 213 216 {1, "imsmooth", imsmooth, "circular gaussian smoothing"}, 214 217 {1, "imsmooth.generic", imsmooth_generic, "circular non-gaussian smoothing"}, … … 233 236 {1, "minterp", minterp, "interpolate image pixels"}, 234 237 {1, "iminterp", minterp, "interpolate image pixels"}, 238 {1, "medimage", medimage_command, "median image manipulation"}, 235 239 {1, "matrix", matrix, "matrix math operations"}, 236 240 {1, "match2d", match2d, "match 2 pairs of X,Y vectors and return matched indexes"}, -
trunk/Ohana/src/opihi/cmd.data/rebin.c
r28241 r36679 133 133 *Vout += *Vin; 134 134 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); 135 136 } 136 137 if (Normalize) {Vn ++;} -
trunk/Ohana/src/opihi/cmd.data/vellipse.c
r25757 r36679 228 228 */ 229 229 230 // XXX NOTE that PHI is defined with the wrong sign, should fix this... 230 231 opihi_flt fellipseOD (opihi_flt alpha, opihi_flt *par, int Npar, opihi_flt *dpar) { 231 232
Note:
See TracChangeset
for help on using the changeset viewer.
