PcessingでopenCVを使い、顔以外を検出
processingにopenCVを入れて顔を検出する説明がネットにも本にも色々書かれているけど、口や、目だけを検出する方法が少ないので調べてみた。
例として顔検出にexampleとして入っているのは
import gab.opencv.*;
import java.awt.Rectangle;
OpenCV opencv;
Rectangle[] faces;
void setup() {
opencv = new OpenCV(this, "test.jpg");
size(1080, 720);
opencv.loadCascade(OpenCV.CASCADE_FRONTALFACE);
faces = opencv.detect();
}
void draw() {
image(opencv.getInput(), 0, 0);
noFill();
stroke(0, 255, 0);
strokeWeight(3);
for (int i = 0; i < faces.length; i++) {
rect(faces[i].x, faces[i].y, faces[i].width, faces[i].height);
}
}
この中の
opencv.loadCascade(OpenCV.CASCADE_FRONTALFACE);
ってところで検出する対象を決めている。
opencvのことが書かれているファイルは
Documents/Processing/libraries/opencv_processing/src/gab/opencv/OpenCV.java
この中に
public final static String VERSION = "0.5.4";
public final static String CASCADE_FRONTALFACE = "haarcascade_frontalface_alt.xml";
public final static String CASCADE_PEDESTRIANS = "hogcascade_pedestrians.xml";
public final static String CASCADE_EYE = "haarcascade_eye.xml";
public final static String CASCADE_CLOCK = "haarcascade_clock.xml";
public final static String CASCADE_NOSE = "haarcascade_mcs_nose.xml";
public final static String CASCADE_MOUTH = "haarcascade_mcs_mouth.xml";
public final static String CASCADE_UPPERBODY = "haarcascade_upperbody.xml";
public final static String CASCADE_LOWERBODY = "haarcascade_lowerbody.xml";
public final static String CASCADE_FULLBODY = "haarcascade_fullbody.xml";
public final static String CASCADE_PEDESTRIAN = "hogcascade_pedestrians.xml";
public final static String CASCADE_RIGHT_EAR = "haarcascade_mcs_rightear.xml";
public final static String CASCADE_PROFILEFACE = "haarcascade_profileface.xml";
とあるので、CASCADE_FRONTALFACEの部分をCASCADE_○○に書き換えれば使えそう
Author And Source
この問題について(PcessingでopenCVを使い、顔以外を検出), 我々は、より多くの情報をここで見つけました https://qiita.com/hyoutann/items/a3c28f7cd84c1f19fd3a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .