gpt4 book ai didi

python - 使用nodejs接收python代码

转载 作者:太空宇宙 更新时间:2023-11-04 02:15:11 24 4
gpt4 key购买 nike

我正在使用python-shell运行一个对图像进行分类的 python 脚本,如果该图像是我正在寻找的图像或不是,则返回是/否。

Node.js 代码:

app.get('/classify', function(req, res) {
var options = {
mode: 'text',
pythonOptions: ['-u'],
scriptPath: 'src/',
args: ['--image', '../../images/image.png', 'classifer.xml']
};

PythonShell.run('classify_images.py', options, function(err, results) {
if (err) throw err;
// results is an array consisting of messages collected during execution
console.log('results: %j', results);
});

res.send('classify');
});

如果我将命令作为 python 脚本运行,它可以正常工作,但是当我通过 node.js 运行它时,它会返回所有“否”。

python 命令(在 src 中)是:

python classify_images.py --image ../../images/image.png classifer.xml

最佳答案

显然我没有输入正确的文件路径 - 之后它就起作用了。

关于python - 使用nodejs接收python代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36090111/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com