CV2 assertion error while converting crops from cv2 to pillow - #45
Open
Manas-Ganti wants to merge 1 commit into
Open
CV2 assertion error while converting crops from cv2 to pillow #45Manas-Ganti wants to merge 1 commit into
Manas-Ganti wants to merge 1 commit into
Conversation
…any of the crops are empty arrays. Added a check to mitigate the cv2 assertion error
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.
…any of the crops are empty arrays. Added a check to mitigate the cv2 assertion error
Description
While conversion of the image crops from cv2 to pillow, cv2 will throw an assertion error if any of the crops are empty. added a check which mitigates this assertion in team.py
crops = [sv.cv2_to_pillow(crop) for crop in crops if crop.size != 0]
List any dependencies that are required for this change.
Type of change
Please delete options that are not relevant.
How has this change been tested, please provide a testcase or example of how you tested the change?
I tested on my not so accurate YOLO model on a bad quality video which often sends empty arrays for some reason so the team classifier would often crash while fitting if any empty arrays are being converted to pillow from cv2.
Any specific deployment considerations
For example, documentation changes, usability, usage/costs, secrets, etc.
Docs