除了HoG功能之外,还有其他更好的方法来识别真实的棋子图像吗?

时间:2019-01-25 11:48:36

标签: python machine-learning

我正在使用机器学习来识别棋子。 HoG是我的代码中用来识别不同组块的功能,但是,由于HoG如何调整图像,结果并不那么准确。还有其他更好的方法来识别图像,特别是棋子吗?

fd, hog_image = hog(img, orientations=16, pixels_per_cell=(8, 8),cells_per_block=(2, 2), visualize=True)

1 个答案:

答案 0 :(得分:0)

主要思想是在存在分类问题时使用卷积神经网络。对于对象检测(本地化+分类),您可以使用TensorFlow对象检测API以及YOLO模型。

在这里您可以阅读更多

https://towardsdatascience.com/how-to-train-your-own-object-detector-with-tensorflows-object-detector-api-bec72ecfe1d9

https://github.com/tensorflow/models

https://medium.com/@jonathan_hui/real-time-object-detection-with-yolo-yolov2-28b1b93e2088

http://cs231n.github.io/convolutional-networks/