Planet maemo: category "feed:b8f329ed41bc70b2aac9aefb728693a3"

cybercomchannel

Cybercom organizes the first Cybercom Developer Day in Helsinki, Ruoholahti at Technopolis on September 7th. It’s a FREE, one day event and the topic this year is Qt Quick & Plasma. We are very excited because we managed to get really cool speakers there: Alexis Menard from Qt Development Frameworks, Nokia and Marco Martin from KDE Plasma community.

The event consists of lectures and demos with also an opportunity for the guests to demonstrate their own applications.

We have opened a Cybercom Developer Day 2010 -page, where you can find more detailed information about the event, for example its Agenda and Speakers. The amount of seats in the event is limited, but you can request an invitation to try to ensure your attendance in the definitely interesting event!

Categories: Events
cybercomchannel

I have spent three days here in San Francisco at the Linux Foundation Collaboration Summit 2010 and I will spend even more days because the Iceland’s volcano eruption caused such a huge ash cloud which closed the almost the whole air space of the Europe.

Click to read 1858 more words
Categories: Events
cybercomchannel

Some time ago we published an article and a YouTube video about the PhotoTranslator application which we have developed. We were surprised of the attention it gained. Many people asked us, when will it be available and we have decided to release an alpha version of PhotoTranslator. So if you want to test it, you can install it directly from Maemo extras devel repository AT YOUR OWN RISK.

PhotoTranslator Alpha Features

As you probably have understood already, the PhotoTranslator is not a final version yet and it lacks features. It may, or it may not work as you expect, but as stated before, use it at your own risk. We also needed to remove bunch of languages from the application because they  increased the package size to 95M.  PhotoTranslator supports only the following languages from  tesseract i.e. the languages that it can read from the images (OCR) at the moment:

  • English
  • Finnish
  • German
  • Spanish
  • Portuguese

NOTE: This means that you can translate, but you can only use the OCR for the languages listed above. The workaround for this is that you can write the text manually and then translate it.

PhotoTranslator Beta Features

For beta version we are planning to implement the following set of features:

  • Separate package for each supported language
  • User can download different language packages via PhotoTranslator
  • Disabled buttons for languages that are not installed
  • Support for capturing images with PhotoTranslator

We are also investigating if we could open source the application at some point. More details will follow later.

Installing PhotoTranslator

The only thing you need to do is to enable extras-devel repository from your application manager. Check the details below.

In the Application Manager:

  • Navigate to the application menu (tap the title bar)
  • Select ‘Application catalogs’
  • Select ‘New’
  • Enter a catalog name of ‘Maemo extras-devel’
  • Enter a web address of ‘http://repository.maemo.org/extras-devel’
  • Enter a distribution of ‘fremantle’
  • Enter components of ‘free non-free’
  • Select ‘Save’

Feedback

We would like to receive feedback of your user experience. You can give your feedback about PhotoTranslator in comment section. We will also later provide an email address, which you can use to send your feedback directly.

Thank you for reading our blog.

Categories: Maemo
cybercomchannel

PhotoTranslator for Nokia N900

2010-02-18 13:05 UTC  by  cybercomchannel
0
0

PhotoTranslator is a neat application for Nokia N900. It allows you to translate text from pictures to various languages.

Imagine yourself walking on a street somewhere in a foreign country and you face a warning sign, but you have no idea what it says. Just take a picture of the sign and open it with PhotoTranslator, crop the text in the sign and PhotoTranslator translates the text to your language. In addition the PhotoTranslator can be used also for translating copy/pasted or typed text, not just for text from pictures.

The PhotoTranslator project started as a technology study for Nokia N900: how easy would it be to make useful software with some actual purpose for N900 using Qt? I found it to be very easy indeed. Although Qt 4.6 for N900 was far from being ready (at December 2009) it still provided me the necessary tools for creating working Hildon-like software without too much extra work. At that point the Hildon-looks on UI needed some N900 specific Qt code which means that using the same UI code directly on other platforms is not possible. However the code can be modified to be cross-platform quite easily.

What happens under the hood?

PhotoTranslator deploys two Google APIs. For parsing text from pictures I used Google’s tesseract-ocr (http://code.google.com/p/tesseract-ocr/) library that is installed as binary to N900 with PhotoTranslator. For translating the text to other languages I used Google’s Language API (http://code.google.com/apis/ajaxlanguage/) which obviously is used through HTML queries. So basically what I did was just that I glued these two APIs work together and wrapped them into nice UI for which Qt is a very powerful tool.

Here is a little demo of the PhotoTranslator in action:

Categories: Maemo