如何在打开的简历上翻转文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在打开的简历上翻转文本相关的知识,希望对你有一定的参考价值。
[使用开放式简历我创建了QR码扫描仪,当图像上下颠倒时,我将框架翻转了180度。现在,我显示的文本是上下颠倒的,并显示在框架的底部而不是顶部。我该如何解决。下面是我的生成文本的代码。
谢谢
# barcodeData = barcode.data.decode("ascii")
# draw the barcode data and barcode type on the image
text = "".format(barcodeData)
cv2.putText(frame, text, (x, y - 10),
cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 255), 2)
答案
您尝试过cv2.flip()吗?
horizontal_image = cv2.flip(sourceimage,1)要么vertical_image = cv2.flip(sourceimage,0)
以上是关于如何在打开的简历上翻转文本的主要内容,如果未能解决你的问题,请参考以下文章