Ask Your Question

victusfate's profile - activity

2016-01-19 04:19:52 -0600 received badge  Teacher (source)
2014-02-19 10:21:31 -0600 answered a question video stabilization

I'd suggest using the example in a recent opencv release (opencv3.0+) https://github.com/Itseez/opencv/blob/master/samples/cpp/videostab.cpp

g++ videostab3.0.cc -o videostab $(pkg-config --libs opencv)

I found better stabilization results with a full homographic model, but it was much slower.

ps After spending some time with the videostab module in opencv, I didn't have much luck with a generalized high quality and fast (real time) video stabilization tool. I opted for using the ffmpeg vid.stab plugin, but would like to revisit opencv video stabilization once the module has matured.

2013-04-16 13:28:08 -0600 received badge  Editor (source)
2013-04-16 10:22:29 -0600 asked a question opencv oclMat interop with clBuffer or clImage data

how can I construct an oclMat from device memory, and also send the contents of oclMat to opencl data types after

for example how can I go from a cl::Buffer or cl::Image2D to an oclMat with the current constructors. The opencv opencl code I'd like to use is part of a processing chain.

2013-02-27 12:47:31 -0600 received badge  Supporter (source)