Ask Your Question

kizmo's profile - activity

2015-02-20 06:49:02 -0600 asked a question GpuMat extracted from larger GpuMat is not continuous.

I am extracting smaller GpuMat from GpuMat. The smaller GpuMat cannot be used in any further operation since it produces errors because its step value is not right (step value is the same as in oldMat but column and line numbers are different). How can i make the new GpuMat continuous again?

GpuMat newMat = GpuMat( oldMat.clone(), Rect( x, y, w, h));
2014-04-01 08:23:40 -0600 commented question count connected components (OCL only)

I was wondering if there is any way to achieve at least remotely similar results using ocl. I know its a long shot but still worth asking.
If there is no other way, I would apriciate any advice on how to implement it in OpenCL or use already writen OpenCL code.

2014-04-01 06:55:49 -0600 received badge  Editor (source)
2014-04-01 06:55:20 -0600 asked a question count connected components (OCL only)

I need to extract some atributes (number of connected regions, max/min region size, ...) from binary image.

The problem is I am limited to OCL functionalities only.

I would hate to go on OpenCL level so any idea would be greatly appreciated.