├── .gitignore ├── LICENSE ├── README.md ├── detect.caffemodel ├── detect.prototxt ├── sr.caffemodel └── sr.prototxt /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | downloads/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/README.md -------------------------------------------------------------------------------- /detect.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/detect.caffemodel -------------------------------------------------------------------------------- /detect.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/detect.prototxt -------------------------------------------------------------------------------- /sr.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/sr.caffemodel -------------------------------------------------------------------------------- /sr.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/opencv_3rdparty/HEAD/sr.prototxt --------------------------------------------------------------------------------