IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11786


Ignore:
Timestamp:
Feb 13, 2007, 4:19:43 PM (19 years ago)
Author:
Paul Price
Message:

Removing warning on target binning --- it's not really necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAMosaic.c

    r11754 r11786  
    784784    int xBinTarget = psMetadataLookupS32(&mdok, targetCell->concepts, "CELL.XBIN");
    785785    if (!mdok || xBinTarget == 0) {
    786         psLogMsg(__func__, PS_LOG_WARN, "CELL.XBIN is not set for the target cell; assuming %d.\n",*xBinChip);
     786        // CELL.XBIN is not set for the target cell --- assume it's the same as the source
    787787        FIX_CONCEPT(targetCell->concepts, "CELL.XBIN", S32, *xBinChip);
    788788    } else {
     
    791791    int yBinTarget = psMetadataLookupS32(&mdok, targetCell->concepts, "CELL.YBIN");
    792792    if (!mdok || yBinTarget == 0) {
    793         psLogMsg(__func__, PS_LOG_WARN, "CELL.YBIN is not set for the target cell; assuming %d.\n",*yBinChip);
     793        // CELL.YBIN is not set for the target cell --- assume it's the same as the source
    794794        FIX_CONCEPT(targetCell->concepts, "CELL.YBIN", S32, *yBinChip);
    795795    } else {
Note: See TracChangeset for help on using the changeset viewer.