2

Are the OpenCV primitives based on the CUDA Nvidia Performance Primitives (NPP)?.

By primitives I mean the same ones implemented in the NPP library, for example: boxFilter, Mirror, Convolution...

I would like to know about this issue as I'm planning use the NPP library. However, OpenCV has more functions that could help me for example in border treatment for image processing.

4

2 に答える 2

5

OpenCV は一部の機能に NPP ライブラリを使用します。しかし、そのような関数の完全なリストを作成するのは困難です。

一部の関数は、NPP 実装 ( boxFiltergraphcuthistEven) のみを使用します。

他の関数は、異なる入力パラメーターに対して異なる実装を使用します。たとえば、一部の入力パラメーター (およびタイプ、および補間モード)にcv::gpu::resizeは NPP を使用し、他のパラメーターには独自の実装を使用します。CV_8UC1CV_8UC3INTER_NEARESTINTER_LINEAR

于 2013-07-09T16:34:16.327 に答える
0

CUDA を使用した GPU 上の OpenCV に関する優れたウェビナー

ビデオ - http://on-demand.gputechconf.com/gtc/2013/webinar/opencv.mp4

スライド PDF - http://on-demand.gputechconf.com/gtc/2013/webinar/opencv-gtc-express-shalini-gupta.pdf

于 2013-07-10T03:19:34.210 に答える