Skip to content

Commit 4520c65

Browse files
committed
Merge branch 'staging' of https://github.com/microsoft/computervision-recipes into staging
2 parents 7bd9e3a + b2290ee commit 4520c65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1843
-310
lines changed

contrib/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Each project should live in its own subdirectory ```/contrib/<project>``` and co
1010
|---|---|---|
1111
| [Crowd counting](crowd_counting) | 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. | [![Build Status](https://dev.azure.com/team-sharat/crowd-counting/_apis/build/status/lixzhang.cnt?branchName=lixzhang%2Fsubmodule-rev3)](https://dev.azure.com/team-sharat/crowd-counting/_build/latest?definitionId=49&branchName=lixzhang%2Fsubmodule-rev3)|
1212
| [Action Recognition with I3D](action_recognition) | Action recognition to identify video/webcam footage from what actions are performed (e.g. "running", "opening a bottle") and at what respective start/end times. Please note, that we also have a R(2+1)D implementation of action recognition that you can find under [scenarios](../sceanrios).| |
13-
| [Document Image Binarization](binarization) | Binarization is a technique to segment foreground from the background pixels. A simple technique for binarization is thresholding of gray-level or color document scanned images.| |
13+
| [Document Image Cleanup](document_cleanup) | Given an input noisy document image, the aim of document image cleanup is to improve its readability and visibility by removing the noisy elements.| |
14+
1415

1516
## Tools
1617
| Directory | Project description | Build status (optional) |

contrib/binarization/README.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

contrib/binarization/confidence_based_Sauvola_binarization/Modified-Sauvola_Binarization.ipynb

Lines changed: 0 additions & 213 deletions
This file was deleted.

contrib/document_cleanup/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Document Image Cleanup
2+
Given an input noisy document image, the aim of document image cleanup is to improve its readability and visibility by removing the noisy elements.
3+
4+
## Example of document image cleanup
5+
6+
### Noisy input images
7+
8+
<img src="./light_weight_document_cleanup_ICDAR2021/sample_input_output/book_org.jpg" width="33%"> </img>
9+
<img src="./light_weight_document_cleanup_ICDAR2021/sample_input_output/writing_org.jpg" width="33%"> </img>
10+
<img src="./confidence_based_Sauvola_binarization/test_images/2.jpeg" width="33%"> </img>
11+
12+
### cleanup images
13+
14+
<img src="./light_weight_document_cleanup_ICDAR2021/sample_input_output/book_dnn.jpg" width="33%"> </img>
15+
<img src="./light_weight_document_cleanup_ICDAR2021/sample_input_output/writing_dnn.jpg" width="33%"> </img>
16+
<img src="./confidence_based_Sauvola_binarization/results/2_bin_new.png" width="33%"> </img>

contrib/document_cleanup/confidence_based_Sauvola_binarization/Modified-Sauvola_Binarization.ipynb

Lines changed: 213 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)