CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: rostamiani

Search: Search took 0.02 seconds.

  1. How can I create a SIP connecton using Liblinphone interface class?

    I'm new to Java and want to develop a SIP client for Android using Liblinphone library.
    There is a LinphoneAuthInfo class that accepts authentication.
    And a LinphoneCore.addAuthInfo() That adds...
  2. Replies
    4
    Views
    14,700

    Re: Webcam show a grey screen in OpenCV !

    Thanks ...
    I saw it but it did not help :(

    I want a color image but the output is solid gray ! .I added the delay as you saw but it's still gray
  3. Replies
    4
    Views
    14,700

    Webcam show a grey screen in OpenCV !

    Hi

    I'm using opencv to grab images from webcam .but all images are grey !
    I tested opencv 2.2 & 2.3 with my A4tech webcam and Microsoft Lifecam but the screen is still grey !
    I'm using VIsual...
  4. Replies
    0
    Views
    3,947

    How can I show OpenCV Mat?

    Hi
    How can I show OpenCV Mat data type in a windows form ?

    Thanks
  5. Re: Cannot get string from a txt file

    Thanks a lot :)
    I used the "new" command

    The problem solved
  6. Re: Cannot get string from a txt file

    If I declare my array like char a[256]; ,it works ... But I want to use char* . How can I do this with char* ?

    Thanks
  7. [RESOLVED] Cannot get string from a txt file

    Hi
    I can't read a line using getline() function.using this code generates a runtime error at "iostream" file :

    This is my code :

    fstream InFile;
    InFile.open("c:\\Colors.txt",ios::in);
    ...
  8. Replies
    2
    Views
    772

    Re: FStream Problem

    Thanks a lot :))

    The problem solved !
  9. Replies
    2
    Views
    772

    [RESOLVED] FStream Problem

    Hi
    I cannot write to file ! No errors but nothing happens ...
    This is my code :

    void SaveColors()
    { try
    {
    fstream OutFile;
    OutFile.open("c:\Colors.txt",ios::out);
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured