Skip to content

Instantly share code, notes, and snippets.

@WasabiFan
Created January 18, 2017 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WasabiFan/6c51442c860fe7033910fba482265adc to your computer and use it in GitHub Desktop.
Save WasabiFan/6c51442c860fe7033910fba482265adc to your computer and use it in GitHub Desktop.
FinderPatternFinder finder = new FinderPatternFinder(image);
Method m = finder.getClass().getDeclaredMethod("find", Map.class);
m.setAccessible(true);
return (FinderPatternInfo) m.invoke(finder, new HashMap<DecodeHintType,Object>());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment