我是编程的初学者,我展示了这门课程
http://www.magicandlove.com/blog/2014/03/06/people-detection-in-processing-with-opencv/ &安培;我想在网络bean中运行它,但主要的方法是错过&一些错误似乎也找不到PImage,大小,背景 你能帮助我如何运行它吗?应该有什么类。
PImage small;
HOGDescriptor hog;
byte [] bArray;
int [] iArray;
int pixCnt1, pixCnt2;
int w, h;
float ratio;
void setup() {
size(640, 480);
ratio = 0.5;
w = int(width*ratio);
h = int(height*ratio);
background(0);
// Define and initialise the default capture device.
cap = new Capture(this, width, height);
cap.start();
// Load the OpenCV native library.
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
println(Core.VERSION);
pixCnt1 = w*h*4;
pixCnt2 = w*h;
bArray = new byte[pixCnt1];
iArray = new int[pixCnt2];
small = createImage(w, h, ARGB);
hog = new HOGDescriptor();
hog.setSVMDetector(HOGDescriptor.getDefaultPeopleDetector());
noFill();
stroke(255, 255, 0);
}
void draw() {
if (cap.available()) {
cap.read();
}
else {
return;
}
image(cap, 0, 0);
答案 0 :(得分:0)
您需要复制该页面中的所有内容,包括导入,我认为您尝试创建的对象来自假定要导入的内容,以便可以解决您的问题。