深度学习全功能开发平台
1. 微软 computervision-recipes平台
基本情况
框架:PyTorch
简介地址:
https://mp.weixin.qq.com/s/InFCT7CCGmHDly-IQcOqnA
开源地址:
https://github.com/microsoft/computervision-recipes
计算机视觉方向包括
图像分类、图像相似度计算、目标检测、物体及人体关键点检测、图像分割、动作识别、目标跟踪、拥挤人群计数等计算机视觉热门方向
Scenario | Support | Description |
---|---|---|
Classification | Base | Image Classification is a supervised machine learning technique to learn and predict the category of a given image. |
Similarity | Base | Image Similarity is a way to compute a similarity score given a pair of images. Given an image, it allows you to identify the most similar image in a given dataset. |
Detection | Base | Object Detection is a technique that allows you to detect the bounding box of an object within an image. |
Keypoints | Base | Keypoint detection can be used to detect specific points on an object. A pre-trained model is provided to detect body joints for human pose estimation. |
Segmentation | Base | Image Segmentation assigns a category to each pixel in an image. |
Action recognition | Base | Action recognition to identify in video/webcam footage what actions are performed (e.g. “running”, “opening a bottle”) and at what respective start/end times. We also implemented the i3d implementation of action recognition that can be found under (contrib)[contrib]. |
Tracking | Base | Tracking allows to detect and track multiple objects in a video sequence over time. |
Crowd counting | Contrib | Count |