Created
August 3, 2011 04:23
-
-
Save mbmccormick/1121901 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void StartOcrConversion(Stream photoStream) | |
{ | |
byte[] photoBuffer = MainPage.StreamToByteArray(photoStream); | |
OcrService.RecognizeImageAsync( | |
HawaiiClient.HawaiiApplicationId, | |
photoBuffer, | |
(output) => | |
{ | |
this.Dispatcher.BeginInvoke(() => OnOcrCompleted(output)); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment