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

Search:

Type: Posts; User: sandy2511

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. how to create body mesh dimension using kinect?

    Hi,

    I m trying to create an application for virtual dressing.The sdk i m using is SDK 1.8 and the IDE is VS 2012..

    Currently I m using direct2d mechanism for displaying the video and a 2d...
  2. Re: detect & find rotation angle if the skeleton tracked has turned 180 degre to kin

    Thankx a ton...

    Using face tracking mechanism was able to put separate attire for front and back.However the attire on the front pose is more stable than the back attire. Is there any specific...
  3. Re: detect & find rotation angle if the skeleton tracked has turned 180 degre to kin

    Yes I m trying to place a t shirt on the active skeleton with specific image on front and back..I tried doing it as a combination of skeletal point tracking and face tracking. The challenge here is...
  4. detect & find rotation angle if the skeleton tracked has turned 180 degre to kinect

    Hi,

    I m developing an application using kinect.The IDE I use is Visual studio 2012 and kinect SDK 1.8.I m developing using vc++

    I want to overlay an image on the person tracked when the...
  5. Code hangs on using sendmail command of smtp ?

    Hi,
    I m trying to send a mail via c++ code. I downloaded EASendMail component installer in ma system.

    Then using this i wrote a code in vc++. I m sending a mail using a gmail id.I m able to...
  6. How to lock in a single skeleton in Microsoft Kinect SDK v 1.7 using vc++?

    Hi,
    I m trying to lock a single skeleton using Microsoft Kinect SDK v 1.7 . My requirements are
    • First lock a single skeleton.
    • Check the tracking state of the of the locked skeleton.
    • If...
  7. Re: how to convert png image into byte array in VC++??

    that really went above my head.. Can you pls temme me in simple context of how i can retrieve the byte array from png image..
  8. how to convert png image into byte array in VC++??

    Hi,
    I m loading a png image by using the ATLImage library.

    CImage Image;
    Image.Load (L"D:\\Images\\PNG_Images\\Image7.png");

    how to retrieve the byte array value of this png image.

    I tried...
  9. Re: How to change the height and width of a png image dynamically using vc++?

    I tried doing so..But no proper result.I tried both Draw and StretchBlt

    RECT bounds;
    bounds.top = 0;
    bounds.bottom = Height;
    bounds.left = 0;
    bounds.right = Width;

    CBitmap bitmap;...
  10. How to change the height and width of a png image dynamically using vc++?

    Hi,

    I m trying to load a png image by giving the dimension of my own.

    CImage Image;
    Image.Load (L"D:\\Images\\PNG_Images\\Image7.png");
    ...
  11. How do access a variable updated in a cpp file to another cpp file?

    Hi,
    I have two cpp files.I m updating a value of an integer in one cpp file and i want to perform a specific function in the second file as per to the value updated in the first file.
    ie
    I m...
  12. place an image in kinect color frame in vc++

    Hi,

    I m trying to place an image on the colour frame of the Kinect live video. I m able to overlay the image using alpha blending mechanism.

    The image used is a bitmap image of dimension...
  13. How do I place a virtual image on live video displayed using kinect in vc++?

    Hi,

    I m trying to place an image on a live video displayed using kinect.I m able to place the image on the top left corner of the video by default.

    But I want to place the image on the neck or...
  14. Image overlayed five consecutive times on a live video

    Hi,

    I m trying to overlay an image on a live video.I have used alpha blending method to overlay image on the video. On overlaying the image, it gets overlayed five times rather than one as...
  15. Re: How do I overlay an image on the Picture Control which is used to play the live v

    I tried placing another picture control over the one that is playing the video and loading the image on to the second one.But the problem faced here is that image is flickering at a random manner and...
  16. Flickering when overlaying one picture control on another pictrure control

    Hi,
    I m trying to overlay an image on a live video.I play the video in a picture control.I have placed another picture control on the first one and put an image on to the second one.But when I...
  17. Re: How do I overlay an image on the Picture Control which is used to play the live v

    Thankx for the response....

    HRESULT hr = m_pDrawColor->Initialize(GetDlgItem(m_hWnd, IDC_VideoViewer), m_pD2DFactory, cColorWidth, cColorHeight, cColorWidth * sizeof(long));

    IDC_VideoViewer is...
  18. How do I overlay an image on the Picture Control which is used to play the live video

    Hi,

    I m trying to overlay an image on a live video produced using Microsoft Kinect. The IDE used is Visual Studio Professional 2010. The code is developed in vc++.I m able to play the live video...
  19. Re: magnify icons in a frame on mouse move over

    Thankx for ur response..

    Ya i did a mouse listener.. i m using a button which contains the image icon. so on magnifying the background image is differing.. and also the frame size differs.. my...
  20. magnify icons in a frame on mouse move over

    hi,

    I m developing a widget using java.I want to do a button icon magnification on mouse move over using java. ie., i want to implement something similar to the application OBJECT DOCK(stardock)....
  21. Re: frame pop down when mouse over using java swings.

    hi,
    **its top center.
    **Its the operating system desktop. .

    I cant use AWT commands as i m not implementing on a browser.

    i have to implement an application which acts lik a gadget and not in...
  22. Re: frame pop down when mouse over using java swings.

    no its not a pop up window...

    my requirement is as follows

    ***The destop is clear initially.
    ***on moving the cursor to the top center corner of the screen a window shoots down having a couple...
  23. Re: frame pop down when mouse over using java swings.

    hi,
    but pop up comes one below the other...but my requirement wil have images in the window on visible in a horizontal manner....i m creating somethin lik a widget with becomes visible when the...
  24. frame pop down when mouse over using java swings.

    Hi
    I want to a java application which contains a frame which pop s down when a mouse is rolled on it and hides when the mouse is removed...i need the implementation in java core like using...
  25. Re: run background process without &

    ya got it thankx...
Results 1 to 25 of 29
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured