driverOptions.put_int('Color Source', 'Visible Colors') Boost.Python.ArgumentError: Python argument types in PropertyTree.put_int(PropertyTree, str, str) did not match C++ signature: put_int(class boost::property_tree::basic_ptree<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > {lvalue}, class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > item_path, int value)
时间: 2023-09-22 17:07:34 浏览: 153
pdo详解(中文教程)
4星 · 用户满意度95%
这个错误提示是因为 Python 传递给 C++ 函数的参数类型与 C++ 函数签名不匹配。具体来说,C++ 函数签名中要求第二个参数为 `std::string` 类型,而 Python 中传递的是 `str` 类型。可以将 Python 中的 `str` 转换为 `std::string`,例如:
```python
import boost.python
from boost.python import *
import std
driverOptions.put_int(std.string('Color Source'), 1)
```
或者在函数调用时将字符串转换为 `std::string` 类型:
```python
driverOptions.put_int(boost.python.str('Color Source'), 1)
```
阅读全文