Quindi sto usando python per chiamare i metodi in una libreria C++ condivisa. Sto riscontrando un problema nel convertire un array numerico 2D in un array C++ 2D di cortocircuiti come input di funzione. Ho creato un esempio di giocattolo che mostra il problema. Sentiti libero di compilare e provalo!Converti un array di numpy 2D in C++ short **?
Ecco il codice python (soexample.py):
# Python imports
from ctypes import CDLL
import numpy as np
# Open shared CPP library:
cpplib=CDLL('./libsoexample.so')
cppobj = cpplib.CPPClass_py()
# Stuck on converting to short**?
array = np.array([[1,2,3],[1,2,3]])
cpplib.func_py(cppobj,array)
Ecco la libreria C++ (soexample.cpp):
#include <iostream>
using namespace std;
class CPPClass
{
public:
CPPClass(){}
void func(unsigned short **array)
{
cout << array[0][0] << endl;
}
};
// For use with python:
extern "C" {
CPPClass* CPPClass_py(){ return new CPPClass(); }
void func_py(CPPClass* myClass, unsigned short **array)
{
myClass->func(array);
}
}
che compilo con il seguente comando:
g++ -fPIC -Wall -Wextra -shared -o libsoexample.so soexample.cpp
Quando eseguo il file python, viene visualizzato il seguente errore:
>> python soexample.py
Traceback (most recent call last):
File "soexample.py", line 13, in <module>
cpplib.func_py(cppobj,array)
ctypes.ArgumentError: argument 2: <type 'exceptions.TypeError'>: Don't know how to convert parameter 2
Come correggere correttamente questo sfortunato TypeError
?
ritengo brevi int di C sono 16 bit. L'int numpy predefinito, d'altra parte, è in genere 32 bit. Puoi provare a creare il tuo array come 'array = np.array ([[1,2,3], [1,2,3]], dtype = np.uint16)' e vedi cosa succede. – Jaime