This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
nihui
/
ncnn
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
46
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix proposal roi_score_blob bug (
#430
)
tags/20180704
Chang, Hui-Tang
nihui
8 years ago
parent
99a343ce70
commit
dc2a689d10
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/layer/proposal.cpp
+ 1
- 1
src/layer/proposal.cpp
View File
@@ -360,7 +360,7 @@ int Proposal::forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& to
for (int i=0; i<picked_count; i++)
{
float* outptr = roi_score_blob.channel(i);
outptr[
i
] = scores[ picked[i] ];
outptr[
0
] = scores[ picked[i] ];
}
}
Write
Preview
Loading…
Cancel
Save