Skip to content

mazbox/ofxKinectInpainter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple addon for filling holes in kinect depth maps using the cv::inpaint() function.

usage:

	setup:
		// the algorithm is quite demanding compuationally,
		// so you can do a downsampled version
		kinectInpainter.setup(width=640, height=480, downsampling=8);
	
	update:
		
		
		kinectInpainter.inpaint(depthImage);
		
	
	configuration:
	
		// 3-10 is a good value
		kinectInpainter.setInpaintingRadius(int radius);
	
		// 4-8 is realistic
		kinectInpainter.setDownsampling(int downsampleFactor);

About

Fill those pesky holes in your depth map with ofxKinectInpainter!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages