• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r4wp

[#Red] Red language group

DocKimbel
15-Feb-2013
[5563]
François also did a binding for the DAQmxBase v3.6 lib that can be 
found here:
http://www.wuala.com/fjouen/Code/NI/Red/


This lib allows to drive data acquisition devices from NI: http://www.ni.com/data-acquisition/
Pekr
15-Feb-2013
[5564]
Ah, so cool, now I feel like Red is getting into embedded sphere 
:-)
DocKimbel
15-Feb-2013
[5565]
Leap device: huge potential, C++ drivers (!), only simple demos and 
basic testing tools available currently.
Pekr
15-Feb-2013
[5566x2]
C++ drivers - bad to wrap for us, no?
What would be also cool would be to bind to one of media frameworks 
- libVLC, ffmpeg, Libav, mplayer, Gstreamer, etc. - dunno which one 
is the best ....
DocKimbel
15-Feb-2013
[5568x5]
Yeah, significant extra work to interface with it. But there's a 
shortcut, a API is also available through a builtin websocket server, 
so you can access the device from your browser directly.
I'll write a websocket client for Red when we'll have networking, 
so I will be able to test it deeply.
My first impression was: we're half-way of the right interface, it 
lacks a force-feeback system. One of the demo allows you to manipulate 
a virtual cube with your fingers, but without force-feedback it feels 
incomplete.
So Leap device + feedback gloves would do real wonders!
Also, from the first tests, the device has some limitations, like 
loosing track of your fingers if you point them up or down. Not sure 
if it's a soft or hardware limitation.
Pekr
15-Feb-2013
[5573]
I wonder, what is inside. What exactly measures your fingers in the 
space? It is not camera based, is it? So what kind of sensor does 
it have, and how is that they are so precise? I do own Kinect, but 
it is far from being so precise ...
DocKimbel
15-Feb-2013
[5574x3]
IIRC, it's sensible to ambient light, so it's probably camera-based 
(but probably not only).
Infrared light + CCD cameras.
0.01mm precision in detecting position
Pekr
15-Feb-2013
[5577]
impressive ...
DocKimbel
15-Feb-2013
[5578x2]
It can also detect "tools" you're holding like pencils.
You can see a good demo here: http://youtu.be/ssZrkXGE8ZA
NickA
15-Feb-2013
[5580x2]
We have GOT to have access to that!  At this moment, there would 
be no better way to demo to people.
(Add a 3D API, and maybe Red could find a market in gaming)
Pekr
15-Feb-2013
[5582x2]
Doc - would it work from behind the glass? I mean - in front of Windows, 
projecting image on the window (with some foils like Vikuiti from 
3M). Because the guy at the video has it laying on table. And you 
also said, that it does not work, if you point your fingers up or 
down, which might mean - towards the device?
Imagina navigalbe on-glass systems - signage - https://www.youtube.com/watch?v=3RYMR2LMVmQ
NickA
15-Feb-2013
[5584x3]
Adding support for cutting edge hardware, and things like VOIP and 
Videoconferencing - anything that tends to be hard to accomplish 
using other development tools, would really help to set Red ahead 
of others, make it look fantastic, and give new developers concrete 
reasons to WANT to use it.
(Same reasons many of us were initially attracted to using VID and 
other REBOL features that made it so practical).
No one will be impressed with normal GUI, email, database capabilities, 
even if it's 10x more productive, but anything multimedia, video, 
3D, etc. which demonstrates "modern" capabilities, and beats other 
solutions, works on mobile, etc., then they're much more likely to 
go "hmmm".
DocKimbel
15-Feb-2013
[5587x2]
NickA: there are many domains where Red could shine, actually finding 
the right one, which fits the best, is the hard part. Supporting 
new and innovative hardware is surely a good thing to have anyway.
...if you point your fingers up or down, which might mean - towards 
the device?

 Yes, towards the device or away from it. It is supposed to be in 
 the device roadmap, but probably is not yet ready, like other early 
 announced features.
Pekr
15-Feb-2013
[5589x2]
NickA - I share your point of view. Ppl mostly nowadays think, that 
the web rules it all. However - it is still complex. I don't care, 
if we generate HTML5 (whatever it is) in the end, as far as we can 
very easily build apps using VID like dialect. I remember those initial 
days, where we had really a small script (1.6KB) to show image from 
4 webcams ...
I think, after all those years, we could have what Carl envisioned 
with REBOL/Media :-), it will be just called - Red :-) Wrapping stuff 
like video playback, camera access, HW like accelerometers, gyroscopes, 
GPS, along with dialected simplicity, would be nice acomplischement 
...
Bo
15-Feb-2013
[5591x2]
Regarding OpenCV:   Thanks!!
I agree, the Leap device is amazing!  Who's ready for a 3D operating 
system?
DocKimbel
16-Feb-2013
[5593]
Preliminary path! and set-path! support added to Red interpreter.

https://github.com/dockimbel/Red/commit/53f87ff81822e81c5ddf56245e68f8e6255c698b


Works only on series! so far, function calls with refinements are 
next on the todo-list.
Kaj
16-Feb-2013
[5594x3]
Good stuff!
I'm happy to report that passing functions by reference works, and 
that they can take parameters if you invoke them with the interpreter:
Red []

f: func [
	a
][
	print a
]
g: func [
	h
][
	do [h "!"]
]
g :f
DocKimbel
18-Feb-2013
[5597]
It would be possible to support it in the compiler too, but that 
would require that the `h` argument get declared with a type definition 
like: 

    g: func [h [function! [a]][...]

(not implemented yet though)
Kaj
18-Feb-2013
[5598]
That would be very nice. Differences like this could otherwise prevent 
code written for the interpreter to be JIT-compiled later
DocKimbel
23-Feb-2013
[5599]
The interpreter is able to detect if a function has been compiled 
to native code and run the native code version, so in the above case, 
the interpreter overhead is very small, and a JIT-ed version wouldn't 
run noticeable faster. The real place where the JIT-compiler will 
make a big difference is for functions created at runtime, that would 
otherwise need to be interpreted.
Kaj
24-Feb-2013
[5600x3]
I wasn't concerned about performance here, just compatibility
If you write a script for the interpreter, and it contains function 
references with arguments, it would run in the interpreter, but not 
in the compiler
If you write it for the interpreter, that's probably because it can't 
be executed by the compiler, but in the future, you would probably 
want to have it JIT compiled
DocKimbel
25-Feb-2013
[5603]
Actually, we could just make the compiler recognize such case and 
generate a call to the interpreter without you having to specify 
DO. The drawback would be that all subsequent values in that block 
level, would be passed to the interpreter too, as the compiler can't 
determine the expression boundaries. I'm not very fond of such option, 
but it is a possibility.
Kaj
25-Feb-2013
[5604]
That's interesting, too. The compiler could issue an optimisation 
warning
DocKimbel
25-Feb-2013
[5605]
Actually, this is supposed to be the compiler fallback strategy for 
cases that are not statically solvable. I haven't needed it so far, 
and I'll try to push the compiler as far as possible before implementing 
it.
DocKimbel
27-Feb-2013
[5606]
Just in case Red followers haven't noticed, we now have REDUCE and 
COMPOSE fully implemented in Red (both in compiler and interpreter).
Gregg
27-Feb-2013
[5607]
Thanks for the reminder Doc!
DocKimbel
28-Feb-2013
[5608]
Refinements evaluation is now supported by the Red interpreter.
NickA
28-Feb-2013
[5609]
Timely
Bo
1-Mar-2013
[5610x2]
Has anyone successfully read in a jpg into Red or Red/System yet?
I'm talking about converting it to a bitmap, like R2 does.
DocKimbel
1-Mar-2013
[5612]
Bo, have you looked into ImageMagick binding for Red/System yet? 

https://github.com/dockimbel/Red/blob/master/red-system/library/lib-iMagick.reds