Skip to content

Commit 6608a90

Browse files
authored
Merge pull request #593 from microsoft/staging
Sync master <-> staging
2 parents 16d2caf + 11aeb8b commit 6608a90

File tree

14 files changed

+1593
-868
lines changed

14 files changed

+1593
-868
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<img src="scenarios/media/logo_cvbp.png" align="right" alt="" width="300"/>
22

33
```diff
4-
+ Update June 24: Added action recognition as new core scenario.
5-
+ Object tracking coming soon (in 2-4 weeks).
4+
+ Update July: Added support for action recognition and tracking
5+
+ in the new release v1.2.
66
```
77

88
# Computer Vision
@@ -55,6 +55,7 @@ The following is a summary of commonly used Computer Vision scenarios that are c
5555
| [Keypoints](scenarios/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. |
5656
| [Segmentation](scenarios/segmentation) | Base | Image Segmentation assigns a category to each pixel in an image. |
5757
| [Action recognition](scenarios/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]. |
58+
| [Tracking](scenarios/tracking) | Base | Tracking allows to detect and track multiple objects in a video sequence over time. |
5859
| [Crowd counting](contrib/crowd_counting) | Contrib | Counting the number of people in low-crowd-density (e.g. less than 10 people) and high-crowd-density (e.g. thousands of people) scenarios.|
5960

6061
We separate the supported CV scenarios into two locations: (i) **base**: code and notebooks within the "utils_cv" and "scenarios" folders which follow strict coding guidelines, are well tested and maintained; (ii) **contrib**: code and other assets within the "contrib" folder, mainly covering less common CV scenarios using bleeding edge state-of-the-art approaches. Code in "contrib" is not regularly tested or maintained.

scenarios/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| [Keypoints](keypoints) | 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. |
99
| [Segmentation](segmentation) | Image Segmentation assigns a category to each pixel in an image. |
1010
| [Action Recognition](action_recognition) | Action Recognition (also known as activity recognition) consists of classifying various actions from a sequence of frames, such as "reading" or "drinking". |
11+
| [Tracking](tracking) | Tracking allows to detect and track multiple objects in a video sequence over time. |
1112

1213

1314
# Scenarios

scenarios/tracking/01_training_introduction.ipynb

+375-168
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)