How to install JavaCV on Android and use FrameGrabber

后端 未结 4 1200
感动是毒
感动是毒 2021-02-06 07:14

Could someone tell me where I\'m doing wrong? These are the steps that I have followed:

  1. Downloaded the adt-bundle-windows from android developer website

4条回答
  •  情书的邮戳
    2021-02-06 07:52

    Gradle:

    compile 'org.bytedeco:javacv:1.0' compile 'org.bytedeco.javacpp-presets:opencv:2.4.11-0.11:android-x86' compile 'org.bytedeco.javacpp-presets:ffmpeg:2.6.1-0.11:android-x86' compile 'org.bytedeco.javacpp-presets:opencv:2.4.11-0.11:android-arm' compile 'org.bytedeco.javacpp-presets:ffmpeg:2.6.1-0.11:android-arm'

    this will integrate javacv to android

提交回复
热议问题