Alex L
Alex L

Reputation: 8935

CUDA equivalent of estimateRigidTransform in OpenCV 3

I'm working on a video stabilisation project using OpenCV, and I've got a CPU implementation working but the performance needs improvement so I'm trying to move most of the processing to the GPU.

The current implementation primarily uses these four OpenCV functions:

So far I've found the following equivalents on the GPU:

Is there a CUDA equivalent of estimateRigidTransform?

Upvotes: 3

Views: 1358

Answers (1)

taarraas
taarraas

Reputation: 1483

OpenCV doesn't have implementation for estimateRigidTransform on CUDA. There is opencv based project on github, which has functions for computing homographies and estimating rigid transforms: https://github.com/danielsuo/cuSIFT

Here is function you need: https://github.com/danielsuo/cuSIFT/blob/master/extras/rigidTransform.cu

Upvotes: 2

Related Questions