- Timestamp:
- Nov 26, 2010, 10:54:42 AM (16 years ago)
- Location:
- branches/eam_branches/ipp-20101103/psModules
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/imcombine/pmSubtraction.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20101103/psModules
- Property svn:mergeinfo set to
-
branches/eam_branches/ipp-20101103/psModules/src/imcombine/pmSubtraction.c
r29599 r29852 1391 1391 out1->covariance = psImageCovarianceAverage(covars); 1392 1392 psFree(covars); 1393 if (!out1->covariance) { 1394 psError(PM_ERR_UNKNOWN, false, "psImageCovarianceAverage returned NULL for out1."); 1395 return false; 1396 } 1393 1397 // Remove covariance factor from covariance, since we've put it in the variance map already 1394 1398 float factor = psImageCovarianceFactor(out1->covariance); … … 1408 1412 out2->covariance = psImageCovarianceAverage(covars); 1409 1413 psFree(covars); 1414 if (!out2->covariance) { 1415 psError(PM_ERR_UNKNOWN, false, "psImageCovarianceAverage returned NULL for out2."); 1416 return false; 1417 } 1410 1418 // Remove covariance factor from covariance, since we've put it in the variance map already 1411 1419 float factor = psImageCovarianceFactor(out2->covariance);
Note:
See TracChangeset
for help on using the changeset viewer.
