Image Classification Algorithms Using Java

后端 未结 2 1997
甜味超标
甜味超标 2020-12-21 06:41

My goal is to implements different image classification methods to show how they function and the advantages and disadvantages behind such methods. The ones I want to try an

相关标签:
2条回答
  • 2020-12-21 07:40

    Although not entirely sure this is what you are looking for (sorry, your question is a bit unclear), if what you want is a library / system to help you with the classification part of the work, then you may want to look at Weka (http://www.cs.waikato.ac.nz/ml/weka/), in my opinion the best Java library for data mining experimentation.

    If, instead, you are looking for algorithms that would allow you to analyze images in order to extract features that can, in turn, be used to perform the classification, you may want to start with targeted descriptions of such algorithms in Java, such as those found in the nice on-line book Java Image Processing Cookbook by Rafael Santos; here's a direct link to the section "A Brief Tutorial on Supervised Image Classification".

    0 讨论(0)
  • 2020-12-21 07:44

    You can also use RapidMiner with IMMI (IMage MIning) extension:

    http://www.burgsys.com/mumi-image-mining-community.php

    For image classification you can use for example global feature extraction and then use some classification algorithm (e.g. Artificial Neural Networks).

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