Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 419 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 419 Bytes

PlateRecognizer for Java

Usage

  • Import PlateRecognizer: import com.ragerant.PlateRecognizer.
  • Use static function recognize by passing in image File object.
  • It will return a String representing the license plate.

e.g.

  import com.ragerant.PlateRecognizer

  public static main(String[] args) {
    File img = new File("path/to/file");
    licPlate = PlateRecognizer.recognize(img);
  }

EZ