Skip to content

Commit

Permalink
修改循环的次数从0
Browse files Browse the repository at this point in the history
  • Loading branch information
hopef committed Jul 11, 2017
1 parent a4c0cd6 commit 307577b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtcnn-caffe/caffe-mtcnn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void main(){

///////////////////////////////////////////////////////PNet
int wnd = 12;
for (int k = 9; k < scales_.size(); ++k){
for (int k = 0; k < scales_.size(); ++k){
vector<Bbox> pnetBox;
vector<orderScore> pnetOrder;
float scale = scales_[k];
Expand Down

0 comments on commit 307577b

Please sign in to comment.