├── .gitignore ├── README.md ├── addToConfusionMatrix.pyx ├── addToConfusionMatrix_impl.c ├── blendImageAndLabel.py ├── colorTransformer.py ├── convertTrainIdFiles2Color.py ├── evaluate.py ├── prepareTrainIdFiles.py ├── script_eg.txt ├── setup.py └── writeImageLabelPathPairsToTxtFile.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/README.md -------------------------------------------------------------------------------- /addToConfusionMatrix.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/addToConfusionMatrix.pyx -------------------------------------------------------------------------------- /addToConfusionMatrix_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/addToConfusionMatrix_impl.c -------------------------------------------------------------------------------- /blendImageAndLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/blendImageAndLabel.py -------------------------------------------------------------------------------- /colorTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/colorTransformer.py -------------------------------------------------------------------------------- /convertTrainIdFiles2Color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/convertTrainIdFiles2Color.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/evaluate.py -------------------------------------------------------------------------------- /prepareTrainIdFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/prepareTrainIdFiles.py -------------------------------------------------------------------------------- /script_eg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/script_eg.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/setup.py -------------------------------------------------------------------------------- /writeImageLabelPathPairsToTxtFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLyuUT/UAVidToolKit/HEAD/writeImageLabelPathPairsToTxtFile.py --------------------------------------------------------------------------------