You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, FoxBreatheLabeler only supports annotating breathing using TextGrid files output from SOFA(i.e. overlaying
new "AP" annotations on intervals already marked as "SP").
Build from source
Requirements
Component
Requirement
Detailed
Qt
>=6.8.0
Core, Gui, Widgets, Svg, Network
Compiler
>=C++17
MSVC 2022, GCC, Clang
CMake
>=3.17
>=3.20 is recommended
Python
>=3.8
Setup Environment
You need to install Qt libraries first. (Tested on Qt 6.8.3 only)
Windows
cd /D src/libs
cmake -Dep=dml -P ../../scripts/setup-onnxruntime.cmake
cd ../../
set QT_DIR=<dir># directory `Qt6Config.cmake` locatesset Qt6_DIR=%QT_DIR%
set VCPKG_KEEP_ENV_VARS=QT_DIR;Qt6_DIR
git clone https://github.com/microsoft/vcpkg.git
cd /D vcpkg
bootstrap-vcpkg.bat
vcpkg install ^
--x-manifest-root=../scripts/vcpkg-manifest ^
--x-install-root=./installed ^
--triplet=x64-windows
Unix
cd src/libs
cmake -Dep=cpu -P ../../scripts/setup-onnxruntime.cmake
cd ../../
export QT_DIR=<dir># directory `Qt6Config.cmake` locatesexport Qt6_DIR=$QT_DIRexport VCPKG_KEEP_ENV_VARS="QT_DIR;Qt6_DIR"
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg install \
--x-manifest-root=../scripts/vcpkg-manifest \
--x-install-root=./installed \
--triplet=<triplet># triplet:# Mac: `x64-osx` or `arm64-osx`# Linux: `x64-linux` or `arm64-linux`