Genius idea but which language?

Soldato
Joined
20 Aug 2004
Posts
3,115
Location
Bournemouth
Basically as the thread title says. I have an idea which I reckon is amazing, and no I wont share it :p But I am not sure which programming language would be needed for it. Basically it would need on-the-fly graphical manipulation from live video streams, and the ability to interract with other programs...
 
10 INPUT "What is your name: ", U$
20 PRINT "Hello "; U$
30 INPUT "How many stars do you want: ", N
40 S$ = ""
50 FOR I = 1 TO N
60 S$ = S$ + "*"
70 NEXT I
80 PRINT S$
90 INPUT "Do you want more stars? ", A$
100 IF LEN(A$) = 0 THEN 90
110 A$ = LEFT$(A$, 1)
120 IF A$ = "Y" OR A$ = "y" THEN 30
130 PRINT "Goodbye ";U$
140 END
 
If you need to ask this question you almost certainly don't have the ability to build the app.
 
Yeah a mix of the above actually. I have a little experiance in vb and thats it. No idea how to go about this without money or skills.
This is really annoying cause I got someone to sponser me to make a net cafe about 2 years before they appeared and had one on every corner... I need to get ahead of the curve again!
 
For something like this which would need lots of fast processing it'd have to be c/c++ or assembler. You could look at toolkits like CUDA to do your number crunching on the GPU.
 
Back
Top Bottom