We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
这里的top取值不应该是 top = row_ind+j*length 。这会导致在i=1时,在outs 取出的值无法放到outputs中正确的位置。 我的代码中改为 top = row_ind*self.anchor_num+j*length 是有效的。
top = row_ind+j*length
i=1
outs
outputs
top = row_ind*self.anchor_num+j*length
yolo-fastestv2-opencv/main.py
Lines 86 to 91 in f865b7c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这里的top取值不应该是
top = row_ind+j*length
。这会导致在i=1
时,在outs
取出的值无法放到outputs
中正确的位置。我的代码中改为
top = row_ind*self.anchor_num+j*length
是有效的。yolo-fastestv2-opencv/main.py
Lines 86 to 91 in f865b7c
The text was updated successfully, but these errors were encountered: