Changeset 28683
- Timestamp:
- Jul 16, 2010, 7:00:45 AM (16 years ago)
- Location:
- branches/eam_branches/ipp-20100621
- Files:
-
- 1 added
- 5 edited
-
Ohana/src/relastro/doc/notes.txt (modified) (1 diff)
-
Ohana/src/relastro/src/load_catalogs.c (modified) (1 diff)
-
Ohana/src/relastro/src/relastro.c (modified) (1 diff)
-
psphot/doc/notes.20100715.txt (added)
-
psphot/src/Makefile.am (modified) (1 diff)
-
psphot/src/psphotPSFConvModel.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20100621/Ohana/src/relastro/doc/notes.txt
r27435 r28683 1 2 2010.07.15 3 4 Some issues: 5 6 * when I apply the fitted image parameters (UpdateObjectOffsets), I 7 currently check for good/bad fits and warn if the image is bad. 8 But the correction requires multiple re-loads of the catalog 9 tables. 10 11 * I would like to check for bad fits by defining a grid of test 12 points and seeing how much they move. However, for some chips, 13 the region of valid data is much smaller than the regino with any 14 data. 15 16 * I would like to define a grid (say, Nx * Ny with Nx >> polynomial 17 order) and only use those grid regions in testing the solution 18 19 * This means knowing which detections belong on a specific image. 20 I'm not sure if there is a good way to do this. at the moment, it 21 is easy to do detection -> image, but not so easy to do 22 image->detection. 23 24 * That might argue for generating the grid for each image, then 25 running through all detections and, as detections are examined, 26 populate the grid elements for their own image. 1 27 2 28 2010.03.24 -
branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/load_catalogs.c
r24308 r28683 34 34 FlagOutliers(&tcatalog); 35 35 } 36 37 // XXX mark the image grid based on the loaded detections 36 38 37 39 // select only the brighter stars -
branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/relastro.c
r28184 r28683 49 49 50 50 /* load catalog data from region files : subselect high-quality measurements */ 51 // XXX pass in the image table 52 // XXX who carries the image grid? 51 53 catalog = load_catalogs (skylist, &Ncatalog, TRUE); 52 54 MARKTIME("load catalog data: %f sec\n", dtime); -
branches/eam_branches/ipp-20100621/psphot/src/Makefile.am
r28435 r28683 20 20 -$(RM) psphotVersionDefinitions.h 21 21 $(SED) -e "s|@PSPHOT_VERSION@|\"$(PSPHOT_VERSION)\"|" -e "s|@PSPHOT_BRANCH@|\"$(PSPHOT_BRANCH)\"|" -e "s|@PSPHOT_SOURCE@|\"$(PSPHOT_SOURCE)\"|" psphotVersionDefinitions.h.in > psphotVersionDefinitions.h 22 #FORCE: ;22 FORCE: ; 23 23 24 24 libpsphot_la_CFLAGS = $(PSPHOT_CFLAGS) $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS) -
branches/eam_branches/ipp-20100621/psphot/src/psphotPSFConvModel.c
r28657 r28683 10 10 // modelConv to contain the fitted parameters, and the modelFlux to contain the 11 11 // convolved model image. 12 pmModel *psphotPSFConvModel (pmReadout *readout, pmSource *source, pmModelType modelType, psImageMaskType maskVal, psImageMaskType markVal, int psfSize) { 12 13 // XXX need to generalize this -- number of fitted parameters must be flexible based on the fitOptions 14 15 pmModel *psphotPSFConvModel (pmReadout *readout, pmSource *source, pmSourceFitOptions *fitOptions, pmModelType modelType, psImageMaskType maskVal, psImageMaskType markVal, int psfSize) { 13 16 14 17 // maskVal is used to test for rejected pixels, and must include markVal
Note:
See TracChangeset
for help on using the changeset viewer.
