GithubHelp home page GithubHelp logo

dogecv / dogecv Goto Github PK

View Code? Open in Web Editor NEW
68.0 23.0 64.0 13.48 MB

FTC Vision Library

Home Page: https://discord.gg/colton

License: GNU General Public License v3.0

Java 100.00%
ftc robotics vision opencv memes

dogecv's Issues

Should color filter values be clipped?

Wondering... In the filtering methods, should the HSV ranges be clipped?.

eg: in the following code, a poor user-choice of perfect and range values could result in negative or excessive HSV values...

Scalar lower = new Scalar(perfect.val[0] - range.val[0], perfect.val[1] - range.val[1],perfect.val[2] - range.val[2]);
        Scalar upper = new Scalar(perfect.val[0] + range.val[0], perfect.val[1] + range.val[1],perfect.val[2] + range.val[2]);

AsyncFilterRunner missing from 2018.2 Release

Line 7 in SamplingOrderDetector.java in 2018.2 imports com.disnodeteam.dogecv.filters.AsyncFilterRunner but there doesn't seem to be an associated file / class in filters. This wasn't there in 2018.1, and 2018.2 seems to build fine after commenting the line out.

Distance Scoring

One of the goals you have listed is "Add in distance scoring between samples to increase accuracy".

I was curious how distance scoring is any different from area scoring? Wouldn't they be the same thing?

TensorFlow (FTC Supported)

Just wanted to mention that FTC now officially supports TensorFlow for vision tracking, so teams may use that since DogeCV is still in alpha.

Gradle sync failed.

ERROR: Could not find method implementation() for arguments [project ':DogeCV'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

error when running app on phones

The app can build properly, but when I try and run it on a phone it gives me this error:
"error: cannot access CameraBridgeViewBase
class file for org.opencv.android.CameraBridgeViewBase not found"

How do I access the alignedX var outside of the class

I'm working on a opmode with gold align detector, and i want to use the alignedX variable in my code to use. I've messed around with some values and things but can't figure it out. More spicificly, I'm looking for the center of what the detector considers aligned.

Will the OPENCVLibrary3 be in the Zip File as it was last year?

When we downloaded the DOGE CV zip file, we didn't see the OPENCVLibrary3 in it so it also didn't show up in Android Studio. In last year's package the OPENCV library was there but this year it's not in the folder. Do you guys have any plan on putting it in the zip file? Also, which OpenCV library version is used for Doge CV.

Gradle Sync Issue with new SkyStone FTC SDK

When i install the dogeCV libraries into my project with the updated Skystone SDK, i get this error.

ERROR: Failed to resolve: :RobotCore-release:
Affected Modules: DogeCV

does anyone know a way to fix this with the new SDK???

FTC Robot controller app crashing at stop?

TI'm experiencing a bug in which after using the Vuforia phone testing OpMode(which works correctly), either after init or after starting the FTC Robot Controller app on the RC phone crashes, with an android dialog saying "Unfortunately, FTC Robot Controller has stopped." This will probably prove to be an issue for us in the future, is there any way to fix this? We are using ZTE speeds for now, but we might upgrade later down the line. Is there any way to stop the app from crashing?

Issue with building gradle

Build Output

Information:Gradle tasks [:FtcRobotController:generateDebugSources, :FtcRobotController:generateDebugAndroidTestSources, :FtcRobotController:mockableAndroidJar, :FtcRobotController:compileDebugAndroidTestSources, :FtcRobotController:compileDebugUnitTestSources, :FtcRobotController:compileDebugSources, :TeamCode:generateDebugSources, :TeamCode:generateDebugAndroidTestSources, :TeamCode:mockableAndroidJar, :TeamCode:compileDebugAndroidTestSources, :TeamCode:compileDebugUnitTestSources, :TeamCode:compileDebugSources, :openCVLibrary3:generateDebugSources, :openCVLibrary3:generateDebugAndroidTestSources, :openCVLibrary3:mockableAndroidJar, :openCVLibrary3:compileDebugAndroidTestSources, :openCVLibrary3:compileDebugUnitTestSources, :openCVLibrary3:compileDebugSources, :DogeCV:generateDebugSources, :DogeCV:generateDebugAndroidTestSources, :DogeCV:mockableAndroidJar, :DogeCV:compileDebugAndroidTestSources, :DogeCV:compileDebugUnitTestSources, :DogeCV:compileDebugSources]
C:\Users\Sam\Desktop\Botics\DogeCV\src\main\java\com\disnodeteam\dogecv\Dogeforia.java
Error:(21, 57) error: package org.firstinspires.ftc.robotcore.external.function does not exist
Error:(22, 57) error: package org.firstinspires.ftc.robotcore.external.function does not exist
Error:(26, 66) error: package org.firstinspires.ftc.robotcore.internal.camera.libuvc.api does not exist
Error:(27, 66) error: package org.firstinspires.ftc.robotcore.internal.camera.libuvc.api does not exist
Error:(28, 66) error: package org.firstinspires.ftc.robotcore.internal.camera.libuvc.api does not exist
Error:(30, 56) error: VuforiaTrackableImpl is not public in org.firstinspires.ftc.robotcore.internal.vuforia; cannot be accessed from outside package
Error:(32, 73) error: package org.firstinspires.ftc.robotcore.internal.vuforia.externalprovider does not exist
Error:(118, 22) error: cannot find symbol method convertFrameToBitmap(Frame)
Error:Execution failed for task ':DogeCV:compileDebugJavaWithJavac'.

Compilation failed; see the compiler error output for details.
Information:BUILD FAILED in 1s
Information:9 errors
Information:0 warnings
Information:See complete output in console

Hello!

This is my first time using Android Studio and DogeCV for FTC, so sorry if this is a PEBKAC error. I have been trying to import DogeCV/OpenCV, but whenever I try to build the app, it crashes with this output. The errors seem to be in the Dogeforia.java file. My FTC App fork can be found at https://github.com/FeehanRobotics/ftc_app.

Thank you!

Fails gradle lint

We are using TravisCI and DogeCV fails the gradle lint stage:

/home/travis/build/ftc16072/2019preseason/DogeCV/build.gradle:4: Error: The compileSdkVersion (23) should not be lower than the targetSdkVersion (27) [GradleCompatible]
1757 compileSdkVersion 23
1758 ~~~~~~~~~~~~~~~~~~~~

android 5.1 support

Can't use library because OpenCV3 uses old API(less 21). Can you update it?

Documentation for Generic Detector and Color Filter API

I would love to use your framework to make a custom Detector for a project I'm trying, but your wiki page for the Generic Detector is vague and pretty hard to understand. Can you please clarify what some of the fields do? The Color Filter API's page is easier to understand, but still leaves a little to be desired.

Can you please supply a better guide to creating customized detectors using Generic Detector and Color Filter API?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.