I am going to show 2 layers(depth image from kinect and a mask,respectively) in my processing project. In this project, I am going to hide areas which there is no user available by utilizing a mask. Note that, "mask" gets its pixels from a movie named "movie2" in my code.
Is there any way to blur borders of users by reducing opacity of mask borders?
Here is my code:
import SimpleOpenNI.*;
PImage mask,depth;
SimpleOpenNI kinect;
int[] userMap;
void setup(){
kinect = new SimpleOpenNI(this);
size(640,480);
kinect.enableDepth();
kinect.enableUser();
}
void draw(){
kinect.update();
depth=kinect.depthImage();
userMap = kinect.userMap();
image(depth,0,0);
mask=loadImage("mask.jpg");
mask.loadPixels();
for (int y=0; y<480; y++) {
for (int x=0; x<640; x++) {
int index = x + y *640;
if (userMap[index]!= 0) {
mask.pixels[index]=color(0,0,0,0);
}
}
}
mask.updatePixels();
image(mask,0,0);
}
There are a few things that could be improved:
ERODE
orBLUR
via filter()Other notes:
Here's a stab at illustrating the points above as code, but bare in mind this incomplete/untested: