kessiler / parallelBoxBlur

Implementation of BoxBlur using C++ AMP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

parallelBoxBlur

In image processing, applying filter function is very common and Box Blur is one such method. In this repository I shared a C++ AMP implementation.

Note:

C++ AMP (C++ Accelerated Massive Parallelism) accelerates the execution of your C++ code by taking advantage of the data-parallel hardware that's commonly present as a graphics processing unit (GPU) on a discrete graphics card. The C++ AMP programming model includes support for multidimensional arrays, indexing, memory transfer, and tiling. It also includes a mathematical function library. You can use C++ AMP language extensions to control how data is moved from the CPU to the GPU and back.

About

Implementation of BoxBlur using C++ AMP


Languages

Language:C++ 100.0%