I want to know the exactly when the Kinect gives depth frame and color frame in a period of one frame

Hi, I'm currently using Kinect for Windows v2 to get a blurry sequence of color frames as well as corresponding depth frames. 
It seems to me that the depth frame is acquired after the exposure time of the color frame. I am using the sample in the CoordinateMappingBasic to acquire the depth frame and the color frame at the same time. 
But as i've found out by the aligned depth map with color frame, i think Kinect gives depth frame at the end of the exposure time of color frame. I've tried to obtain timestamps by calling a function iColorFrame->get_relative_time, and for the same number
the timestamps show that depth frame is acquired prior to color frame, which opposes what i said above.. 
Is there some way that i can know the exact time the Kinect gives depth frame and color frame in a period of one frame.
Thank you in advance.

Depth is generated based on IR information so when you acquire the frame, that is when it was created. Using the Multisource Frame Reader(MSFR) this does a lot under the covers to align the color and depth frame. If you want to do your own synchronizing,
you can use a polling thread to acquire depth on one and color on the other and do your own mechanism that is similar to MSFR. You will never get Color and Depth to align exactly on a particular timestamp. Since color is its own camera, the only thing
you can be assured of is when the color frame is acquired, the runtime will give you the closest depth frame that will align to it.
Carmine Sirignano - MSFT

Similar Messages

  • I want to know what happens when the iphone heats up by itself? Do i need to bring it in?

    i want to know what happens when the iphone heats up by itself? Do i need to bring it in?

    Basic troubleshooting is covered in the User's Guide, you should read and follow the steps provided.

  • I want to know what happens when the iPad battery gets fully charged and the charger is still connected

    When the battery gets fully charged, and the charger is still connected to the iPad, does the iPad use power from the battery or does it use the charger?

    Install Battery Doctor and see Battery Status or Charging
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    System Status will indicate charged when charging circuit is disabled
    http://itunes.apple.com/sg/app/system-status-activity-manager/id401457165?mt=8&l s=1

  • I use iPhoto and want to know how to get the 'key photo' i select on my MacBook Pro to be the one that gets used on my iPhone when i sync them. Any ideas? also, i want the events to appear in the order i choose on my MacBook too

    I use iPhoto and want to know how to get the 'key photo' i select on my McBook Pro to be the same one that gets used on my iPhone 5s when i sync. i also want the events to appear on the iPhone in the same order i have them on my macbook. any ideas there too?

    Killerfinch wrote:
    My new yahoo account nestles comfortably in iCloud on the mine iPad.
    No, your Yahoo account is not in iCloud (which only handles iCloud mail), it is in Yahoo, and the Yahoo mail account is on your iPad.
    But the MacBook Pro will have none of it! I write this question now as I fear that I will be totally demented very soon and unable to formulate my thoughts clearly!
    Get the correct settings for your account from Yahoo and set it up manually.
    By the way, I also find the "password" issue problematical. It seems Apple want my Apple password rather than my eMail password. All very confusing.
    That would depend on what you are trying to do.

  • I have tested the search/ find fuctionality on the atuovue version electro mechanical, I want to know if these features are there in Atuovue 2D and 3D.

    I have tested the search/ find fuctionality on the atuovue version electro mechanical, I want to know if these features are there in Atuovue 2D and 3D.

    Hi Negussie,
    The difference between AutoVue Electro-Mechanical Professional and AutoVue 2D Professional is related to file formats supported and functionality which are related to those formats. For example when using Electro-Mechanical you can view all the formats supported by AutoVue (Office, 2D, 3D and EDA formats). When you are using AutoVue 2D you can only view Office and 2D formats. This is the main difference. Now if a functionality exist in Electro-Mechanical related to either Office or 2D formats the same functionality is exactly the same in AutoVue 2D. In your case if all you need to do is view Word documents and search for text you should definitely purchase AutoVue 2D Professional and you will be able to do it the same way you do it with Electro-Mechanical. If you want screenshots from AutoVue 2D Professional you can send me a mail to [email protected] and I can send you the screenshots but you will see the feature is exactly the same.
    Thanks,
    Daniel

  • How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word.

    How can I create a text pop up window in my Pages document? I want text to pop up when the reader hovers his/her cursor over a certain word in the document. I am teacher. So for example when a student came to word he/she did not know, if he/she hovered the cursor over the word, a defintion or other information would appear.  You can do this in Word using bookmarks/hyperlinks but I can't figure this out in Pages. I can link it to another point in my Pages document but I just need the text to pop up - not take the reader to another location.  THANK YOU!!!!!!

    Have you tried Word for Mac?
    You will need to test if links survive export or printing to .pdf
    Peter

  • I want to know how to clear the text area by the push off my next question button and ask a new ques

    I want to know how to clear the text area by the push off my next question button and ask a new question - also I want to know how to code in my project to where a user can enter a math question in one border container and the answer enters into the next container
    heres my code so far
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" backgroundColor="#1E5C75">
        <fx:Script>
            <![CDATA[
                protected function button1_clickHandler(event:MouseEvent):void
                    //convert text area into labelid to be identified by actionscript
                    richTextLabel.text = myArea.text;
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <!--container 1-->
        <s:BorderContainer borderWeight="7" x="28" y="10" width="200" height="138">
            <s:layout>
                <s:VerticalLayout paddingTop="10" paddingBottom="10"
                                  paddingLeft="10" paddingRight="10"/>
            </s:layout>
            <!--data Entry control-->
            <s:TextArea id="myArea" width="153" height="68"/>
            <!--end of data entry control-->
            <s:Button width="151" label="ask a question" click="button1_clickHandler(event)"/>
        </s:BorderContainer>
        <!--container2-->
        <s:BorderContainer borderWeight="7" x="509" y="10" width="200" height="138">
            <s:layout>
                <s:VerticalLayout paddingTop="10" paddingBottom="10"
                                  paddingLeft="10" paddingRight="10"/>
            </s:layout>
    <!--data entry control-->
            <!--convert tne data entry control into a label id in actionscript-->
            <s:Label id="richTextLabel" width="153" height="68"/>
            <s:Button width="151" label="next question" click="button1_clickHandler(event)"/>
        </s:BorderContainer>
        </s:Application>

    This is a user to user support forum.  We are all iphone users just like you.
    You are not addressing Apple here at all.
    This is an odd way to ask your fellow iphone users for help. Berating oterh users will not help you.
    "it's too fragile"
    No it is not.  i have never damaged one, nor has anyone I know.
    " U loose data when Ur phone is locked"
    No you don't.  Why do you think this?
    "and there is no customer support!!!  "
    Wrong yet again.  Apple has an 800 number and they have many retail stores and they have support articles that you can access using the search bar. Or you can contact them throgh express lane online
    "but I will go back with Blackberry "
    Please do.
    Good ridance

  • Hello,  I want to know how to clear the memory or buffer cash from my mac book?

    Hello,  I want to know how to clear the memory or buffer cash from my mac book? When I look at the series, it puts more and more time to load. Thank you.
    Sorry for my english, i talk french.

    Ok ce n'est pas le problème alors.
    Boot à partir de votre disque d'installation et de lancerl'utilitaire de disque. Le disque de démarrage peut être nécessaire de réparation.
    Using Disk Utility to verify or repair disks
    Ok that's not the problem then.
    Boot from your install disc and run Disk Utility. The startup disk may need repairing.

  • I have three email accounts and want to know how to change the display order.

    I have three email accounts and want to know how to change the display order.

    Install this add on.
    https://addons.mozilla.org/en-US/thunderbird/addon/manually-sort-folders/?src=search

  • I have just purchased a new iphone 5, just wanted to know that what is the best way to insure my iphone

    i have just purchased a new iphone 5, just wanted to know that what is the best way to insure my iphone

    Contact yor carrier. Your carrier may have some Mobile Insurance that you pay a certain amount per month to insure your device. Most carriers require you have the device less than 30 days in order to insure it. If your carrier is AT&T, AT&T has mobile insurance for only $6.99 per month. AT&T has open enrollment for their mobile insurance now. So anyone has an AT&T line can get insurance coverage for their device.

  • Want to know that wat is the impact of changing a field label in master

    Dear Experts,
    Want to know that what is the impact of changing a field label in masters ?

    hai sap gurus,
                          kindly clear my doubt..
    Swetha

  • I want to know what for is the "Sync" button in Lightning and if there is a way to sync my LOCAL Lightning calendars between two computers. Thanks

    I want to know what for is the "Sync" button in Lightning and if there is a way to sync my LOCAL Lightning calendars between two computers. Thanks

    sync is about synchronizing network calendars. Simply create a network calendar and synchronize it on multiple machines and forget local calendars.

  • I want to know how to setup the logicaladdress (cluster+HA+oracle)

    I want to know how to setup the logicaladdress (cluster+HA+oracle)

    Please have a look at:
    http://docs.sun.com/app/docs/doc/819-0703/6n343k6g0?q=SUNW.LogicalHostname&a=view
    for how to add a Logical Hostname Resource to a Resource Group (in that case the RG where you configrued ha oracle for).
    There is nothing special for HA oracle on that part.
    If you configure your oracle_listener resource for that specific logical hostname resource, then you should configure a dependecy from the oracle_listener to the LH.
    By default the RG will have property Implicit_network_dependencies set to true, which should be enough.
    If this property is false, I recommend adding the LH resource name to the Resource_dependencies property of the oracle_listener resource.
    For a general overview I recommend reading:
    http://docs.sun.com/app/docs/doc/819-0703/
    Greets
    Thorsten

  • I am new to this program and want to know how to blur the edges of a pic

    i am new to the program and want to know how to blur the edges of a pic?

    Another way...
    Use the Rectangular Marquee tool to draw out the edge to be blurred. Feather the selection. Here I feathered 50 px (note that feathering makes the borders of the selection appear rounded).
    Invert the selection so that the edge is now selected, and apply a Gaussian Blur:
    The reason for feathering is to soften the edge of the blur. The amount of feathering and amount of the Gaussian Blur is simply trial-and-error.

  • I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person?

    I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person? Obviously I want the gift to be a surprise (for my best friend specifically) so asking them if they received it would ruin that.

    Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

Maybe you are looking for

  • Error 103 when re-installing PSE 2.0 on Windows 7

    I uninstalled photoshop elements 2.0. When reinstalling photoshop elements 2.0 I get this error message 'Component move data had the following error' Media name: DATA Component uninstall: DLL Error number - 103 Also error occurred during move data pr

  • .doc and PDF

    Hi, my problem is to read pdf and doc-files. when I try to read a doc file the progr. said "unknowing problem appeared".. same procedure with Pdf-files.... MAC-Service cant help... I´am using version 2.1 May somebody knows whats wrong. Horst iMAC 4,1

  • Hat der iMac 27 Zoll einen Mini USB Anschluss ?

    Hey , ich hab mich gefragt ob der iMac mit 27 eigentlich einen Mini USB Anschluss hat ? Danke im Vorraus

  • Fix a text in sapscript

    Hi All, I want to fix text up to some no of character in sapscript. How is this possible. example : there is account no , account name and amount I want to fix account name upto 30 character in first line and others in 2nd . and amount will be right

  • OSX 10.9.5 won't recognize an external hardrive

    I got a new Macbook Air running 10.9.5 that simply won't recognize my external hard drive.... I even tried formatting it with another Macbook Pro not running the latest OSX version. And another device (Smart TV) also recognizes the hard drive so I do