Changeset 35771 for trunk/psModules/src/imcombine/pmSubtractionMatch.c
- Timestamp:
- Jul 3, 2013, 4:21:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmSubtractionMatch.c
r33424 r35771 21 21 #include "pmSubtractionThreads.h" 22 22 #include "pmSubtractionVisual.h" 23 #include "pmSubtractionSimple.h" 23 24 #include "pmErrorCodes.h" 24 25 … … 537 538 } 538 539 540 // Bail here if we're doing the simple matching 541 if (type == PM_SUBTRACTION_KERNEL_SIMPLE) { 542 if (!pmSubtractionSimpleMatch(conv1,conv2,ro1,ro2,sources,size,maskVal,maskBad,maskPoor)) { 543 return false; 544 } 545 return(true); 546 } 547 539 548 // Where does our variance map come from? 540 549 // Getting the variance exactly right is not necessary --- it's just used for weighting. … … 593 602 goto MATCH_ERROR; 594 603 } 604 595 605 596 606 memCheck("start"); … … 648 658 psFree(bg); 649 659 } 650 660 651 661 subtractionMatchAlloc(conv1, conv2, ro1, ro2, subMask, maskBad, subMode, numCols, numRows); 652 662 653 663 // Iterate over iso-kernel regions 654 664 for (int j = 0; j < yRegions; j++) {
Note:
See TracChangeset
for help on using the changeset viewer.
