栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

pybind11 C++读取图像

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

pybind11 C++读取图像

#include 
#include
#include 
#include
using namespace std;
//using namespace cv;
namespace py = pybind11;

double getimg(py::array_t input) {
	// read input arrays buffer_info
	py::buffer_info buf = input.request();
	// allocate the output buffer
	py::array_t result = py::array_t(buf.size);
	double* ptr = (double*)buf.ptr;
	double high = buf.shape[0];
	double width = buf.shape[1];
	cout << "high" << high << endl;
	cout << "width" << width << endl;
	cout << "ptr" << ptr << endl;
	//Mat mat(high, width, CV_8UC3, ptr);
	// Add both arrays

	return 1;
}

PYBIND11_MODULE(meiyan, m) {
	m.doc() = "Add two vectors using pybind11"; // optional module docstring
	m.def("getimg", &getimg, "Add two NumPy arrays");
}
import numpy as np
import cv2
import meiyan
img = cv2.imread('1.jpg')
print(np.shape(img))
print(type(img))
c = meiyan.getimg(img)
print(c)

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/723528.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号