我试图将用 c 编写的共享库集成到已经运行的 python 应用程序中。为此,我创建了一个简单的 .so 文件并尝试访问用共享库编写的函数。
from ctypes import *
import cv2 as cv
import numpy as np
print cv.__version__
so= 'ContrastEnhancement.so'
lib = cdll.LoadLibrary(so)
image = cv.imread('python1.jpg')
image_data = np.array(image)
#calling shared lib function here
lib.ContrastStretch(image_data, width ,height, 5,10)
cv.imwrite("python_result.jpg", )
Traceback (most recent call last):
File "test1.py", line 21, in <module>
lib.ContrastStretch(image_data, width ,height, 5,10)
ctypes.ArgumentError: argument 1: <type 'exceptions.TypeError'>: Don't know how to convert parameter 1
如果我试过这样
lib.ContrastStretch(c_uint8(image_data), width ,height, 5,10)
TypeError: only length-1 arrays can be converted to Python scalars
现在似乎与共享库无关,而是“如何在 python 中使用图像数据(数组)”
谢谢 javed