我正在使用机器学习来识别棋子。 HoG是我的代码中用来识别不同组块的功能,但是,由于HoG如何调整图像,结果并不那么准确。还有其他更好的方法来识别图像,特别是棋子吗?
fd, hog_image = hog(img, orientations=16, pixels_per_cell=(8, 8),cells_per_block=(2, 2), visualize=True)
答案 0 :(得分:0)
主要思想是在存在分类问题时使用卷积神经网络。对于对象检测(本地化+分类),您可以使用TensorFlow对象检测API以及YOLO模型。
在这里您可以阅读更多
https://github.com/tensorflow/models
https://medium.com/@jonathan_hui/real-time-object-detection-with-yolo-yolov2-28b1b93e2088