(String image_path)
| 765 | } |
| 766 | |
| 767 | public boolean detect(String image_path) |
| 768 | { |
| 769 | points = nativeDetectFaceSingle(image_path, data_dir); |
| 770 | if(points.length > 0) |
| 771 | getSymmetryAxis(points, center, up); |
| 772 | return points.length > 0; |
| 773 | } |
| 774 | |
| 775 | public boolean detect(Bitmap image) |
| 776 | { |
no test coverage detected