Slashdot Mirror


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."

1 of 159 comments (clear)

  1. hello tehre by Anonymous Coward · · Score: -1, Troll
    I would like to post some text now.

    # insert whitespace into long words, convert <>& to HTML entities
    if ($fmode == LITERAL || $fmode == EXTRANS || $fmode == ATTRIBUTE || $fmode == CODE) {
    # Encode all HTML tags
    $str =~ s/&/&amp;/g;
    $str =~ s/</&lt;/g;
    $str =~ s/>/&gt;/g;
    ### this is not ideal; we want breakHtml to be
    ### entity-aware
    # attributes are inside tags, and don't need to be

    and here is some more text.

    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