Thread: C++ Programming Help

  1. #1
    Registered User
    Join Date
    Apr 2015
    Posts
    2

    C++ Programming Help

    Hi,

    I just started learning C++ programming and I have several questions about it.

    My questions are:

    (1) How do I add video in a C++ program?

    (2) How do I add audio in a C++ program?

    (3) How do I add animation in a C++ program?

    (4) How do I add speech recognition in a C++ program?

    (5) How do I add facial recognition in a C++ program?

    (6) How do I add handwriting recognition in a C++ program?

    (7) How do I add 3D virtual reality in a C++ program?

    Do I have to create videos/ audios/ animation/ speech recognition/ facial recognition/ handwriting recognition/ 3D virtual reality in separate video/ audio/ animation/ speech recognition/ facial recognition/ handwriting recognition/ 3D virtual reality editing software, and then import the completed videos/ audios/ animation/ speech recognition/ facial recognition/ handwriting recognition/ 3D virtual reality into a C++ program itself by copying and pasting their source codes directly into a C++ program?

    Thank you very much for any help!

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    The hard way for anything on your list is to study algorithms, data structures and file formats for the subject of interest.

    The easy way is to find someone who has already done all the hard work, and provided a library to do what you want.
    https://www.google.co.uk/search?q=ho...ary+to+c%2B%2B

    > Do I ... by copying and pasting their source codes directly into a C++ program?
    Absolutely not.
    You find (or write) library code.
    Libraries are reusable code you don't have to touch at the source code level (unless you're fixing bugs in the library).
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    Registered User
    Join Date
    Mar 2015
    Posts
    184
    I'd just add that learning to use a library can feel alot like a new language

  4. #4
    Registered User
    Join Date
    Apr 2015
    Posts
    2
    Quote Originally Posted by Salem View Post
    The hard way for anything on your list is to study algorithms, data structures and file formats for the subject of interest.

    The easy way is to find someone who has already done all the hard work, and provided a library to do what you want.
    https://www.google.co.uk/search?q=ho...ary+to+c%2B%2B

    > Do I ... by copying and pasting their source codes directly into a C++ program?
    Absolutely not.
    You find (or write) library code.
    Libraries are reusable code you don't have to touch at the source code level (unless you're fixing bugs in the library).
    Are you asking me to study algorithms, data structures and file formats for adding video/ audio/ animation/ speech recognition/ facial recognition/ handwriting recognition?

    Where do I find libraries for these things?

    Thank you.

  5. #5
    Registered User
    Join Date
    Mar 2015
    Posts
    184
    Try googling: image processing library c++. That should cover most of your list. I hear opencv is popular.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 09-11-2012, 01:03 AM
  2. Replies: 4
    Last Post: 12-11-2011, 04:25 PM
  3. small programming job VCPP / Object Oriented Programming
    By calgonite in forum Projects and Job Recruitment
    Replies: 10
    Last Post: 01-04-2006, 11:48 PM
  4. Total newb to programming here... Question about the many programming languages. Ty!
    By tsubotakid1 in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 10-05-2003, 10:32 AM