Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an existing subset of the alphanumerics that is easier to read? In particular, is there a subset that has fewer characters that are visually ambiguous, and by removing (or equating) certain characters we reduce human error?

I know "visually ambiguous" is somewhat waffly of an expression, but it is fairly evident that D, O and 0 are all similar, and 1 and I are also similar. I would like to maximize the size of the set of alpha-numerics, but minimize the number of characters that are likely to be misinterpreted.

The only precedent I am aware of for such a set is the Canada Postal code system that removes the letters D, F, I, O, Q, and U, and that subset was created to aid the postal system's OCR process.

My initial thought is to use only capital letters and numbers as follows:

A
B = 8
C = G
D = 0 = O = Q
E = F
H
I = J = L = T = 1 = 7
K = X
M
N
P
R
S = 5
U = V = Y
W
Z = 2
3
4
6
9

This problem may be difficult to separate from the given type face. The distinctiveness of the characters in the chosen typeface could significantly affect the potential visual ambiguity of any two characters, but I expect that in most modern typefaces the above characters that are equated will have a similar enough appearance to warrant equating them.

I would be grateful for thoughts on the above – are the above equations suitable, or perhaps are there more characters that should be equated? Would lowercase characters be more suitable?

share|improve this question
   
Note: "Visually ambiguous" is meant in context of humans, not the OCR system. The solution required is to aid manual input. – Ujjwal Singh Aug 12 '12 at 15:06
1  
See ux.stackexchange.com/questions/21076/… – rwb Sep 23 '12 at 5:53
@rwb: if you make this into an answer, it will probably pick up the bounty. Discussion in UX is exactly what OP was looking for. – tucuxi Sep 23 '12 at 11:47
Is the bounty closed - I have a 'better' solution.. – Ujjwal Singh Sep 23 '12 at 15:39
1  
Posting on GitHub.. ETA 6 Hrs – Ujjwal Singh Sep 24 '12 at 12:42
show 2 more comments

4 Answers

up vote 1 down vote accepted
+150

Mainly drawing inspiration from this ux thread, mentioned by @rwb,

  • Several programs use similar things. The list in your post seems to be very similar to those used in these programs, and I think it should be enough for most purposes. You can add always add redundancy (error-correction) to "forgive" minor mistakes; this will require you to space-out your codes (see Hamming distance), though.
  • No references as to particular method used in deriving the lists, except trial and error with humans (which is great for non-ocr: your users are humans)
  • It may make sense to use character grouping (say, groups of 5) to increase context ("first character in the second of 5 groups")
  • Ambiguity can be eliminated by using complete nouns (from a dictionary with few look-alikes; word-edit-distance may be useful here) instead of characters. People may confuse "1" with "i", but few will confuse "one" with "ice".
  • Another option is to make your code into a (fake) word that can be read out loud. A markov model may help you there.
share|improve this answer

This would be a general problem in OCR. Thus for end to end solution where in OCR encoding is controlled - specialised fonts have been developed to solve the "visual ambiguity" issue you mention of. See: http://en.wikipedia.org/wiki/OCR-A_font

as additional information : you may want to know about Base32 Encoding - wherein symbol for digit '1' is not used as it may 'confuse' the users with the symbol for alphabet 'l'.

share|improve this answer
Thanks - Base32 is a good tip. Strictly speaking, the question only relates to OCR by way of the Canada Post precedent of removing characters that are ambiguous to machine readers. I am interested in a character (or glyph, really) set that is less ambiguous to humans. – Brian M. Hunt Aug 12 '12 at 13:20
You may use your custom set of symbols in base32-encoding with implementation part remaining the same. – Ujjwal Singh Aug 12 '12 at 15:09

What you seek is an unambiguous, efficient Human-Computer code. What I recommend is to encode the entire data with literal(meaningful) words, nouns in particular.

I have been developing a software to do just that - and most efficiently. I call it WCode.
Technically its just Base-1024 Encoding - wherein you use words instead of symbols.

Here are the links:
Presentation: https://docs.google.com/presentation/d/1sYiXCWIYAWpKAahrGFZ2p5zJX8uMxPccu-oaGOajrGA/edit
Documentation: https://docs.google.com/folder/d/0B0pxLafSqCjKOWhYSFFGOHd1a2c/edit
Project: https://github.com/San13/WCode (Please wait while I get around uploading...)

share|improve this answer
Very cool - thanks so much for this! – Brian M. Hunt Sep 26 '12 at 12:15
@BrianM.Hunt Check out the website: WCodes.org. I also made a video and have posted the project on crowdfunding site: IndieGoGo igg.me/at/wcode/x/2245741 – Ujjwal Singh Apr 15 at 17:30
Very clever - love it! – Brian M. Hunt Apr 15 at 18:07
Thankyou Brian ! :) – Ujjwal Singh Apr 17 at 16:30

It depends how large you want your set to be. For example, just the set {0, 1} will probably work well. Similarly the set of digits only. But probably you want a set that's roughly half the size of the original set of characters.

I have not done this, but here's a suggestion. Pick a font, pick an initial set of characters, and write some code to do the following. Draw each character to fit into an n-by-n square of black and white pixels, for n = 1 through (say) 10. Cut away any all-white rows and columns from the edge, since we're only interested in the black area. That gives you a list of 10 codes for each character. Measure the distance between any two characters by how many of these codes differ. Estimate what distance is acceptable for your application. Then do a brute-force search for a set of characters which are that far apart.

Basically, use a script to simulate squinting at the characters and see which ones you can still tell apart.

share|improve this answer
This depends heavily on the font, and even the font-size. It could also require some brute-force alignment: L and I share few pixels until you place the vertical strokes so that they overlap. – tucuxi Sep 23 '12 at 12:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.