
pybind
AI算法网奇
本人是一名资深算法工程师,优快云博客专家。多年一线算法研发经验 主要研究方向为三维重建、多模态模型。希望把我的经验和知识带给每一个喜欢钻研朋友,为中国人工智能行业添砖加瓦!
展开
-
pybind传输list
https://github.com/tdegeus/pybind11_examples/blob/master/01_py-list_cpp-vector/test.pyimport exampleA = [1.,2.,3.,4.]B = example.modify(A)print(B)pybind传输list感觉数据类型必须是单一的某个类型:#include <pybind11/pybind11.h>#include <pybind11/...原创 2020-12-10 14:30:00 · 3727 阅读 · 0 评论 -
python3 通过 pybind11 使用Eigen加速
python是很容易上手的编程语言,但是有些时候使用python编写的程序并不能保证其运行速度(例如:while 和 for),这个时候我们就需要借助c++等为我们的代码提速。下面是我使用pybind11调用c++的Eigen库的简单介绍:第一步:准备系统和IDE:Windows 10 vs2015 (用于调试c++代码) vscode (调试python代码)第二步:python虚拟环境:1.创建虚拟python虚拟环境: 在vscode的terminal中执行 ...转载 2020-12-09 17:48:49 · 2897 阅读 · 0 评论 -
pybind 传递指针
python部分:#-*- coding:utf-8 -*-import binddemob= binddemo.add(3, 4)print(b)filepath="0217.h264"vp= binddemo.pre_save(filepath, 1280, 720, 5)import osimport cv2import numpy as npimport timefrom PIL import Image #PIL pakage name is Pillow原创 2020-12-07 22:00:08 · 3623 阅读 · 1 评论 -
python调用dll 指针参数
#coding=utf-8import threadingfrom ctypes import *class ImiDeviceAttribute(Structure): _fields_ = [("vendorId", c_uint16), ("productId", c_uint16), ("deviceAddress", c_uint32), ("serialNumber", c_c...原创 2020-12-07 16:24:26 · 3347 阅读 · 0 评论 -
pybind opencv mat
python语言灵活易用,但是有时效率较低,c++效率较高,pybind可以较好的结合两者。在c++代码中引入pybind11相关库,pybind可以利用buffer将python中的一些数据类型转化为c++可用的类型。如下代码:#include<iostream>#include<vector>#include<opencv2/core/core.hpp>#include<opencv2/imgproc/imgproc.hpp>#inc...原创 2020-12-04 19:01:16 · 3039 阅读 · 1 评论 -
“pybind11::module_::def”: 未找到匹配的重载函数
“pybind11::module_::def”: 未找到匹配的重载函数#include <pybind11/pybind11.h>namespace py = pybind11; int add(int i, int j){ return i + j;} PYBIND11_MODULE(aa, m){//用宏,这里为aa,就是模块 //m.doc() = "pybind11 example plugin"; // expose add fu...原创 2020-12-04 18:07:35 · 3129 阅读 · 0 评论 -
pybind11传输文件
python open之后的bytes,加长度,c++ 接收string,需要时pBuffer.c_str(),和长度就ok了。c++别用char*,在linux下有时会报错。代码:c++using namespace std;int add_person(string cardID,string name,string pBuffer)memset(stuInPa...原创 2019-09-12 17:09:43 · 2609 阅读 · 0 评论 -
g++ 编译pybind
简单的:g++ -O3 -march=native -Wall -shared -std=c++11 -fPIC -undefined `python3 -m pybind11 --includes` example.cpp -o example`python3-config --extension-suffix`带ffmpeg:g++ -O3 -march=nati...原创 2019-06-24 15:50:10 · 2764 阅读 · 0 评论 -
pybind 回调 多线程 异常
thread代码:int RecvThread(SOCKET sockClient,py::function caminfocall) { g_caminfocall = caminfocall; //py::function caminfocall = *(py::function *)pcaminfocall; g_caminfocall(2, 0, 2)...原创 2019-04-16 16:36:05 · 2858 阅读 · 0 评论 -
pybind 播放h264
python:平均耗时在30s左右,没有cpython快。#-*- coding:utf-8 -*-import pyiotsdk as binddemoimport timeimport numpy as npfilepath="0217.h264"import cv2start=time.time()def m_callback(a,width,height,t1):...原创 2019-02-19 23:13:08 · 3014 阅读 · 0 评论 -
pybind 编码h264
pybind 编码264#include <pybind11/pybind11.h>#include <pybind11/numpy.h>#include <iostream>using namespace std;#include<windows.h>#include <io.h>#include <f...原创 2019-02-17 00:20:06 · 2664 阅读 · 0 评论 -
pybind11向C++ dll 传递数组 图像
python 通过pybind11向C++ dll 传递数组 图像传递python中的Listpybind11很贴心地帮你把vector<T>跟 python 的list做好了转换,你只需要#include <pybind11/stl.h>即可 [1]C++端代码#include <pybind11/pybind11....原创 2019-02-14 14:39:32 · 3385 阅读 · 0 评论 -
pybind播放视频
解码挺快的,0-16ms,但是不知道为什么,还没传数据,特别慢,400-800ms一张图片,#-*- coding:utf-8 -*-import pysdk as demoimport timefilepath="0217.h264"start=time.time()def m_callback(status,width,height): global sta...原创 2019-02-19 17:39:03 · 2545 阅读 · 0 评论 -
pybind11 入门
参考:https://blog.youkuaiyun.com/fitzzhang/article/details/78988682pybind demo下载可以参考:https://blog.youkuaiyun.com/longji/article/details/80232603python调用C/C++有不少的方法,如boost.python, swig, ctypes, pybind11等,这些方法有...原创 2018-07-31 15:02:32 · 5163 阅读 · 0 评论 -
vs2015编译 pybind 动态库
本人总结:pyd的文件、引用 module的名字和 pybind定义的module名字一致,PYBIND11_MODULE(pyiotsdk, m)pybind只需要引用头文件即可。根据原文,加上自己的总结:https://blog.youkuaiyun.com/u013701860/article/details/86305680https://github.com/pybind...原创 2019-02-17 18:55:39 · 3730 阅读 · 0 评论