Closed AkarJosh closed 1 year ago
Apologies for the delayed response, apparently github doesn't like to email me
That's a great idea actually! It's quite simple because EOCV-Sim is already hosted in the same repo where meepmeep is, so you would follow the same instructions for creating a java-library module like meepmeep, and you can just pull EOCV-Sim as a dependency like
repositories {
maven { url 'https://jitpack.com/' }
}
dependencies {
implementation 'com.github.deltacv:EOCV-Sim:EOCV-Sim:3.3.2'
}
Then you can create a main function and initialize eocv sim in a single line:
fun main() = EOCVSim().init()
From there you just need to run that main function and it will automatically find your OpenCvPipeline-s in the module. I will add proper docs for this feature in the future, thanks so much for the idea!
seems like .start() is private im using version 3.4.0 btw.
seems like .start() is private im using version 3.4.0 btw.
Oh yeah my bad, it's .init() I edited my first response as well
Now im getting this error
Exception in thread "main" java.lang.NoClassDefFoundError: org/opencv/core/Size
at com.github.serivesmejia.eocvsim.EOCVSim.
Apologies for the lack of tracking on my end. If you still need help please open a new issue
Our team uses kotlin so we cloned the eocv-sim repo as a separate branch in our repo.
Make EOCV-Sim a module like meepmeep.