-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance openCV to support optiicalFlow - Video.calcOpticalFlowPyrLK (Lucas-Kanade)method #585
Comments
In fact, we only integrate 3 modules:
Unfortunately, we don't want to add any other opencv modules to the basic version, for reasons of binary volume and system compatibility. You'll have to look into adding these in additional custom plugins. For example, we have a video plugin with ffmeg (80 MB) that will be distributed as an additional plugin. |
@nroduit Thank you very much for responding. Could you please provide more insights on custom plugins. I tried following to add openCV but Weasis is failing to start up.
|
According to the errors, I imagine you've modified the core module and created impossible dependencies. The core module cannot have dicom-codec as a dependency (this will produce cyclic dependencies), see the OSGI module hierarchy. |
@nroduit We followed the same module hierarchy and Its all working fine without newly created plugin. We are facing issue only when adding newly created plugin dependency in weasis-core. Please find attached pom.xml for both weasis-core and custom-plugin. Attached complete error logs also. |
You can't attach plugins that use DICOM functionality to weasis-core. This will create cyclic dependencies. You need to create a new launch context (see example) and add your plugins. Plugin documentation remains valid as long as properties files are replaced by json files. |
Could you please check and let me know if I missed anything. |
Is number 23 in below exception anyway related to felix.auto.install.23 in config.properties?. This is related to Weasis openCV. Adding another openCV causing this issue?
|
Is your feature request related to a problem? (optional)
No response
Description of the new feature/enhancement
Currently openCV provided in Weasis is not supporting all features provided by original openCV. It seems you guys trimmed some features of openCV and developed some third party libraries. We have a requirement in our application to use Video.calcOpticalFlowPyrLK (Lucas-Kanade)method but this is not available in Weaisis's openCV. It would be helpful if you include optical flow related features in openCV. Please let me know if you need any more details
Proposed technical implementation details (optional)
No response
Describe alternatives you've considered (optional)
No response
Additional context (optional)
No response
The text was updated successfully, but these errors were encountered: