Skip to content

Commit

Permalink
Building bot fix: type casting
Browse files Browse the repository at this point in the history
  • Loading branch information
kurnianggoro committed Jun 28, 2017
1 parent 702cf63 commit 1abc204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/face/src/facemarkAAM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ namespace cv

std::vector<Point> polygon;
approxPolyDP(p,polygon, 1.0, true);
fillConvexPoly(mask, &polygon[0], (int)polygon.size(), i+1,8,0 );
fillConvexPoly(mask, &polygon[0], (int)polygon.size(), (double)i+1,8,0 );

std::vector<Point> list;
for(int y=0;y<res.height;y++){
Expand Down

0 comments on commit 1abc204

Please sign in to comment.