issues Search Results · repo:mohammaduzair9/Basic-Image-Processing language:Python
Filter by
3 results
(61 ms)3 results
inmohammaduzair9/Basic-Image-Processing (press backspace or delete to remove)def calculateTransitions(im): h, w = im.shape[0], im.shape[1] prev = im[0,0] n = 0 for x in range(1, h): for y in
range(1, w): curr = im[x,y] # check if the is black to white transition n = n+1 if curr ...
noorulain3
- Opened on Mar 13, 2020
- #3
ValueError Traceback (most recent call last) ipython-input-10-9d93f847a88b in module 55 return n 56 --- 57 boundingBox =
findBB(binary) 58 cropImg = binary[boundingBox[0]:boundingBox[1], boundingBox[2]:boundingBox[3]] ...
noorulain3
- Opened on Mar 13, 2020
- #2
NameError Traceback (most recent call last) ipython-input-2-5b9f513bd1ea in module 54 return n 55 --- 56 boundingBox =
findBB(binary) 57 cropImg = binary[boundingBox[0]:boundingBox[1], boundingBox[2]:boundingBox[3]] ...
noorulain3
- 1
- Opened on Mar 13, 2020
- #1

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Restrict your search to the title by using the in:title qualifier.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.