Guest User

Untitled

a guest
Apr 3rd, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. ; 30-50, 40-60, 50-70, 60-80
  2. char_analysis_min_pct = 0.30
  3. char_analysis_height_range = 0.20
  4. char_analysis_height_step_size = 0.10
  5. char_analysis_height_num_steps = 4
  6.  
  7. segmentation_min_speckle_height_percent = 0.3
  8. segmentation_min_box_width_px = 4
  9. segmentation_min_charheight_percent = 0.5;
  10. segmentation_max_segment_width_percent_vs_average = 1.35;
  11.  
  12. plate_width_mm = 304.8
  13. plate_height_mm = 152.4
  14.  
  15. multiline = 0
  16.  
  17. char_height_mm = 70
  18. char_width_mm = 35
  19. char_whitespace_top_mm = 38
  20. char_whitespace_bot_mm = 38
  21.  
  22. template_max_width_px = 120
  23. template_max_height_px = 60
  24.  
  25. ; Higher sensitivity means less lines
  26. plateline_sensitivity_vertical = 25
  27. plateline_sensitivity_horizontal = 45
  28.  
  29. ; Regions smaller than this will be disqualified
  30. min_plate_size_width_px = 70
  31. min_plate_size_height_px = 35
  32.  
  33. ; Results with fewer or more characters will be discarded
  34. postprocess_min_characters = 5
  35. postprocess_max_characters = 7
  36.  
  37. detector_file = us.xml
  38.  
  39. ocr_language = lus
  40.  
  41. ; Override for postprocess letters/numbers regex.
  42. postprocess_regex_letters = [A-Z]
  43. postprocess_regex_numbers = [0-9]
  44.  
  45. ; Whether the plate is always dark letters on light background, light letters on dark background, or both
  46. ; value can be either always, never, or auto
  47. invert = auto
Add Comment
Please, Sign In to add comment