Skip to content
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

Implementation of format parser which unrolls the used formatMap in formatClient #17

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,30 @@ The library currently provides three basic clients:
- Read back the next result (a dictionary containing all the images)
with `result = pcic.readNextFrame()`

### PCIC interface (ifmVisionAssistant)
Following structure in the process interface is required for multiple and
nested records:

* supported interface structure
- records require a special delimiter at the end like seen in below
example. default delimiters `|` and `*` can be parsed without any
changes in library.
- multiple or nested records between two blob images
- multiple models and ROIs in application which yield cascaded model
records in result.
- blob image(s) at the start or between the result


star ; X Image ; models Normalized amplitude image ; stop
| |
ID ; ROIs; Value of SP1 ; Value of SP2 | <-- default delimiter for models
| |
ID ; Process value ; Status * <-- default delimiter for ROIs

* restrictions
- single blob image at the end of multiple or nested records
- positional swap of delimiters `|` and `*` in process interface

Links
-----
O3D3xx related libraries for other programming languages:
Expand Down
Loading