digits
Here are 62 public repositories matching this topic...
-
Updated
Aug 5, 2017 - Swift
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 742): UnableToResolveError: Unable to resolve module prop-types from /home/********/Downloads/react-native-phone-verification-master/example/node_modules/react-native-emoji/index
-
Updated
Sep 22, 2017 - Objective-C
-
Updated
Jan 30, 2019 - Java
-
Updated
Aug 5, 2018 - Go
-
Updated
Jun 15, 2020 - Python
-
Updated
Apr 6, 2019 - C++
-
Updated
Jun 2, 2020 - Dart
-
Updated
Jul 28, 2017 - C++
-
Updated
Sep 1, 2017 - C++
-
Updated
Dec 11, 2018 - Elixir
-
Updated
Aug 4, 2019 - Python
-
Updated
Jul 31, 2019 - Python
-
Updated
Apr 5, 2017 - Python
-
Updated
Feb 24, 2020 - Python
-
Updated
Feb 9, 2020 - Java
-
Updated
Jun 13, 2020 - TypeScript
-
Updated
Jun 9, 2020 - Java
-
Updated
Apr 23, 2020 - Jupyter Notebook
On OpenCV 4.0 or later version, findContours() return 2 values.
https://docs.opencv.org/4.3.0/d3/dc0/group__imgproc__shape.html#gadf1ad6a0b82947fa1fe3c3d497f260e0
I fixed codes below.
# BEFORE
image, contours, hierarchy = cv2.findContours(mask, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# AFTER
contours, hierarchy = cv2.findContours(mask, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
-
Updated
Jun 7, 2020 - Java
-
Updated
Jan 4, 2018 - Jupyter Notebook
-
Updated
Jun 2, 2019 - Jupyter Notebook
Improve this page
Add a description, image, and links to the digits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the digits topic, visit your repo's landing page and select "manage topics."

When attempting to download cityscapes_2048x1024 I got:
./download-models.sh: line 721: download_fcn_resnet18_cityscapes_2048x512: command not foundIt looks like there was a typo, and line 721 needs to be changed from:
download_fcn_resnet18_cityscapes_2048x512todownload_fcn_resnet18_cityscapes_2048x1024Thanks for the amazing repo!