Questions tagged [micr]

Magnetic Ink Character Recognition, or MICR, is a character recognition technology used primarily by the banking industry to facilitate the processing of cheques.

Magnetic Ink Character Recognition, or MICR, is a character recognition technology used primarily by the banking industry to facilitate the processing of cheques. The technology allows computers to read information (such as account numbers) off printed documents. Unlike barcodes or similar technologies, however, MICR codes can be easily read by humans.

23 questions
0
votes
0 answers

C++ adding MICR line to print pages

I am in need of some help adding a MICR line to a printed output file. I have the numbers (transit, account, and trans code) needed for the MICR line. What I need is to show the IDAutomation transit number characters (|:) that surround the transit…
lsieting
  • 85
  • 2
  • 13
0
votes
1 answer

How to scan and read MICR code on Bank cheque using OCR scanner or any API available in MobileFirst Platform?

One of my android projects requires a feature of OCR reader to read the MICR code on the bank cheque leaf in. We have tried a sample code of android native application which is scanning the page and reading the maximum different types of fonts. But…
0
votes
2 answers

Any Java based examples to use LEADTOOLS for reading Bank Check's details?

Looking for Java based examples to use LEADTOOLS SDK for reading Bank Check's details like Account Number, MICR Code, etc. Please share if any of you have worked upon/seen. Thanks.
Mahantesh H
  • 59
  • 1
  • 1
  • 9
0
votes
1 answer

String is Not Numeric

Having an issue when attempting to run a Mod formula against a field. I keep receiving the error "String is Not Numeric" and so far I have not been able to get ToNumber to correctly format the field. The field is being generated by adding a static…
0
votes
1 answer

Design Pattern for parsing serial strings

What design pattern do you suggest for the following case: A class is needed to represent the serial string of some documents which consists of numeric characters. There are 4 types of serials and the first character of the string specifies the…
MCA
  • 3
  • 5
0
votes
1 answer

How to recognize MICR codes?

I want to write a c++ program that can be used to scan MICR codes same as -(Android : How to recognize MICR codes). I have used tesseract before to scan texts from a image and it worked fine but it fails miserably and gives me stupid results when i…
user3385655
0
votes
3 answers

MICR Check Printing not working on Windows-7

I maintain a PowerBuilder Classic 12.5 application which has functionality to print checks on a Source Technologies MICR printer. The application has been running fine in a Windows XP environment. We are trying to move to a Windows-7 operating…
-11
votes
1 answer

Assignment aand Precedence of operators in c

somebody explain this please don't anyy me with ridiculous code #include #include int main() { int a = 5 ; printf( "%d %d %d %d %d", a, ++a, a++,--a,a--); getchar(); return 0; }
Hussain Wali
  • 183
  • 1
  • 4
  • 11
1
2