Attempt at following "Introduction to Creating a Video Analytics Plugin"

Answered

Comments

3 comments

  • Avatar
    Andrey Terentyev

    Hello Ryan,

    Could you please share OS version, VMS build number, Metadata SDK version, commit hash you're trying to build from?

    Could you please elaborate what exactly you're doing and share a specific error message, log record or similar indicating the issue you've faced after that? What are you expecting to happen? What is the actual result?

    0
    Comment actions Permalink
  • Avatar
    Ryan Goff

    I will first need to redeploy and test again.  Currently I have 2 OS builds. 18.04.6 and 20.04.6. These are running on VMware and I 2 snapshots. One right after core OS install and updates applied.  The 2nd is after I deployed the requested apps and downloaded the development packages.  Right now I'm deployed to try HanWha's builds to see if I can deploy via their instructions. Once I test I will circle back and download your build and attempt again.

    0
    Comment actions Permalink
  • Avatar
    Andrey Terentyev

    Hello,

    There is no need to use specifically Qt Creator. You can use any IDE you prefer and build the plugin in the command prompt.

    See readme.md for details.

    Change to the root directory of the plugin (the directory of this readme.md file).

    Build the plugin as an ordinary CMake-based project, supplying the path to the Metadata SDK.

    For example, here is how to build the step 1:
    ```
    mkdir build
    cd build
    cmake -DmetadataSdkDir=/PATH_TO_METADATA_SDK/ -DCMAKE_BUILD_TYPE=Release ../step1
    cmake --build . --config Release
    ```

    0
    Comment actions Permalink

Please sign in to leave a comment.