Skip to content

Commit

Permalink
tmp work
Browse files Browse the repository at this point in the history
  • Loading branch information
lin.yao authored and lin.yao committed May 29, 2015
1 parent 1a0ee54 commit ce58f00
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 195 deletions.
5 changes: 2 additions & 3 deletions src/org/easypr/core/PlateDetect.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ public class PlateDetect {
* @return
*/
public int plateDetect(final Mat src, Vector<Mat> resultVec) {
Vector<Mat> matVec = new Vector<Mat>();
int resultLo = plateLocate.plateLocate(src, matVec);
if (0 != resultLo)
Vector<Mat> matVec = plateLocate.plateLocate(src);
if (0 == matVec.size())
return -1;
int resultJu = plateJudge.plateJudge(matVec, resultVec);

Expand Down
Loading

0 comments on commit ce58f00

Please sign in to comment.