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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!