Identifying a skin disease using image processing

▼魔方 西西 提交于 2019-12-07 14:11:47

问题


I currently have 2 seperate data sets that belong to 2 different skin diseases. I have drawn an abstract image differentiating the 2 diseases on MS Paint. Disease 1 tends to be rounder in shape than Disease 2 and there is a texture difference as well.

Using texture filters and segmentation functions on Matlab, I am able to locate the disease region (and draw a border around it), for both Disease 1 and 2. My question is how can I differentiate between the 2 diseases? Are there functions I can use or am I better off using some form of machine learning on the data sets.

Any advice at all is helpful as I'm only starting out with Matlab.


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/34128967/identifying-a-skin-disease-using-image-processing

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