Jump to content

banila2

Verified Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by banila2

  1. Hello,

    I am using the callback from C++ and I'm only getting 62 samples per second. This seems weird to me. From time to time I also get "Initialisation failed" from the eye calibration.

    I am using the SRanipal_Sample to initialise the Eye engine.

    my callback:

    auto prev = std::chrono::steady_clock::now();
    void callback(ViveSR::anipal::Eye::EyeData const& eye_data) {
        auto now = std::chrono::steady_clock::now();
        auto diff = now - prev;
        printf("[Sample timedelta] %.5f [timestamp] %d \n", (diff.count()/1000000000.0f), eye_data.timestamp);
        prev = now;
    }

    banila2

     

    image.png.ded7c494c79a3a5d822b786749a9d7ba.png

    @Corvus @Daniel_Y

×
×
  • Create New...