Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitware/kwant
KWANT is an open source C++ toolkit for computing scores and other metrics for object tracking systems.
https://github.com/kitware/kwant
Last synced: about 2 months ago
JSON representation
KWANT is an open source C++ toolkit for computing scores and other metrics for object tracking systems.
- Host: GitHub
- URL: https://github.com/kitware/kwant
- Owner: Kitware
- Created: 2015-09-28T13:36:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-30T23:08:53.000Z (about 2 years ago)
- Last Synced: 2024-06-11T18:15:25.272Z (7 months ago)
- Language: C++
- Homepage:
- Size: 926 KB
- Stars: 11
- Watchers: 8
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Kitware Analytics Toolkit
=========================KWANT is an open source C++ toolkit for computing scores and other metrics for object tracking systems.
Pending support for e.g. GeographicLib in kwiver, this release only supports pixel-coordinate AOIs.
For more information on how KWANT achieves this goal,
and how to use KWANT visit our `documentation site `_Directory Structure and Provided Functionality
===================================================================== ===========================================================
``_ CMake helper scripts
``_ Documentation, manuals, release notes
``_ The scoring algorithms
``_ Various utility filters
======================= ===========================================================Building KWANT
===============Dependencies
------------
KWANT requires, at a minimum, Git, CMake, and a C++ compiler.KWANT is built on top of the `KWIVER `_ toolkit.
which is in turn built on the `Fletch `_ super build system.You will need to have KWIVER already built for KWANT to use when building.
Running CMake
-------------You may run cmake directly from a shell or cmd window.
On unix systems, the ccmake tool allows for interactive selection of CMake options.
Available for all platforms, the CMake GUI can set the source and build directories, options,
"Configure" and "Generate" the build files all with the click of a few button.We recommend building KWANT out of its source directory to prevent mixing
source files with compiled products. Create a build directory in parallel
with the KWANT source directory for each desired configuration. For example :========================== ===================================================================
``\KWANT\src`` contains the code from the git repository
``\KWANT\build\release`` contains the built files for the release configuration
``\KWANT\build\debug`` contains the built files for the debug configuration
========================== ===================================================================Basic CMake generation via command line
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~The following example will pull and build Fletch and KWIVER along with the DIVA code base.
It assumes your terminal/command is working in the ``\DIVA\build\release`` directory. ::# cmake usage : $ cmake -D
$ cmake ../../src -DCMAKE_BUILD_TYPE=ReleaseUsing a prebuilt Fletch
~~~~~~~~~~~~~~~~~~~~~~~If you would like to point DIVA to a prebuilt version of Fletch, specify the fletch_DIR flag to cmake.
The fletch_DIR is the fletch build directory root, which contains the fletchConfig.cmake file. ::$ cmake ../../src -DCMAKE_BUILD_TYPE=Release -Dfletch_DIR:PATH=
You must ensure that the specified build of Fletch has enabled all the appropriate flags for use by KWIVER and DIVA.
The required flags can be found in this file : ``_Using a prebuilt KWIVER
~~~~~~~~~~~~~~~~~~~~~~~If you would like to point DIVA to a prebuilt version of KWIVER, specify the kwiver_DIR flag to cmake.
The kwiver_DIR is the KWIVER build directory root, which contains the kwiver-config.cmake file.
*NOTE* As KWIVER requires a Fletch directory, the build will ignore the fletch_DIR variable and use the Fletch that was used to build KWIVER. ::$ cmake ../../src -DCMAKE_BUILD_TYPE=Release -Dkwiver_DIR:PATH=
You must ensure that the specified build of KWIVER was build with a fletch that was built with all necessary options.
KWIVER must have also been built with all the appropriate flags for use by DIVA.
The required flags can be found in this file : ``_This framework requires `track_oracle` to be turned on in [kwiver](https://github.com/Kitware/kwiver).
Compiling
---------Once your CMake generation has completed and created the build files,
compile in the standard way for your build environment. On Linux
this is typically running ``make``. Visual Studio users, open the /KWANT.slnGetting Help
============Please join the
`kwiver-users `_
mailing list to discuss DIVA/KWIVER or to ask for help with using DIVA/KWIVER.
For announcements about DIVA and other projects built on KWIVER, please join the
`kwiver-announce `_
mailing list.