项目作者: serivesmejia

项目描述 :
Java bindings for the SimpleBlobDetector to EasyOpenCV. Intended for usage in the FTC Competition.
高级语言: C++
项目地址: git://github.com/serivesmejia/NativeBlobDetector.git
创建时间: 2020-11-18T17:55:43Z
项目社区:https://github.com/serivesmejia/NativeBlobDetector

开源协议:

下载


NativeBlobDetector

Build Status

🤷‍️ What is this?

This library includes Java bindings for the SimpleBlobDetector to EasyOpenCV, since for some reason it lacks of this feature. It also provides a better way of instantating it by using a Parameters class, which is missing in the original OpenCV bindings.

📦 Installation (Credit to DogeCV)

Gradle

This library requires EasyOpenCV already preinstalled

  1. Pull up Android Studio, with the FTC application SDK open
  2. Go to the root build.gradle
  3. To the repositories section, add the lines
    1. allprojects {
    2. repositories {
    3. maven { url 'https://jitpack.io' } // this line!
    4. }
    5. }
  4. Add the line implementation 'com.github.serivesmejia:NativeBlobDetector:1.0.0' to TeamCode’s build.release.gradle, inside the dependencies block
  5. Press the Sync Now button that will appear in the top right

Native Library on the phone