org.opencv.videoio
包的VideoCapture
類包含使用系統攝像頭捕獲視訊的類和方法。 讓我們來看看它是如何做到這一點。
在使用OpenCV庫編寫Java程式碼時,需要做的第一步是使用loadLibrary()
載入OpenCV本地庫。載入OpenCV本機庫,如下所示。
// Loading the core library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
org.opencv.objdetect
包的CascadeClassifier
類用於載入分類器檔案。 通過傳遞xml檔案lbpcascade_frontalface.xml
來範例化這個類,如下所示。
// Instantiating the CascadeClassifier
String xmlFile = "F:/worksp/opencv/lbpcascade_frontalface.xml";
CascadeClassifier classifier = new CascadeClassifier(xmlFile);
可以使用CascadeClassifier
類的detectMultiScale()
方法來檢測影象中的人臉。 該方法接受Mat
類中的一個物件,該物件持有輸入影象以及類MatOfRect
的一個物件來儲存檢測到的臉部。
// Detecting the face in the snap
MatOfRect faceDetections = new MatOfRect();
classifier.detectMultiScale(src, faceDetections);
範例
以下程式演示如何檢測影象中的人臉。
package com.yiibai.cameraface;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfRect;
import org.opencv.core.Point;
import org.opencv.core.Rect;
import org.opencv.core.Scalar;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
import org.opencv.objdetect.CascadeClassifier;
public class FaceDetectionImage {
public static void main (String[] args) {
// Loading the OpenCV core library
System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
// Reading the Image from the file and storing it in to a Matrix object
String file ="F:/worksp/opencv/images/facedetection_input.jpg";
Mat src = Imgcodecs.imread(file);
// Instantiating the CascadeClassifier
String xmlFile = "F:/worksp/opencv/lbpcascade_frontalface.xml";
CascadeClassifier classifier = new CascadeClassifier(xmlFile);
// Detecting the face in the snap
MatOfRect faceDetections = new MatOfRect();
classifier.detectMultiScale(src, faceDetections);
System.out.println(String.format("Detected %s faces",
faceDetections.toArray().length));
// Drawing boxes
for (Rect rect : faceDetections.toArray()) {
Imgproc.rectangle(
src, // where to draw the box
new Point(rect.x, rect.y), // bottom left
new Point(rect.x + rect.width, rect.y + rect.height), // top right
new Scalar(0, 0, 255),
3 // RGB colour
);
}
// Writing the image
Imgcodecs.imwrite("F:/worksp/opencv/images/facedetect_output1.jpg", src);
System.out.println("Image Processed");
}
}
假定以下是上述程式中指定的輸入影象facedetection_input.jpg
。
執行上面範例程式碼後,得到以下輸出結果 -
注意: lbpcascade_frontalface.xml 檔案可從網上搜尋下載。