Search:

Type: Posts; User: Aalmaron

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Thread: video

    by Aalmaron
    Replies
    1
    Views
    1,254

    video

    so lets say that i have a web cam or something hokked up to my computer. just for simplicity. now lets say that i want it to always be on, and i want to be able to make it my background. so like...
  2. Replies
    4
    Views
    1,672

    ok so like i'm really really newbieish. ok lets...

    ok so like i'm really really newbieish. ok lets say i want to program this in linux, where would i find how to use the Video4Linux API?
  3. Replies
    4
    Views
    1,672

    Video retieving and editing

    How would i go about doing this, i've had a very hard time figuring this out. so lets say i have a camera plugged into my computer (webcam or not), how would i retrieve that image in real time from...
  4. Replies
    3
    Views
    1,271

    C++ only goes so far...

    Ok so i didn't know where to make this thread, and this looked like an ok place for it.

    so lets say that i have a bunch of C++ code, but i'm sick and tired of command promt, and want some...
  5. Thread: File I/O?

    by Aalmaron
    Replies
    5
    Views
    1,063

    wow, awesome, thats a lot of help :) you guys...

    wow, awesome, thats a lot of help :) you guys rock. i'm not allowed to use any strings in this program, so i have to use char arrays though :-/

    i couldn't figure stringstream or strtol, so i...
  6. Replies
    13
    Views
    9,194

    ok well as far as the class goes. make your class...

    ok well as far as the class goes. make your class variables private, then make class functions to edit the class. use a default constructor to add data to instances of yoru class on startup.

    ie,...
  7. Thread: File I/O?

    by Aalmaron
    Replies
    5
    Views
    1,063

    File I/O?

    ok, here's my problem. i can write to a file just great. it formats it exactaly how i want it to. the problem is that i can't read from a file. everytime i try to read from a file and i want...
  8. Replies
    3
    Views
    2,714

    oh yeah, i forgot to include the constructor and...

    oh yeah, i forgot to include the constructor and destructor defenitions, they are there though. and yes, its all one big file. i'm not too familiar with making my own header files, so i thought that...
  9. Replies
    3
    Views
    2,714

    Class won't call

    so this class that i wrote, won't allow me to call it, every time i try to make an instance of it, it tells me that the instance name need a semicolon before it.

    now i made a test class to see on...
  10. Replies
    13
    Views
    1,884

    exactaly

    exactaly
  11. Replies
    13
    Views
    1,884

    ok, i decided thtat i'd be easeier to use a...

    ok, i decided thtat i'd be easeier to use a class, since i can just do this.


    class cls
    {
    public:

    int i;
    };
  12. Replies
    7
    Views
    2,260

    if you wan't an actual beginners book, get C...

    if you wan't an actual beginners book, get C Programming in easy steps. it comes for C++, java, CSS, pretty much anything you want, and its formatted perfectly for a begginer. its thin, easy to read,...
  13. Replies
    13
    Views
    1,884

    thats great, and it worked and everything, only...

    thats great, and it worked and everything, only problem is that every time i input a new value to n.i, the old value is gone. what i wanted to do wad make it so taht it wasn't n.i, it was actualy...
  14. Replies
    13
    Views
    1,884

    the user can add types of food to this program...

    the user can add types of food to this program that i'm suposed to be making. each item of food has a name, caliroes, etc etc, and is suposed to be in its own structure. when dealing with the food,...
  15. Replies
    13
    Views
    1,884

    the reason i'm trying to figure it out is becuase...

    the reason i'm trying to figure it out is becuase my homework requires that each thing has its own structure. so i can't just make them all arrays. :-/




    sorry, didn't think about that, but i...
  16. Replies
    13
    Views
    1,884

    heh, i was using printf and scanf, becuase i...

    heh, i was using printf and scanf, becuase i don't like cout or cin, but changed it. thats why i have the double quotes there. guess i wasn't really paying atention. but the rest still stands.

    how...
  17. Replies
    13
    Views
    1,884

    creating variables on the fly

    ok, so i need to have identical structures or classes (doesn't matter), and i need to have as many of them as the user wants to use. i could make a whole bunch of htem and call it good, but there is...
  18. actualy, here is aone program that can make 3d...

    actualy, here is aone program that can make 3d models out of 3 pictures, only problem is that it only does heads.

    http://www.facegen.com/
  19. Replies
    29
    Views
    5,623

    nope, never was good at pullups. now tripod...

    nope, never was good at pullups. now tripod pushups, whose get interesting.
  20. Replies
    13
    Views
    1,757

    instead of using getline(cin, answer) like if...

    instead of using getline(cin, answer) like if being sugested, you could just use getline(answer) (for the whole line, which works the way i recommended), or you can use getline(answer, " "), and that...
  21. Replies
    13
    Views
    1,757

    a string can get more than just one word, you...

    a string can get more than just one word, you could use getline, you can also fin substrings within it. here...



    string answer;
    string yes;
    string no;
    string special;

    <set those strings =...
  22. Replies
    1
    Views
    1,475

    reading input w/o hitting enter?

    Ok so heres my question. can i make it so that whenever the user enters something, it reads the character right away and acts acordingly?

    heres a senario. 1, 2, and 3 are assigned to something. if...
  23. Replies
    3
    Views
    1,057

    wow thanks guys! i think i got it all worked out!...

    wow thanks guys! i think i got it all worked out! you rock :)
  24. Replies
    3
    Views
    1,057

    Fraction trouble

    Hey guys, i can't seem to find a way to store a fraction. if i ask for an input, and they give me a fraction, then my program screws up. i'm kind of new to C, and i bet this is a really dumb...
  25. Thread: AI Invader

    by Aalmaron
    Replies
    2
    Views
    1,914

    )(rand()%1) doesn't like to be truly random....

    )(rand()%1)
    doesn't like to be truly random. you might want to try something else for randomness.
Results 1 to 25 of 48
Page 1 of 2 1 2