Task composer factory update#626
Open
marip8 wants to merge 3 commits into
Open
Conversation
| const auto& executor_plugin_info = impl_->executor_plugin_info; | ||
| auto cm_it = executor_plugin_info.plugins.find(name); | ||
| if (cm_it == executor_plugin_info.plugins.end()) | ||
| try |
Contributor
There was a problem hiding this comment.
My only concern with this change is that the plugins are not intended to be reconfigurable after being created which can lead to incorrect usage. Instead what if this method generated a meta package (which needs to be defined) that this function produces. Once option I explored in the past was leveraging a yaml file which include this information which could also be used for the yaml editor in tesseract_qt.
Contributor
There was a problem hiding this comment.
Here is the schema I was exploring at the time. I think it would be good to discuss a little more because this could benefit all plugins throughout tesseract.
Contributor
|
I ported the get available changes into a separate PR to get those in. #717 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the task composer plugin factory class to:
Together, these changes support applications that need to introspect the plugins available to the loader and to load plugins without any configuration information, such as a GUI for constructing task composer graphs.