我是Python的新手。
我想借助傅立叶变换定义文本旋转。
import cv2
import numpy as np
import matplotlib.pyplot as plot
img = cv2.imread ('Text_rot.bmp', cv2.CV_LOAD_IMAGE_GRAYSCALE)
afterFourier = np.log (np.abs(np.fft.fft2 (img)))
ret1, th1 = cv2.threshold (afterFourier, 127, 255, cv2.THRESH_BINARY)
但是这段代码失败了:
ret1, th1 = cv2.threshold (afterFourier, 127, 255, cv2.THRESH_BINARY)
error: ..\..\..\src\opencv\modules\imgproc\src\thresh.cpp:783: error: (-210)
为什么会导致“-210”错误?
答案 0 :(得分:18)
可以在error codes中查找OpenCV types_c.h
。
错误代码-210定义为:
CV_StsUnsupportedFormat= -210, /**< the data format/type is not supported by the function*/
因此,在将图像传递给uint8
之前,您需要将图像强制转换为cv2.threshold
数据类型。这可以使用astype
方法使用numpy来完成:
afterFourier = afterFourier.astype(np.uint8)
这会将afterFourier
中的所有浮点值截断为8位值,因此您可能需要在执行此操作之前对数组进行一些缩放/舍入,具体取决于您的应用程序。