First time here? Check out the FAQ!

Ask Your Question
1

GpuMat to device data type conversion

asked Oct 25 '12

Quan Tran Minh gravatar image

Hi all,

I wonder to know that is there a way to convert GpuMat to CUDA data type and vice versa? Say, I have GpuMat(512, 512, CV_32FC2) and I want to convert it to float2* which has 512*512 elements. The reason is I want to write my own kernel outside cv::gpu modules. It seems that the smart pointer could work in this case.

Best regards,

Preview: (hide)

1 answer

Sort by » oldest newest most voted
6

answered Oct 25 '12

Vladislav Vinogradov gravatar image
GpuMat d_mat(512, 512, CV_32FC2);
float2* data = d_mat.ptr<float>();
size_t step = d_mat.step;
// kernel
__global__ void func(float2* data, size_t step)
{
    int x = ...;
    int y = ...;
    float2* row_y = (float2*)((char*)data + y * step);
    float2 val = row_y[x];
}
Preview: (hide)

Comments

thanks a lot ^^ I gotta try :)

Quan Tran Minh gravatar imageQuan Tran Minh (Oct 25 '12)edit

Dear Sir,

you are my saviour.

tfreitas gravatar imagetfreitas (Oct 20 '17)edit

Question Tools

Stats

Asked: Oct 25 '12

Seen: 3,396 times

Last updated: Oct 25 '12