IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28683


Ignore:
Timestamp:
Jul 16, 2010, 7:00:45 AM (16 years ago)
Author:
eugene
Message:

some notes on work needed

Location:
branches/eam_branches/ipp-20100621
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20100621/Ohana/src/relastro/doc/notes.txt

    r27435 r28683  
     1
     22010.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.
    127
    2282010.03.24
  • branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/load_catalogs.c

    r24308 r28683  
    3434      FlagOutliers(&tcatalog);
    3535    }
     36
     37    // XXX mark the image grid based on the loaded detections
    3638
    3739    // select only the brighter stars
  • branches/eam_branches/ipp-20100621/Ohana/src/relastro/src/relastro.c

    r28184 r28683  
    4949
    5050  /* load catalog data from region files : subselect high-quality measurements */
     51  // XXX pass in the image table
     52  // XXX who carries the image grid?
    5153  catalog = load_catalogs (skylist, &Ncatalog, TRUE);
    5254  MARKTIME("load catalog data: %f sec\n", dtime);
  • branches/eam_branches/ipp-20100621/psphot/src/Makefile.am

    r28435 r28683  
    2020        -$(RM) psphotVersionDefinitions.h
    2121        $(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: ;
     22FORCE: ;
    2323
    2424libpsphot_la_CFLAGS = $(PSPHOT_CFLAGS) $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS)
  • branches/eam_branches/ipp-20100621/psphot/src/psphotPSFConvModel.c

    r28657 r28683  
    1010// modelConv to contain the fitted parameters, and the modelFlux to contain the
    1111// 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
     15pmModel *psphotPSFConvModel (pmReadout *readout, pmSource *source, pmSourceFitOptions *fitOptions, pmModelType modelType, psImageMaskType maskVal, psImageMaskType markVal, int psfSize) {
    1316   
    1417    // maskVal is used to test for rejected pixels, and must include markVal
Note: See TracChangeset for help on using the changeset viewer.