What kind of features can be extracted from knee MRI?
1 次查看(过去 30 天)
显示 更早的评论
Hi all, Do you know what features can be extracted from knee MRI for cartilage detection? I want to extract some features to classify voxels. If there is some papers for feature extraction, I will be thankful if you share.
0 个评论
采纳的回答
Star Strider
2015-11-27
The literature on that is not extensive, but available if your library has access to the journals. See my PubMed search for one article, and see the ‘Similar Articles’ section as well.
2 个评论
Image Analyst
2015-11-30
See Steve Eddins book on Image Processing with Matlab, available from online bookstores such as Amazon.com.
更多回答(1 个)
Walter Roberson
2015-11-27
The number of different features that can be computed is immense. Even at the very simplest, you might choose to extract k pixels out of n (there are (n choose k) ways of doing that), but you might also choose to order those in any of the k! different ways. The total number of possibilities gets big fast -- like 3554627472076 possibilities for only 16 total pixels. See http://oeis.org/A000522
But as well as just selecting some subset of pixels, you might choose to do some calculation on the subset. For example, you might take sin() of them. Or dct() . Or blockwise local maximum. Or matrix multiplication that projects from dimension (p x q) to dimension (r x s).
You need to understand what, mathematically a "feature" is. Mathematically, a "feature" is any function that takes your array of pixels and produces a vector output, typically of a smaller size, and possibly not of the same data type. This involves the mathematical meaning of "function" as opposed to "formula": it does not have to be "computable", it just has to be something that could be looked up in a huge table. Playing Fizzbin with your matrix of pixels is entirely acceptable for the purpose of defining what a "feature" is.
What features can be extracted? Just about anything you can think of that can be computed in a finite time.
The question you need to ask is what features are useful to compute. And that is still very much under study. See Star Strider's response for some relevant articles.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!