Point, Shoot and Translate into English
edstromp points out this New York Times "story on using a pocket pc to translate a street sign. It requires at least a dialup connection as it sends the photo to a server for the majority of the processing: OCR, translation, English overlay for new image, and then transmission back to the user. All said and done, it takes about 15 seconds to translate a street sign. Put this with some augumented reality, and you have a rather useful tool."
# insert whitespace into long words, convert <>& to HTML entities
and here is some more text.if ($fmode == LITERAL || $fmode == EXTRANS || $fmode == ATTRIBUTE || $fmode == CODE) {
# Encode all HTML tags
$str =~ s/&/&/g;
$str =~ s/</</g;
$str =~ s/>/>/g;
### this is not ideal; we want breakHtml to be
### entity-aware
# attributes are inside tags, and don't need to be
York Times "story on using a pocket pc to translate a street sign. It requires at least a dialup connection as it sends the photo to a server for the majority of the processing: OCR, translation, English overlay for new image, and then transmission back to the user. All said and done, it takes about 15 seconds to translate a street sign. Put this with some augumented reality, and you have a