Vision Portal getProcessors() #1673
Unanswered
Maxwell2345
asked this question in
Ideas
Replies: 1 comment
-
|
For now, you can try to just save your processes to a locally scoped variable and query it later. Here are some code snippets to maybe help you implement this. List<VisionProcessor> processors = new ArrayList<>();
processors.add(new MyProcessor());
processors.add(new AnotherProcessor());
VisionPortal portal = new VisionPortal.Builder()
// other setup methods
.addProcessors(processors)
.build();
// later
List<VisionProcessor> getProcessors() {
return processors;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Add a getProcessors() List to Vision Portal that returns a list of all the added Processors
Beta Was this translation helpful? Give feedback.
All reactions