* Add support for YOLO v8 Pose post-processing.
The output has additional values in the 'mask' data for the keypoints.
- Update the post processing steps to support extracting and scaling the keypoints.
- Simplify the existing step to split out the boxes and scores by using a basic Split operator if there is no confidence score for a bounding box to apply to the class scores.
- Confidence score for a bounding box is YOLO versions prior to 8.
- Update existing tests
TODO: Add unit tests for new Steps. They have been manually validated with the real model for now.
* Changes to support pre-decoded input.
Needs cleanup.
* Support an overall max number of detections as well as per-class detections.
* Expand Identity to support multiple inputs
Fix issue with incorrect score being selected by NMS (was max and not score for selected clas)
Fix TopK usage so result ordering is consistent when it is not used
Add unit tests.
* Update docs and some cleanups
* Use Union
* Separate ops in operators/cv2 that do and do not require codecs so they're easier to include/exclude from a build.
Remove jpeg2000 from opencv file formats. It costs 1MB and is (afaict) not a common format.
Add ability to enable/disable cv2 ops to gen_selectedops.py.
* Remove super resolution pre/post process ops that are no longer needed.
* Replace super resolution e2e tutorial
Co-authored-by: Wenbing Li <10278425+wenbingl@users.noreply.github.com>
* Update the README.md for the release.
* polish the code
* add the mobile section
* update the example code in the README.md
* correction on pytorch tutorial