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

[OTE][develop] Add tiling in rotated detection #1420

Merged
merged 10 commits into from
Dec 20, 2022
Prev Previous commit
Next Next commit
fix bug
eugene123tw committed Dec 9, 2022

Verified

This commit was signed with the committer’s verified signature.
scottopell Scott Opell
commit 90e2db772892e6649838b1cc98433e723ae12b02
Original file line number Diff line number Diff line change
@@ -111,7 +111,7 @@ def infer(self, frame):
predictions, frame_meta = self.core_model(frame)

# MaskRCNN returns tuple so no need to process
if not self.segm:
if self._task_type == TaskType.DETECTION:
predictions = detection2array(predictions)
return predictions, frame_meta