A utility to allow members of the VT Autonomous Aerial Vehicles team to quickly classify images taken from their drone.
This project depends on CMake and Qt being installed on your system. Both of these can be found at https://cmake.org/download/ and https://www.qt.io/download-qt-installer.
The app also looks for some assets that are located in the project folder, so make sure to start the
executable from the classifier directory.
-
Enter the directory the
classifierproject was cloned into.cd <classifier directory> -
Create and enter a build directory, for storing the compilation results.
mkdir build cd build -
Run the cmake command, passing in the location of the
classifierdirectory. This configures the project and detects the location of any dependencies. Extra compilation options can be passed in during this step.cmake .. -
Build the project. This is the command you'll run any time you want to test out new changes.
make -
Enter the
classifierdirectory again to run the project. This allows the executable to find the local files it needs.cd .. build/classifier
- When installing Visual Studio, be sure to install the C++ development kit, which includes CMake support.
- Cloning the repository from Visual Studio automatically configures the CMake project
- Add the two following directories to your
Pathvariable underThis PC > Properties > Advanced system settings > Environment Variables
C:\Qt\5.12.5\msvc2017_64\plugins\platformsC:\Qt\5.12.5\msvc2017_64\bin