python中调用C和C++

本文详细介绍了如何在Visual Studio中生成DLL文件,包括设置配置类型为DLL、编写C和C++样例代码。同时,文章还展示了在Python中使用ctypes库调用DLL文件的步骤,包括转换字符串格式和调用具体函数的示例。
摘要由CSDN通过智能技术生成

1. 生成dll文件

在visual studio中, project->properties->configuration properties->general->Configuration Type中选择dll.

然后build改项目生成dll文件。

注意,如果文件后缀名称是.c,则使用如下格式:

#include<stdio.h>
#include<malloc.h>

//无参数,无返回类型
__declspec(dllexport) void __stdcall hello()
{
	printf("Hello,NEU!\n");
}

如果后缀是cpp,则使用如下格式:

#include <iostream>

extern "C"{
    __declspec(dllexport) bool evaluateImage(const char* resultFilename, const char* referenceFilename, const char* roiFilename, const char* txtFilename, double& score);
}

bool evaluateImage(const char* resultFilename, const char* referenceFilename, const char* roiFilename, const char* txtFilename, double& score)
{
    
    std::cout << resultFilename << " " << referenceFilename <<std::endl;
    return false;
}

2. 调用dll文件

import ctypes
from ctypes import *

# 下面两行不能少,否则报错
import os
os.add_dll_directory(r'F:\data\raw_data\Task005_Ski10\new\new\liib_test\x64\Debug')

# 将python字符串转c++格式
def convert2c_strint(py_str):
    return create_string_buffer(py_str.encode("UTF-8"))
    
ll = cdll.LoadLibrary   
lib = ll("liib_test.dll")

res = "aaa"
ref = "bbb"
roi = "ccc"
txt = "ddd"

score = 0   
ok = lib.evaluateImage(convert2c_strint(res), convert2c_strint(ref), convert2c_strint(roi), 
            convert2c_strint(txt), score)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值