将Numpy数组通过ctypes模块传递到C++函数

将Numpy数组通过ctypes模块传递到C++函数

python文件
a.py

import cv2
import numpy as np
import ctypes
from ctypes import string_at


def sendToC():
    lib = ctypes.cdll.LoadLibrary("./test.so")
    arr = np.array([[1,2,3],[4,5,6],[7,8,9],[10,11,12]],dtype = np.int32)   
    print(arr)
    rows, cols = arr.shape
    #下面三行代码等价,都是指定数据类型
    arr = arr.ctypes.data_as(ctypes.POINTER(ctypes.c_int))
    # arr = arr.ctypes.data_as(ctypes.c_char_p)  
    # lib.show_matrix.argtypes = [np.ctypeslib.ndpointer(ctypes.c_int),ctypes.c_int,ctypes.c_int]
    lib.show_matrix(arr, rows, cols)

 
sendToC()






cpp文件
test.cpp


// 编译命令 g++ -o libtryPython.so -shared -fPIC tryPython.cpp
#include<iostream>
using namespace std;
extern "C"{

    void show_matrix( int *matrix, int rows, int columns)
    {
        int i, j;
        for (i=0; i<rows; i++) {
            for (j=0; j<columns; j++) {
                cout<<matrix[i*columns + j]<<"\t";
            }
            cout<<endl;
        }
    }
}

注意事项:

编译命令:g++ -o libtryPython.so -shared -fPIC tryPython.cpp文件名替换一下就可以。
C++编译的时候要extern “C”,不然调用的时候会报错。
注意numpy数组的数据类型,要和ctypes声明、C++函数中的数组数据类型对应。

参考资料:

ctypes的运用(把一个numpy数组传入c中)
注意这里面有个“错”的地方,困了我很久。。
在这里插入图片描述
一般人的用法都是一行一行显示,因此这里要改为matrix[i*columns+j]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值