- Timestamp:
- May 3, 2010, 8:50:52 AM (16 years ago)
- Location:
- branches/simtest_nebulous_branches
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/src/imageops/psImageCovariance.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/simtest_nebulous_branches
- Property svn:mergeinfo changed
-
branches/simtest_nebulous_branches/psLib/src/imageops/psImageCovariance.h
r24832 r27840 47 47 ); 48 48 49 /// Sum multiple covariance pseudo-matrices 50 psKernel *psImageCovarianceSum( 51 const psArray *array ///< Array of covariance pseudo-matrices 49 /// Return the pixel-to-pixel covariance factor following calculation 50 /// 51 /// This doesn't require calculation of the entire covariance matrix, so is much faster. 52 float psImageCovarianceCalculateFactor( 53 const psKernel *kernel, ///< Convolution kernel 54 const psKernel *covariance ///< Current covariance pseudo-matrix 55 ); 56 57 58 /// Return the covariance factor for an aperture of a given radius 59 float psImageCovarianceFactorForAperture(const psKernel *covar, float radius); 60 61 /// Return the sum of the covariance pseudo-matrix 62 float psImageCovarianceSum( 63 const psKernel *covariance ///< Covariance pseudo-matrix 52 64 ); 53 65 … … 78 90 ); 79 91 92 /// Control threading for image covariance functions 93 /// 94 /// Returns old threading status 95 bool psImageCovarianceSetThreads(bool threaded ///< Run image covariance functions threaded? 96 ); 97 98 /// Return whether image covariance functions are threaded 99 bool psImageCovarianceGetThreads(void); 80 100 81 101 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
