Identifying a skin disease using image processing

痴心易碎 提交于 2019-12-05 21:42:51

You can use the regionprops function to compute various shape features, like area, perimeter, eccentricity, etc. In particular, the eccentricity will tell you how close the shape is to a circle.

For texture features, try extractHOGFeatures and extractLBPFeatures functions in the Computer Vision System Toolbox.

Yes, I would say texture characterization:

  1. Size Zone Matrix (really effective for homogeneity/heterogeneity description)
  2. Haralick (cooccurrences matrix)
  3. Run Length Matrix
  4. Local Binary Pattern (extensively used nowadays).
  5. Shape indexes to characterize the shape if according to your opinion the shape is relevant.

Then you use the classifier of your choice (Neural Network, SVM, etc).

An other solution, may be to use a Convolutional Neural Network, but that will require more work and data. But terribly efficient.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!