what is var function in matlab?how does it works in image processing?
显示 更早的评论
what is var function in matlab? how does it works in image processing?
1 个评论
Matt J
2013-11-7
Shouldn't you know, if you've read
>>doc var
>>help var
回答(1 个)
Image Analyst
2013-11-7
0 个投票
V = var(X) returns the variance of X for vectors. For matrices, var(X)is a row vector containing the variance of each column of X.For N-dimensional arrays, var operates along the first non-singleton dimension of X. The result V is an unbiased estimator of the variance of the population from which X is drawn, as long as X consists of independent, identically distributed samples.
It might possibly be used locally in image processing as an edge detector, or to determine the noise or SNR in an image.
类别
在 帮助中心 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!