electron导入opencv4nodejs

第一步:本机安装opencv(将下列文件拷贝到本机/usr/local/***文件夹)

bin_include.zip

lib-1.zip

lib-2.zip

第二步:项目安装opencv4nodejs(按照下面链接npm安装方式配置elctron版本,然后安装)
打印版本信息:console.log('版本信息'+JSON.stringify(process.versions));

https://www.electronjs.org/docs/tutorial/using-native-node-modules

# Electron 的版本。
export npm_config_target=1.2.3
# Electron的目标架构, 可用的架构列表请参见
# https://electronjs.org/docs/tutorial/support#supported-platforms
export npm_config_arch=x64
export npm_config_target_arch=x64
# 下载 Electron 的 headers。
export npm_config_disturl=https://electronjs.org/headers
# 告诉 node-pre-gyp 我们是在为 Electron 生成模块。
export npm_config_runtime=electron
# 告诉 node-pre-gyp 从源代码构建模块。
export npm_config_build_from_source=true
export OPENCV4NODEJS_DISABLE_AUTOBUILD=1

第三步:安装opencv4nodejs

npm install opencv4nodejs

你可能感兴趣的:(electron导入opencv4nodejs)