├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── demo.py ├── include ├── conversion.h ├── delaunay.h ├── imgwarp_mls.h ├── imgwarp_mls_rigid.h ├── imgwarp_mls_similarity.h └── imgwarp_piecewiseaffine.h ├── pic ├── demo.png ├── gif_Distort.gif ├── gif_Perspective.gif └── gif_Stretch.gif └── src ├── Augment.cpp ├── conversion.cpp ├── delaunay.cpp ├── imgwarp_mls.cpp ├── imgwarp_mls_rigid.cpp ├── imgwarp_mls_similarity.cpp └── imgwarp_piecewiseaffine.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/demo.py -------------------------------------------------------------------------------- /include/conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/conversion.h -------------------------------------------------------------------------------- /include/delaunay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/delaunay.h -------------------------------------------------------------------------------- /include/imgwarp_mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/imgwarp_mls.h -------------------------------------------------------------------------------- /include/imgwarp_mls_rigid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/imgwarp_mls_rigid.h -------------------------------------------------------------------------------- /include/imgwarp_mls_similarity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/imgwarp_mls_similarity.h -------------------------------------------------------------------------------- /include/imgwarp_piecewiseaffine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/include/imgwarp_piecewiseaffine.h -------------------------------------------------------------------------------- /pic/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/pic/demo.png -------------------------------------------------------------------------------- /pic/gif_Distort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/pic/gif_Distort.gif -------------------------------------------------------------------------------- /pic/gif_Perspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/pic/gif_Perspective.gif -------------------------------------------------------------------------------- /pic/gif_Stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/pic/gif_Stretch.gif -------------------------------------------------------------------------------- /src/Augment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/Augment.cpp -------------------------------------------------------------------------------- /src/conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/conversion.cpp -------------------------------------------------------------------------------- /src/delaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/delaunay.cpp -------------------------------------------------------------------------------- /src/imgwarp_mls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/imgwarp_mls.cpp -------------------------------------------------------------------------------- /src/imgwarp_mls_rigid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/imgwarp_mls_rigid.cpp -------------------------------------------------------------------------------- /src/imgwarp_mls_similarity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/imgwarp_mls_similarity.cpp -------------------------------------------------------------------------------- /src/imgwarp_piecewiseaffine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canjie-Luo/Text-Image-Augmentation/HEAD/src/imgwarp_piecewiseaffine.cpp --------------------------------------------------------------------------------