Texture recognition within a specific area in the pic

后端 未结 1 1169
耶瑟儿~
耶瑟儿~ 2021-01-13 20:26

I\'m new in the texture recognition field, and I would like to know which are the possible ways to approach a texture problem in opencv.

I need to identify the textu

相关标签:
1条回答
  • 2021-01-13 20:49

    Why don't use haralick features? I other words they are called texture features. The base idea is to compute coocurence matrix from given gray-scaled image on base which the haralick features are computed. You can pick between different features like contrast, correlation, entropy etc. which can describe your texture. I guess for the same texture given feature should have the same (similar) value, so that might be the way for distinguishing textures.

    Here some links can be helpful:

    • Coocurence matrix tutorial
    • Haralik features summary
    • Coocurence matrix in scikit image

    So far as I know, there is no implementation of haralick features in opencv, but you can use python with scikit-image (of course you can use opencv with python if you don't mind using something different than c++).

    0 讨论(0)
提交回复
热议问题