Start a new topic
Math
I'm using Math part of IInk 1.3.
And I could get the recognition result from use MimeType.
I want just recognition result but this engine expressed both recognition result and calculated value.
For example,
2/3 -> 2/3 (I want this)
2/3 -> 2/3 ≃ 0.667 (This is current state)
Could you help me please?
Dear HongQ Kim,
thank you for contacting us and your question.
Currently, for such purpose, you should disable the "math.solver.enable" configuration key to false https://developer.myscript.com/docs/interactive-ink/1.2/reference/configuration/#math.
math.solver.enable
This can be done as follows in your code: conf.setBoolean("math.solver.enable",false);
Best regards,
Olivier
Dear Olivier.
Thank you for answer.
I tried what you told me, and I could get the recognition result.
By the way Is the second option in old verion impossible? (I think so..but this is enough)
mWidget.setBeautificationOption(RecognitionBeautification.BeautifyDisabled); <== conf.setBoolean("math.solver.enable", false);mWidget.setBeautificationOption(RecognitionBeautification.BeautifyFontify); <== does not existmWidget.setBeautificationOption(RecognitionBeautification.BeautifyFontifyAndSolve); <== conf.setBoolean("math.solver.enable", true);
Thank you for your kindness.
Thank you for the update.
Indeed, with the iink SDK we do not have anything similar to BeautifyFontify.
Seheon Kim
I'm using Math part of IInk 1.3.
And I could get the recognition result from use MimeType.
I want just recognition result but this engine expressed both recognition result and calculated value.
For example,
2/3 -> 2/3 (I want this)
2/3 -> 2/3 ≃ 0.667 (This is current state)
Could you help me please?
Dear HongQ Kim,
thank you for contacting us and your question.
Currently, for such purpose, you should disable the "
math.solver.enable
" configuration key to false https://developer.myscript.com/docs/interactive-ink/1.2/reference/configuration/#math.This can be done as follows in your code: conf.setBoolean("math.solver.enable",false);
Best regards,
Olivier
- Oldest First
- Popular
- Newest First
Sorted by Oldest FirstOlivier @MyScript
Dear HongQ Kim,
thank you for contacting us and your question.
Currently, for such purpose, you should disable the "
math.solver.enable
" configuration key to false https://developer.myscript.com/docs/interactive-ink/1.2/reference/configuration/#math.This can be done as follows in your code: conf.setBoolean("math.solver.enable",false);
Best regards,
Olivier
Seheon Kim
Dear Olivier.
Thank you for answer.
I tried what you told me, and I could get the recognition result.
By the way Is the second option in old verion impossible? (I think so..but this is enough)
mWidget.setBeautificationOption(RecognitionBeautification.BeautifyDisabled); <== conf.setBoolean("math.solver.enable", false);
mWidget.setBeautificationOption(RecognitionBeautification.BeautifyFontify); <== does not exist
mWidget.setBeautificationOption(RecognitionBeautification.BeautifyFontifyAndSolve); <== conf.setBoolean("math.solver.enable", true);
Thank you for your kindness.
Olivier @MyScript
Dear HongQ Kim,
Thank you for the update.
Indeed, with the iink SDK we do not have anything similar to BeautifyFontify.
Best regards,
Olivier