반응형
OpenCV packaged with native libraries and loader for multiple platforms.
License | BSD |
---|---|
Used By | 5 artifacts |
<dependency>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>3.2.0-1</version>
</dependency>
pom.xml에 디펜던시에 추가하면 된다.
필자는 spring-boot 사용하고 있고, 아래 config 클래스를 추가하였다.
@Configuration
public class LibLoadingConfig {
static {
nu.pattern.OpenCV.loadShared();
System.loadLibrary(org.opencv.core.Core.NATIVE_LIBRARY_NAME);
}
}
*** 위 버전중 2.x 버전중에 몇가지가 nu.pattern.OpenCV.loadShared(); 가 먹히질 않음.. ***
반응형
'JAVA/SPRING > SPRING-BOOT' 카테고리의 다른 글
[Spring Boot]Spring MVC JSP 웹 튜토리얼(인텔리제이용 intelliJ) - 1 (0) | 2019.10.02 |
---|---|
Spring Boot의 application.properties에 대해.. (0) | 2018.02.09 |
Spring Boot RESTFul Web Service Example – GET/POST/PUT/PATCH/DELETE (0) | 2018.02.01 |
[Spring Boot]log4j2 RollingFileAppender 튜토리얼 (0) | 2017.12.05 |
[Spring Boot]log4j2 구성 튜토리얼 (0) | 2017.12.05 |