On Tue, 3 Jul 2012 18:48:19 -0600 "Wichmann, Mats D"
<[email protected]> said:

> On Tue, Jul 3, 2012 at 5:11 PM, Carsten Haitzler <[email protected]> wrote:
> > On Tue, 3 Jul 2012 14:01:23 -0500 daniel granados
> > <[email protected]> said:
> >
> >> i want to do an algorithm able to recognize picture but i need to know if
> >> is possible programming by threads at Tizen OS
> >
> > if you mean as a 3rd party dev - html5 is you language and no threading
> > there.
> 
> I'd add that web workers add a kind of thread-like capability for html5 apps
> ("background tasks" is perhaps more accurate).

sure - but not really do things like "share" javascript objects/vars directly
like threads. all piping json around. not to mention the js version will easily
be something on the order of 3-20x as slow as a native bit of code that can
examine pixel values natively in memory as binary values. even if you use
threads that just alleviates the slowness a bit - the native version can do
that too. :)

imho js is the kind of thing you want for doing controls. doing the higher
level logic flow and decisions, not the actual grunt work. image recognition is
grunt work. js CAN do it, but you'll pay an awfully steep price for it.

-- 
Carsten Haitzler (The Rasterman) <[email protected]>
_______________________________________________
General mailing list
[email protected]
https://lists.tizen.org/listinfo/general

Reply via email to