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
- GUI
- 컴퓨터 비전
- kubernetes
- Deep Learning
- Tkinter
- numpy
- 파이썬
- 텐서플로우
- 데이터베이스
- Web Programming
- pytorch
- OpenCV
- yaml
- 논문 리뷰
- 그래픽 유저 인터페이스
- POD
- Django
- Computer Vision
- MariaDB
- paper review
- tensorflow
- Python
- 딥러닝
- FLASK
- 웹 프로그래밍
- 장고
- k8s
- 파이토치
- Docker
- vue.js
Archives
- Today
- Total
목록Cuda programming (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