Method | Description | |
---|---|---|
MainPage ( ) : System |
Default construtor. Initializes component(page) and RecognizerControl
|
|
mRecognizer_OnCameraError ( Microblink error ) : void |
Here camera errors should be handled.
|
|
mRecognizer_OnDisplayDefaultTarget ( DetectionStatus detectionStatus ) : void | ||
mRecognizer_OnDisplayNewTarget ( Windows uleft, Windows uright, Windows lleft, Windows lright, DetectionStatus detectionStatus ) : void | ||
mRecognizer_OnDisplayPointSet ( IList |
||
mRecognizer_OnInitializationError ( InitializationErrorType errorType ) : void |
Handles initialization error(invalid license)
|
|
mRecognizer_OnScanningDone ( IList |
Handles completed scanning events. Navigates to results page if scanning was successful.
|
Method | Description | |
---|---|---|
OnNavigatedTo ( System.Windows.Navigation.NavigationEventArgs e ) : void |
Called when this page is navigated to. Starts the recognition process.
|
|
OnNavigatingFrom ( System.Windows.Navigation.NavigatingCancelEventArgs e ) : void |
Called when the user leaves this page. Stops the recognition process.
|
|
OnOrientationChanged ( OrientationChangedEventArgs e ) : void |
Handles orientation change event by animating buttons and rectangle and forwarding the event to RecognizerControl
|
Method | Description | |
---|---|---|
AnimateButtons ( OrientationChangedEventArgs e ) : void |
Animate rotation of "Cancel" and "Light" buttons on orientation change.
|
|
InitializeRecognizer ( ) : void |
Initializes the RecognizerControl
|
|
mCancelButton_Click ( object sender, |
Handles "Cancel" button click event by terminating RecognizerControl and shuting down the application.
|
|
mCancelButton_Loaded ( object sender, |
Sets up "Cancel" button rotation center to be at the center of the button. We must do it at button loaded event when button dimensions are known.
|
|
mLightButton_Click ( object sender, |
Handles "Light" button click event.
|
|
mLightButton_Loaded ( object sender, |
Sets up "Light" button rotation center to be at the center of the button. We must do it at button loaded event when button dimensions are known.
|
protected OnNavigatedTo ( System.Windows.Navigation.NavigationEventArgs e ) : void | ||
e | System.Windows.Navigation.NavigationEventArgs | |
return | void |
protected OnNavigatingFrom ( System.Windows.Navigation.NavigatingCancelEventArgs e ) : void | ||
e | System.Windows.Navigation.NavigatingCancelEventArgs | |
return | void |
protected OnOrientationChanged ( OrientationChangedEventArgs e ) : void | ||
e | OrientationChangedEventArgs | orientation change event info |
return | void |
public mRecognizer_OnCameraError ( Microblink error ) : void | ||
error | Microblink | |
return | void |
public mRecognizer_OnDisplayDefaultTarget ( DetectionStatus detectionStatus ) : void | ||
detectionStatus | DetectionStatus | |
return | void |
public mRecognizer_OnDisplayNewTarget ( Windows uleft, Windows uright, Windows lleft, Windows lright, DetectionStatus detectionStatus ) : void | ||
uleft | Windows | |
uright | Windows | |
lleft | Windows | |
lright | Windows | |
detectionStatus | DetectionStatus | |
return | void |
public mRecognizer_OnDisplayPointSet ( IList |
||
points | IList |
|
return | void |
public mRecognizer_OnInitializationError ( InitializationErrorType errorType ) : void | ||
errorType | InitializationErrorType | initialization error type(only INVALID_LICENSE_KEY at the moment) |
return | void |
public mRecognizer_OnScanningDone ( IList |
||
resultList | IList |
list of recognition results |
recognitionType | RecognitionType | type of recognition |
return | void |