我是图像处理的新手。如何使用 Simple OpenNI 中的 getUserPixels() 进行处理来跟踪多个用户?这以什么为参数?我将如何设置此代码?
问问题
2391 次
1 回答
1
这个想法是跟踪检测到的用户。
这些sceneImage()/sceneMap()
功能可以方便地跟踪用户像素,但我也更喜欢启用SKEL_PROFILE_NONE
配置文件来跟踪用户。
这适用于返回整数的onNewUser
andonLostUser
事件:该用户的 id。此 ID 对于跟踪总用户或检测到的最新用户很重要。获得用户 ID 后,您可以将其插入其他 SimpleOpenNI 功能,例如getCoM()
返回用户的“质心”(身体中心的 x、y、z 位置)。
因此,您将使用上述用户事件来更新内部用户列表:
import SimpleOpenNI.*;
SimpleOpenNI context;
ArrayList<Integer> users = new ArrayList<Integer>();//a list to keep track of users
PVector pos = new PVector();//the position of the current user will be stored here
void setup(){
size(640,480);
context = new SimpleOpenNI(this);
context.enableDepth();
context.enableScene();
context.enableUser(SimpleOpenNI.SKEL_PROFILE_NONE);//enable basic user features like centre of mass(CoM)
}
void draw(){
context.update();
image(context.sceneImage(),0,0);
if(users.size() > 0){//if there are any users
for(int user : users){//for each user
context.getCoM(user,pos);//get the xyz pozition
text("user " + user + " is at: " + ((int)pos.x+","+(int)pos.y+","+(int)pos.z+",")+"\n",mouseX,mouseY);//and draw it on screen
}
}
}
void onNewUser(int userId){
println("detected" + userId);
users.add(userId);//a new user was detected add the id to the list
}
void onLostUser(int userId){
println("lost: " + userId);
//not 100% sure if users.remove(userId) will remove the element with value userId or the element at index userId
users.remove((Integer)userId);//user was lost, remove the id from the list
}
高温高压
于 2013-02-07T13:22:57.953 回答