일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- 이미지 생성
- #실생활영어
- tensorflow update
- #일상영어
- python __init__
- tokenizing
- convexhull
- #Android
- findContours
- python 알고리즘
- 영어
- #opencv
- #프로젝트
- 영어명언
- keras
- #English
- object detection
- #영어 명언
- text2img
- word embedding
- python list
- #실생활 영어
- #1일1영어
- 완전탐색
- TensorFlow
- c언어
- 딥러닝
- Convolution Neural Network
- #영어
- opencv SURF
- Today
- Total
목록2024/08/12 (2)
When will you grow up?
https://leetcode.com/problems/group-anagrams/ 애너그램 문제이며,애너그램이란 문자열이 주어졌을 때, 알파벳의 나열 순서를 다르지만 그 구성이 일치하면 두 단어는 아나그램이라고 합니다.ex) a = "atta" b = "taat" 일때 나열 순서는 다르지만 a 2개 t 2개로 a 와 b는 Anagram이라고 표현한다. Example 1:Input: strs = ["eat","tea","tan","ate","nat","bat"]Output: [["bat"],["nat","tan"],["ate","eat","tea"]]Example 2:Input: strs = [""]Output: [[""]]Example 3:Input: strs = ["a"]Output: [["a..
rembg import 시 다음과 같은 오류가 발생하였다.from rembg import remove ImportError 내용ImportError: module 'cv2.dnn' has no attribute 'DictValue' 인터넷글을 찾아보니 다음과 같이 opencv 문제로 버전문제라고 버전을 바꾸라고 나와있다.pip install opencv-python==4.8.0.74 하지만 위와 같이 버전을 바꿔도 오류가 지속적으로 발생하여 구글링을 해본 결과 다음과 같은 방법으로 해결할 수 있었다. # 1. download the autofix toolpip install opencv-fixer==0.2.5# 2. executepython -c "from opencv_fixer import Auto..