python, ๋ฅ๋ฌ๋, ๋ฐ์ดํฐ๋ถ์ ์ ๋ฌธ ์คํฐ๋
Courses
Reviews
- Business card recognition function implementation course using OpenCV
- Business card recognition function implementation course using OpenCV
- Business card recognition function implementation course using OpenCV
- Business card recognition function implementation course using OpenCV
- Business card recognition function implementation course using OpenCV
Posts
Q&A
๊ฐ์ ๋ง์ง๋ง ์์ ์์ ๋ค์๊ณผ ๊ฐ์ ์๋ฌ๊ฐ ๋ฐ์ํฉ๋๋ค.
๋ฌธ์์๋ณธ: https://www.danvk.org/2015/01/07/finding-blocks-of-text-in-an-image-using-python-opencv-and-numpy.html ํ ์คํธ์ ์ฌ์ฉํ ์ด๋ฏธ์ง ํ์ผ: https://www.danvk.org/images/milstein-backing.jpg
- 0
- 4
- 9.1K
Q&A
๊ฐ์ ๋ง์ง๋ง ์์ ์์ ๋ค์๊ณผ ๊ฐ์ ์๋ฌ๊ฐ ๋ฐ์ํฉ๋๋ค.
https://gist.github.com/luipillmann/d76eb4f4eea0320bb35dcd1b2a4575ee์ฌ๊ธฐ ์์ค๋ฅผ ํ ์คํธํด๋ณด๋ ์ ๋ฉ๋๋ค. ๋ค๋ง opencv ๋ฒ์ ์ฐจ์ด๋ก ์๊ธฐ๋ ๋ฌธ์ ๊ฐ ์์ผ๋ฉด ์์ค๋ฅผ ์ด์ง ์์ ํด์ผ ํฉ๋๋ค. findContours()์ ๋ฆฌํด๊ฐ์ด 2๊ฐ์ธ์ง, 3๊ฐ์ธ์ง์ ๋ฐ๋ผ ์์ ํ์ํฉ๋๋ค. findContours()๊ฐ ๋ ๊ตฐ๋ฐ ์์ต๋๋ค. ์ด๋ฐ ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ฉด findContours()์ ๋ฆฌํด๊ฐ์ด 2๊ฐ์ด๋ผ๋ ์๋ฏธ๋ก, ์๋์ ์์ค์ ๊ฐ์ด ์์ ํ์ํฉ๋๋ค. ValueError: not enough values to unpack (expected 3, got 2) ์์ ์ : #_, contours, hierarchy = cv2.findContours(dilated_image, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) ์์ ํ: contours, hierarchy = cv2.findContours(dilated_image, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
- 0
- 4
- 9.1K





