https://github.com/ApolloScapeAuto/dataset-api
Raw File
Tip revision: 8d3cec0ed9581171a076638402ed9a5bce9095b0 authored by Michael Zhang on 31 May 2023, 19:58:39 UTC
update with real trajectory gt
Tip revision: 8d3cec0
install.sh
#!/bin/bash
# make sure pip and setuptools are available on your system

curr_dir=`pwd`
cd thirdParty/cityscapesScripts/
if [ -f "__init__.py" ]; then
    rm __init__.py
fi
python setup.py build_ext --inplace
touch __init__.py
cd $curr_dir
back to top