250x250
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
- kubernetes
- 웹 프로그래밍
- 텐서플로우
- 딥러닝
- Python
- Web Programming
- 파이썬
- vue.js
- MariaDB
- tensorflow
- 논문 리뷰
- Django
- numpy
- 컴퓨터 비전
- Computer Vision
- FLASK
- 그래픽 유저 인터페이스
- POD
- k8s
- 장고
- yaml
- Tkinter
- 파이토치
- 데이터베이스
- paper review
- OpenCV
- Docker
- GUI
- pytorch
- Deep Learning
Archives
- Today
- Total
목록쿠다 (1)
Maxima's Lab
[Cuda Programming] Template Matching (템플릿 매칭, .cu 파일) 구현
오늘은 Template Matching (템플릿 매칭, .cu 파일)을 구현하는 방법에 대해서 알아보도록 하겠습니다. 전체 코드는 다음과 같습니다. #include #include #include #include #include __global__ void template_matching_kernel(const usigned char* img, const unsigned char* tpl, int img_width, int tpl_width, int tpl_height, float* output) { int x = blockIdx.x * blockDim.x + threadIdx.x; int y = blockIdx.y * blockDim.y + threadIdx.y; if (x>= img_width || ..
C(C++)/Cuda Programming
2023. 2. 21. 23:34