feat: preprocessing in python for NPU#414
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds preprocessing support in Python for NPU devices to improve compatibility and performance. The changes implement Python-based preprocessing pipelines as an alternative to embedded preprocessing for NPU devices, while also refactoring shared preprocessing logic and fixing method calls for label handling.
- Adds NPU-specific Python preprocessing pipeline setup
- Refactors ONNX adapter to use shared preprocessing utilities
- Fixes label access methods in tiler classes
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/model_api/adapters/utils.py | Adds shared preprocessing pipeline setup function and layout change utility |
| src/model_api/adapters/openvino_adapter.py | Implements NPU device detection, dynamic input reshaping, and Python preprocessing |
| src/model_api/adapters/onnx_adapter.py | Refactors to use shared preprocessing utilities and updates copyright year |
| src/model_api/models/anomaly.py | Adds NPU-specific dynamic shape handling and image resizing in preprocessing |
| src/model_api/tilers/detection.py | Updates label access to use get_label_name method |
| src/model_api/tilers/instance_segmentation.py | Updates label access to use get_label_name method |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
tybulewicz
approved these changes
Oct 14, 2025
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.
What does this PR do?
Fixes #408
Before submitting