Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- unsupervised learning
- RuntimeError
- Kinect
- Omnidirectional
- 3d vision
- LayoutEstimation
- SensorFusion
- numpy
- DepthEstimation
- IndoorReconstruction
- git
- Multi-viewRegistration
- MirrorSegmentation
- LearnGitBranching
- PaperReview
- CVPR2020
- pytorch
- RGBD
- MirrorDiscrimination
- CONCATENATE
- ICCV2019
- 다단
- hstack
- Deeplearning
- tensorboard
- vstack
- deep learning
- OmniSLAM
- Python
- ComputerVision
Archives
- Today
- Total
목록etc (12)
let me graduate
Word 각주 왼쪽 단에 고정하기
cthings.tistory.com/6 MS Word 2013이상 버전에서 다단 각주가 양쪽으로 퍼지는 현상 해결하기 IEEE 논문은 형식에 맞춰 제출해야 한다. IEEE 에서 제공하는 논문 템플릿은 2단 레이아웃에 각주는 왼쪽 단에만 있다. 그런데 이 소프트웨어는 저장만 하면 지멋데로 레이아웃을 수정한다. 각주가 cthings.tistory.com
etc
2020. 6. 2. 20:56
SSH 설정 command
DDNS domain: ip.address.org 일 때, 공유기 설정 port forwarding에서 외부 포트 1111 -> 기본 ssh port인 22로 내부 포트 설정 Ubuntu에서 ssh가 점유하고 있는 port 확인 sudo netstat -antp | grep ssh 외부에서 port 1111로 ssh 접속할 때 port number를 옵션으로 지정해줘야 한다. ssh [username]@[ip.address.org] -p1111
etc
2020. 5. 26. 17:10
[Ctypes] cv::Mat 을 python에서 np.array로 변환하기
https://answers.opencv.org/question/197826/create-image-in-python-from-c-pointer-opencv-mat-return-from-c-dll/
etc
2019. 12. 1. 17:52
[Git] 특정 파일, 폴더 제외시키기
.git 폴더가 있는 최상위 폴더에 .gitignore 파일 생성 #folder Directory/ #file filename.file *.file
etc
2019. 12. 1. 16:53
[Opencv, Numpy] Indexing
Opencv : (x, y) : (column, row) Numpy : (y, x) : (row, column)
etc
2019. 11. 29. 15:11