使用 openimaj 进行面部裁剪

Posted

技术标签:

【中文标题】使用 openimaj 进行面部裁剪【英文标题】:Facecrop with openimaj 【发布时间】:2019-07-13 21:11:07 【问题描述】:

裁剪 MBF 图像

我使用出色的 openimaj 库 1.3.8 检测到一张人脸,但我很难从原始图像中裁剪人脸并将裁剪后的人脸保存到某个文件中。裁剪后的脸必须是 800x600 像素,所以我也需要一些缩放。

这一定是一个简单的任务,但 api 很大,我找不到适合这个用例的教程

也许你告诉我在哪里可以找到信息?

import java.io.File;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;

import org.openimaj.image.DisplayUtilities;
import org.openimaj.image.FImage;
import org.openimaj.image.ImageUtilities;
import org.openimaj.image.MBFImage;
import org.openimaj.image.colour.RGBColour;
import org.openimaj.image.colour.Transforms;
import org.openimaj.image.processing.face.detection.DetectedFace;
import org.openimaj.image.processing.face.detection.FaceDetector;
import org.openimaj.image.processing.face.detection.HaarCascadeDetector;
import org.openimaj.math.geometry.shape.Rectangle;


public class App 
    public static void main(String[] args) throws Exception, IOException 


        final MBFImage image = ImageUtilities.readMBF(new File("d:\\java\\face\\bin.jpeg"));

        FaceDetector<DetectedFace, FImage> fd = new HaarCascadeDetector(200);
        List<DetectedFace> faces = fd.detectFaces(Transforms.calculateIntensity(image));
        System.out.println("# Found faces, one per line.");
        System.out.println("# <x>, <y>, <width>, <height>");

        for (Iterator<DetectedFace> iterator = faces.iterator(); iterator.hasNext();) 
            DetectedFace face = iterator.next();
            Rectangle bounds = face.getBounds();

            image.drawShape(face.getBounds(), RGBColour.RED);

            // System.out.println(bounds.x + ";" + bounds.y + ";" + bounds.width + ";" +
            // bounds.height);

        

        DisplayUtilities.display(image);

    

【问题讨论】:

【参考方案1】:

解决了

        DetectedFace face = iterator.next();
        Rectangle bounds = face.getBounds();

        Point2d center = bounds.calculateCentroid();

        // image.drawShape(bounds, RGBColour.RED);

        // auf 800 x 600 bringen

        float b = (bounds.width * 800) / 600;

        MBFImage crop = image.extractCenter(
                (int) center.getX() , 
                (int) center.getY()  ,
                (int) bounds.width , 
                (int) b  ) ;


        ResizeProcessor resize = new ResizeProcessor(800,600);
        MBFImage small = crop.processInplace(resize);

        DisplayUtilities.display(small);

【讨论】:

以上是关于使用 openimaj 进行面部裁剪的主要内容,如果未能解决你的问题,请参考以下文章

Python Dlib 使用面部标记进行裁剪

使用 dlib 面部标志裁剪面部

如何使用凸包多边形裁剪面部区域

iOS - 将图像裁剪为检测到的面部的问题

如何使用 org.openimaj.ml.gmm 构建扬声器模型。

如何在opencv java中裁剪检测到的面部图像