Changeset 2711
- Timestamp:
- Dec 13, 2004, 6:31:12 PM (22 years ago)
- Location:
- trunk/stac/src
- Files:
-
- 4 edited
-
Makefile (modified) (3 diffs)
-
stac.c (modified) (1 diff)
-
stacConfig.c (modified) (1 diff)
-
stacTransform.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/stac/src/Makefile
r2670 r2711 1 1 SHELL = /bin/sh 2 2 CC = gcc 3 CFLAGS += -O2 -g -std=c99 -I/home/mithrandir/price/psLib3/psLib/include -DCRFLUX 3 CFLAGS += -O2 -g -std=c99 -I/home/mithrandir/price/psLib3/psLib/include -DCRFLUX -DTESTING 4 4 PSLIB += -L/home/mithrandir/price/psLib3/psLib/lib/ -lpslib -lgsl -lgslcblas -lfftw3f -lsla -lcfitsio -lm 5 5 LDFLAGS += $(PSLIB) … … 24 24 $(CC) $(CFLAGS) -o $@ median.o $(LDFLAGS) $(OPTFLAGS) 25 25 26 getPixels: getPixels.o 27 $(CC) $(CFLAGS) -o $@ getPixels.o $(LDFLAGS) $(OPTFLAGS) 28 26 29 27 30 clean: … … 41 44 -$(RM) test_[0-3].fits.shifterr.* 42 45 -$(RM) leaks.dat 43 ./stac -v -k 3 -f 0.7 -G 0.77testout.fits test_0.fits test_1.fits test_2.fits test_3.fits46 ./stac -v -k 2.5 -f 0.5 -G 0.96 testout.fits test_0.fits test_1.fits test_2.fits test_3.fits 44 47 45 48 # Run profiling. -
trunk/stac/src/stac.c
r2670 r2711 49 49 // Combine with rejection 50 50 psArray *rejected = NULL; 51 psImage *combined = stacCombine(transformed, transformedErrors, 1, &rejected, config);51 psImage *combined = stacCombine(transformed, transformedErrors, 2, &rejected, config); 52 52 53 53 #ifdef TESTING -
trunk/stac/src/stacConfig.c
r2661 r2711 38 38 config->inputs = NULL; 39 39 config->output = NULL; 40 config->outnx = 1024;41 config->outny = 1024;40 config->outnx = 512; 41 config->outny = 512; 42 42 config->saturated = 65536.0; 43 43 config->bad = 0.0; -
trunk/stac/src/stacTransform.c
r2661 r2711 206 206 (void)psPlaneTransformApply(detector, map, sky); 207 207 208 // Change PS_INTERPOLATE_BILINEAR to best available technique. 208 209 outImage->data.F32[y][x] = (psF32)psImagePixelInterpolate(image, detector->x + 0.5, 209 210 detector->y + 0.5, mask, 1, 0.0,
Note:
See TracChangeset
for help on using the changeset viewer.
