Ask Your Question

hiwaa's profile - activity

2017-10-03 08:48:37 -0600 commented question about ICP matching algorithm.

so, I found this page this source have some bugs? Does anyone knows?

2017-10-03 03:57:47 -0600 commented question about ICP matching algorithm.

Thank you berak! I was looking for it !

2017-10-03 03:23:43 -0600 asked a question about ICP matching algorithm.

about ICP matching algorithm. I want to try to make an application like Kinect Fusion. so, I'll use OpenCV. I found it O

2015-08-28 12:37:50 -0600 commented answer How to use MedianBlur to Mat data CV_32FC1

Thank you , so the size means kernel size?

2015-08-28 11:30:22 -0600 asked a question How to use MedianBlur to Mat data CV_32FC1

Hi there

I want to use MedianBlur to CV_32FC1 data. but, it use only 8bit data format data ? what would be a good way to do it?

so, my soce code is this. but , I run this code , and downed the median blure with no error code.

cv::Mat depthMat = cv::Mat(HEIGHT_BASE_PIC, WIDTH_BASE_PIC, CV_32FC1, SDepthImage->depthImage);
//  cv::imshow("******DepthMat******"+cameraID, depthMat / 4500.0f); 
cv::Mat noiseDeletedMatDepth ;
cv::medianBlur(depthMat, noiseDeletedMatDepth,7);

so, how to use medianBlur for 32bit-float depth data ?