IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 10, 2010, 3:02:06 PM (16 years ago)
Author:
Paul Price
Message:

Implement chip mosaic for ppVizPattern. Pattern I/O is now correct: subtraction of the pattern from the pattern-subtracted image restores the original image.

Location:
branches/eam_branches/20091201/ppViz/src/ppVizPattern
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20091201/ppViz/src/ppVizPattern

    • Property svn:ignore
      •  

        old new  
        1 ppVizPSF
        21Makefile.in
        3 ppVizPSFVersionDefinitions.h
        42.deps
        53Makefile
         4ppVizPattern
         5ppVizPatternVersionDefinitions.h
  • branches/eam_branches/20091201/ppViz/src/ppVizPattern/ppVizPatternCamera.c

    r26837 r26847  
    4242    pmFPAfile *output = pmFPAfileDefineOutput(data->config, input->fpa, "PPVIZPATTERN.OUTPUT");
    4343    if (!output) {
    44         psError(psErrorCodeLast(), false, "Unable to define output.");
     44        psError(psErrorCodeLast(), false, "Unable to define file PPVIZPATTERN.OUTPUT");
    4545        return false;
    4646    }
    4747    output->save = true;
     48
     49    pmFPAfile *outChip = pmFPAfileDefineChipMosaic(data->config, input->fpa, "PPVIZPATTERN.CHIP");
     50    if (!outChip) {
     51        psError(psErrorCodeLast(), false, "Unable to define file PPVIZPATTERN.CHIP");
     52        return false;
     53    }
     54    outChip->save = true;
     55
    4856
    4957#if 0
Note: See TracChangeset for help on using the changeset viewer.