简体   繁体   中英

installing opencv and javacv

I'm trying to use opencv 3.0 in java to detect hand movements. Does opencv 3.0 comes bundled with javacv or do i have to install the corresponding javacv ?

ps:No javacv version seems to match with opencv3.0

JavaCV 's OpenCV version covered by javacpp-presets . Latest version of javacv uses OpenCV 3.0.

You may check it from javacv's pom.xml , to see its dependencies:

<dependency>
  <groupId>org.bytedeco.javacpp-presets</groupId>
  <artifactId>opencv</artifactId>
  <version>3.0.0-${javacpp.version}</version>
</dependency>

Javacpp-presets opencv readme file: JavaCPP Presets for OpenCV

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM