python调用c++版本dll05-传入有参返回的图片处理

经过前几篇的介绍,想必简单的流程已经熟悉了,直接上代码

有参返回 uchar*

c++代码

#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/opencv.hpp>                   
#include   <stdlib.h>   
#define DLLEXPORT extern "C" __declspec(dllexport)

using namespace cv;

DLLEXPORT  uchar* cpp_canny(int height, int width, uchar* data) {
	cv::Mat src(height, width, CV_8UC1, data);
	cv::Mat dst; 
	Canny(src, dst, 100, 200);

	uchar* buffer = (uchar*)malloc(sizeof(uchar)*height*width);
	memcpy(buffer, dst.data, height*width);
	return buffer;

}
DLLEXPORT void release(uchar* data) {
	free(data);
}

python调用

import cv2
from numpy.ctypeslib import ndpointer
import ctypes
import numpy as np

dll=ctypes.WinDLL('MyDLL.dll') 

def cpp_canny(input):
    if len(img.shape)>=3 and img.shape[-1]>1:
        gray=cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)

    h,w=gray.shape[0],gray.shape[1] 
    
    # 获取numpy对象的数据指针
    frame_data = np.asarray(gray, dtype=np.uint8)
    frame_data = frame_data.ctypes.data_as(ctypes.c_char_p)  
    
    # 设置输出数据类型为uint8的指针
    dll.cpp_canny.restype = ctypes.POINTER(ctypes.c_uint8)
     
    # 调用dll里的cpp_canny函数
    pointer = dll.cpp_canny(h,w,frame_data)  
     
    # 从指针指向的地址中读取数据,并转为numpy array
    np_canny =  np.array(np.fromiter(pointer, dtype=np.uint8, count=h*w)) 
    
    return pointer,np_canny.reshape((h,w))

img=cv2.imread('input.png')
ptr,canny=cpp_canny(img)
cv2.imshow('canny',canny)
cv2.waitKey(2000)
#将内存释放
dll.release(ptr)

猜你喜欢

转载自blog.csdn.net/qq_34904125/article/details/126801241