일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 컴퓨터 비전
- 그래픽 유저 인터페이스
- 논문 리뷰
- FLASK
- k8s
- OpenCV
- GUI
- POD
- 장고
- 파이썬
- MariaDB
- vue.js
- pytorch
- paper review
- 웹 프로그래밍
- 파이토치
- Web Programming
- yaml
- 딥러닝
- Python
- tensorflow
- 텐서플로우
- Docker
- Deep Learning
- Tkinter
- kubernetes
- Computer Vision
- 데이터베이스
- Django
- numpy
- Today
- Total
목록C(C++)/Cuda Programming (2)
Maxima's Lab
오늘은 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 || ..
안녕하세요, 오늘은 Cuda, Blocks 그리고 Grids 에 대해서 알아보겠습니다. Cuda 란? : GPU (그래픽 처리 장치)에서 수행하는 병렬 처리 알고리즘에 대하여 C 프로그래밍 언어등을 이용하여 사용할 수 있도록 해주는 GPGPU 입니다. 여기서, GPGPU(General Purpose computing on Graphics Processing Units을 의미합니다. https://ko.wikipedia.org/wiki/CUDA CUDA - 위키백과, 우리 모두의 백과사전 위키백과, 우리 모두의 백과사전. CUDA 처리 흐름의 예 1. 메인 메모리를 GPU 메모리로 복사 2. CPU가 GPU에 프로세스를 지시함 3. GPU가 각 코어에 병렬 수행 4. GPU 메모리로부터의 결과물을 메인 메..