const static double 멤버 변수 클래스에 const static 키워드와 함께 double type으로 변수를 선언하고 초기화해보면 아래와 같은 에러가 뜬다. class sample{ const static double pi=3.141592; }; a member of type "const double" cannot have an in-class initializer 찾아보니 const static 키워드는 integral type에만 붙일 수 있다고 한다. integral type이란 말이 잘 이해안됐는데 찾아보니 integral type은 fixed point type(ex: int)인 것으로 보인다. C++11 이상을 지원하는 컴파일러를 사용중이라면, const 대신 constexpr..
#include 를 추가하면 된다.
프로젝트 관리를 깃랩으로 하는 경우 git fetch --all git reset --hard origin/master git pull origin master https://about.gitlab.com/blog/2021/03/10/new-git-default-branch-name/ The new Git default branch name Why we're joining the Git community and updating "master" to "main". about.gitlab.com 최근에 깃랩도 initial branch의 default 이름을 master -> main으로 바꿈 Every Git repository has an initial branch, which is the first b..
void MainWindow::wheelEvent(QWheelEvent *ev) { if(ev->angleDelta().y() > 0) // up Wheel action1(); else if(ev->angleDelta().y() delta()였는데 버전업되면서 deprecation 됐나보다. github.com/developer0hye/Yolo_Label/ developer0hye/Yolo_Label GUI for marking bounded boxes of ..
std::vector matrix(rows, std::vector(cols)); 특정 값으로 초기화하는 경우 std::vector matrix(rows, std::vector(cols, value)); stackoverflow.com/questions/17663186/initializing-a-two-dimensional-stdvector Initializing a two dimensional std::vector So, I have the following: std::vector fog; and I am initializing it very naively like: for(int i=0; i
유닉스 시스템에서는 한 줄의 끝이 LF(Line Feed)로 이루어지는 반면, 윈도우에서는 CR(Carriage Return)와 LF(Line Feed), 즉 CRLF로 이루어져있다. Git은 OS와 상관없이 일관성을 유지할 수 있도록 자동 변환 기능을 지원한다. 이 기능은 개발자가 git에 코드를 Commit할 때는 CRLF를 LF로 변환해주고, git의 코드를 개발자가 Clone할때는 LF를 CRLF로 변환해준다. 윈도우 사용자의 경우 아래의 명령어 중 하나를 입력하면 된다. git config --local core.autocrlf true git config --global core.autocrlf true --global을 argument로 주면 해당 PC내에 모든 프로젝트에 이 기능이 적용된다..
Deque는 Double Ended Queue의 줄임말이다. 한국에서는 이를 디큐 혹은 데크로 표기하는 경우를 많이 보았다. 뭐가 맞을까? 유튜브에 Deque를 검색하여 외국인들의 발음을 들어봐도 누구는 디큐라고 하고 누구는 데크라고 한다. 또 어떤 사람은 더블엔드 큐, 디이 큐라고도 발음한다. 뭐가 맞는지 모르겠다. 내가 생각하기에 Deque는 결국 Queue(큐!)를 기저로 둔 자료구조이므로 De/que로 끊어 읽어 디큐로 발음하는 게 맞다는 생각이 든다.
PP-YOLO: An Effective and Efficient Implementation of Object Detector arxiv.org/pdf/2007.12099v3.pdf Bag of Freebies for Training Object Detection Neural Networks arxiv.org/pdf/1902.04103.pdf YOLOv4: Optimal Speed and Accuracy of Object Detection arxiv.org/pdf/2004.10934.pdf
stackoverflow.com/questions/2678175/iterator-to-last-element-in-stdlist Iterator to last element in std::list #include using std::list; int main() { list n; n.push_back(1); n.push_back(2); n.push_back(3); list ::iterator iter = n.begin(); std::a... stackoverflow.com
- Total
- Today
- Yesterday
- 백준 11053
- 가장 긴 증가하는 부분 수열
- cosine
- 순열
- MOT
- LCA
- 이분탐색
- 문제집
- 백준
- 단축키
- ㅂ
- 위상 정렬 알고리즘
- 조합
- C++ Deploy
- 백준 1766
- 백준 11437
- 자료구조
- Lowest Common Ancestor
- 파이참
- PyCharm
- 인공지능을 위한 선형대수
- 백트래킹
- FairMOT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |