项目作者: denismakogon

项目描述 :
Oracle Linux 7 OpenCV-ready images (compatible with JavaCV and OpenPNP)
高级语言: Dockerfile
项目地址: git://github.com/denismakogon/oraclelinux-opencv.git
创建时间: 2019-07-16T20:44:17Z
项目社区:https://github.com/denismakogon/oraclelinux-opencv

开源协议:Apache License 2.0

下载


Java [11 | 12 | 13 EA | 14-Internal] OpenCV 4.1.0 docker images based on Oracle Linux 7

Purpose of this repo is to provide a set of multi-stage docker images ready for OpenCV-based development in Java.

There’s only one image:

  • denismakogon/oraclelinux7-opencv:4.1.0-build

that contains OpenCV libs installed ready to be applied within multistage builds or through “lift-and-shift”.

Lift-and-Shift binaries

If you’d like to use OpenCV binaries instead of using my docker images, please take a look at release folder.
This folder contains a set of archives for each Java distribution (11 for Debian and 13 for Oracle Linux, for now).

Here’s how you can apply OpenCV binaries to Java 13 image:

  1. FROM openjdk:13
  2. ENV PKG_CONFIG_PATH /usr/local/lib64/pkgconfig
  3. ENV LD_LIBRARY_PATH /usr/local/lib64
  4. RUN curl -L https://raw.githubusercontent.com/denismakogon/oraclelinux-opencv/master/apply_binaries.sh | /bin/bash