web-dev-qa-db-ja.com

boost :: python:Python list to std :: vector

最後に、[]演算子を使用してpythonでstd :: vectorを使用できます。トリックは、内部ベクトルのものを処理するBoost C++ラッパーにコンテナーを提供することです。

#include <boost/python.hpp>
#include <vector>
class world
{
    std::vector<double> myvec;

    void add(double n)
    {
        this->myvec.Push_back(n);
    }

    std::vector<double> show()
    {
     return this->myvec;
    }
};

BOOST_PYTHON_MODULE(hello)
{
    class_<std::vector<double> >("double_vector")
        .def(vector_indexing_suite<std::vector<double> >())
    ;

    class_<World>("World")
     .def("show", &World::show)
        .def("add", &World::add)
    ;
 }

もう1つの課題は次のとおりです。pythonリストをstd :: vectorに変換する方法?std :: vectorをパラメーターとして期待するc ++クラスを追加しようとし、対応するラッパーコードを追加しました。

#include <boost/python.hpp>
#include <vector>
class world
{
    std::vector<double> myvec;

    void add(double n)
    {
        this->myvec.Push_back(n);
    }

    void massadd(std::vector<double> ns)
    {
        // Append ns to this->myvec
    }

    std::vector<double> show()
    {
     return this->myvec;
    }
};

BOOST_PYTHON_MODULE(hello)
{
    class_<std::vector<double> >("double_vector")
        .def(vector_indexing_suite<std::vector<double> >())
    ;

    class_<World>("World")
     .def("show", &World::show)
        .def("add", &World::add)
        .def("massadd", &World::massadd)
    ;
 }

しかし、そうすると、次のBoost.Python.ArgumentErrorが発生します。

>>> w.massadd([2.0,3.0])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
Boost.Python.ArgumentError: Python argument types in
    World.massadd(World, list)
did not match C++ signature:
    massadd(World {lvalue}, std::vector<double, std::allocator<double> >)

C++関数内のpythonリストにアクセスする方法を教えてもらえますか?

ありがとう、ダニエル

28
dmorlock

C++メソッドにPythonリストを受け入れさせるには、boost::python::listを使用する必要があります

void massadd(boost::python::list& ns)
{
    for (int i = 0; i < len(ns); ++i)
    {
        add(boost::python::extract<double>(ns[i]));
    }
}
29
Arlaharen

これが私が使うものです:

#include <boost/python/stl_iterator.hpp>

namespace py = boost::python;

template< typename T >
inline
std::vector< T > to_std_vector( const py::object& iterable )
{
    return std::vector< T >( py::stl_input_iterator< T >( iterable ),
                             py::stl_input_iterator< T >( ) );
}

入力タイプ(py :: object)が自由すぎると感じた場合は、より厳密なタイプ(ケースではpy :: list)を自由に指定してください。

23
rdesgroppes

上記の回答に基づいて、C++でpythonリストにアクセスし、C++関数からpythonリストを返す例を作成しました:

#include <boost/python.hpp>
#include <string>

namespace py = boost::python;

// dummy class
class drow{
    public:
        std::string Word;
        drow(py::list words);
        py::list get_chars();
};

// example of passing python list as argument (to constructor)
drow::drow(py::list l){
    std::string w;
    std::string token;
    for (int i = 0; i < len(l) ; i++){
        token = py::extract<std::string>(l[i]);
        w += token;
    }
    this -> Word = w;
}

// example of returning a python list
py::list drow::get_chars(){
    py::list char_vec;
    for (auto c : Word){
        char_vec.append(c);
    }
    return char_vec;
}

// binding with python
BOOST_PYTHON_MODULE(drow){
    py::class_<drow>("drow", py::init<py::list>())
        .def("get_chars", &drow::get_chars);
}

ビルド例とテストについては、pythonスクリプトをご覧ください here

Arlaharen&rdesgroppesのポインタに感謝します(しゃれは意図されていません)。

4
Andreas Grivas

pythonリストから自動変換を取得するには、コンバーターを定義する必要があります。

  1. リストが自分のタイプに変換可能かどうかをチェックします(つまり、シーケンスであるかどうか。さらに、すべての要素が必要なタイプであるかどうかをチェックすることもできますが、それは2番目のステップでも処理できます)
  2. 最初のステップが成功した場合、新しいオブジェクトを返します。シーケンス要素が必要なものに変換できない場合は、例外をスローします。

私のコード以外は何も見つかりません。コピーして貼り付けることができます このテンプレート (さまざまなタイプのファイルの末尾に特化しています)。

1
eudoxos