Dice face value recognition

前端 未结 7 1626
我在风中等你
我在风中等你 2020-12-23 18:02

I’m trying to build a simple application that will recognize the values of two 6-sided dice. I’m looking for some general pointers, or maybe even an open source project.

7条回答
  •  渐次进展
    2020-12-23 18:52

    This is a smiliar question to Object Recognition from Templates to which I provided an answer which I believe might be of use.

    While different kinds of classifiers will probably work well, I would probably try the method I outlined first. Classifiers are often tricky to implement and especially to train properly. Also, when things don't work it is very hard to know where the problem is: is it in your implementation of the classifier, did you choose the wrong method, are the parameters wrong, did you not train it properly, or were you just unlucky?

    No, stay away from classifiers, template matching and neural networks if the problem can (easily) be solved using simlpe image processing methods and some math.

提交回复
热议问题