IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32787 for trunk/psvideophot


Ignore:
Timestamp:
Nov 23, 2011, 1:48:21 PM (15 years ago)
Author:
bills
Message:

check whether the central coordinates are finite

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psvideophot/src/psvideoLoop.c

    r32556 r32787  
    234234                    Centering(readout->image, EDGE, &vpSum, xy, median);
    235235
    236                     vpFlux = SubSum(readout->image, xy, median);
     236                    if (isfinite(xy[0]) && isfinite(xy[1])) {
     237                        vpFlux = SubSum(readout->image, xy, median);
     238                    }
    237239
    238240//                    printf("%4d %9.2f %9.2f %9.2f %.1f %.1f %9.2f\n",
Note: See TracChangeset for help on using the changeset viewer.