[JAVA] Bureau: OpenCV Fill Poly

Goal
Test OpenCV Fill Poly.

OpenCV_FillPoly.java


import org.opencv.core.*;
import org.opencv.imgproc.Imgproc;
import org.opencv.core.Point;

import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.List;

public class OpenCV_FillPoly {

    static {System.loadLibrary(Core.NATIVE_LIBRARY_NAME);}
    private JFrame frmjavaSwing;

    /**
        * Launch the application.
        */
    public static void main(String[] args) {

        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    OpenCV_FillPoly window = new OpenCV_FillPoly();
                    window.frmjavaSwing.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public OpenCV_FillPoly() {
        initialize();
    }

    /**
     *  init the contents of the frame.
     */
    private void initialize() {
        Mat source =  paint();
        BufferedImage image=matToBufferedImage(source);

        frmjavaSwing = new JFrame();
        frmjavaSwing.setTitle("pratique ouverte en forme de Hatabe(Remplissage)");
        frmjavaSwing.setBounds(100, 100, 300, 300);
        frmjavaSwing.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frmjavaSwing.getContentPane().setLayout(null);

        final JLabel lblNewLabel = new JLabel("");
        lblNewLabel.setBounds(5, 5, image.getHeight()+10, image.getWidth()+10);
        lblNewLabel.setIcon(new ImageIcon(image));
        frmjavaSwing.getContentPane().add(lblNewLabel);
    }
    public Mat paint(){

        Mat source = new Mat(250,250, CvType.CV_8UC3, new Scalar(255,255,255));
        java.util.List<MatOfPoint> allMatOfPoint=new ArrayList<>();
        MatOfPoint mop1=new MatOfPoint();
        java.util.List<Point> allPoint1=new ArrayList<>();
        allPoint1.add(new Point(38,21));
        allPoint1.add(new Point(13,128));
        allPoint1.add(new Point(13,139));
        allPoint1.add(new Point(150,240));
        allPoint1.add(new Point(220,209));
        allPoint1.add(new Point(243,143));
        allPoint1.add(new Point(154,26));
        mop1.fromList(allPoint1);

        MatOfPoint mop2=new MatOfPoint();
        List<Point> allPoint2=new ArrayList<>();
        allPoint2.add(new Point(125,0));
        allPoint2.add(new Point(0,128));
        allPoint2.add(new Point(130,139));
        mop2.fromList(allPoint2);
        allMatOfPoint.add(mop1);
        Imgproc.fillPoly(source, allMatOfPoint, new Scalar(255,0,0));
        allMatOfPoint.add(mop2);
        Imgproc.fillPoly(source, allMatOfPoint, new Scalar(0,255,0));
        return source;
    }

    public BufferedImage matToBufferedImage(Mat matrix) {
        int cols = matrix.cols();
        int rows = matrix.rows();
        int elemSize = (int)matrix.elemSize();
        byte[] data = new byte[cols * rows * elemSize];
        int type;
        matrix.get(0, 0, data);
        switch (matrix.channels()) {
            case 1:
                type = BufferedImage.TYPE_BYTE_GRAY;
                break;
            case 3:
                type = BufferedImage.TYPE_3BYTE_BGR;
                // bgr to rgb
                byte b;
                for(int i=0; i<data.length; i=i+3) {
                    b = data[i];
                    data[i] = data[i+2];
                    data[i+2] = b;
                }
                break;
            default:
                return null;
        }
        BufferedImage image2 = new BufferedImage(cols, rows, type);
        image2.getRaster().setDataElements(0, 0, cols, rows, data);
        return image2;
    }
}
Result
![opencv_fill_poly.JPG](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/276243/3067ce7c-3cd4-86de-eab1-99355f23719b.jpeg)

Recommended Posts

Bureau: OpenCV Fill Poly
Bureau: OpenCV Fill ConvexPoly
Bureau: OpenCV Flood Fill
Bureau: OpenCV Fill Poly avec contrôle de la souris
Bureau: OpenCV Flood Fill For Fun
Bureau: seuil OpenCV
Bureau: OpenCV Dilate
Bureau: OpenCV Expand
Bureau: OpenCV Affine
Bureau: OpenCV Emboss
Bureau: OpenCV CLAHE
Bureau: OpenCV HDR
Bureau: Polylignes OpenCV
Bureau: OpenCV Denoise
Bureau: netteté OpenCV
Bureau: OpenCV Concat
Bureau: OpenCV OpenCV_SalonUseBlurAddWeighted
Bureau: OpenCV Mosaic
Bureau: OpenCV Erode
Bureau: OpenCV Denoise
Bureau: Rectangle OpenCV
Bureau: OpenCV Watershed
Bureau: Texte OpenCV
Bureau: OpenCV Inpaint
Bureau: OpenCV NormalizeBlur
Bureau: OpenCV StereoSGBM
Bureau: OpenCV Spot
Bureau: OpenCV Canny
Bureau: OpenCV Denoise3
Bureau: histogramme OpenCV
Bureau: OpenCV Dft
Bureau: OpenCV Decolor
Bureau: OpenCV FaceDetector
Bureau: OpenCV Denoise2
Bureau: OpenCV StereoBM
Bureau: Filtre OpenCV Kirsch
Bureau: Filtre laplacien OpenCV 2
Bureau: OpenCV Add WaterMark
Bureau: OpenCV Grab Cut
Bureau: OpenCV Sharpness Gui
Bureau: Filtre Freichennel OpenCV
Bureau: OpenCV Draw Circle
Bureau: OpenCV Mean Filter
Bureau: référentiel Java OpenCV
Bureau: OpenCV Sobel Filter2
Bureau: OpenCV pyrMeanShift Filter
Bureau: OpenCV OpticalFlow PyrLK
Bureau: Piano virtuel OpenCV
Bureau: image de fusion OpenCV
Bureau: Filtre OpenCV Scharr
Bureau: aperçu de la webcam Opencv
Bureau: Filtre laplacien OpenCV
Bureau: Flou médian OpenCV
Bureau: OpenCV Add Broad
Bureau: OpenCV Robinson Filter
Bureau: enregistrement vidéo OpenCV
Bureau: Aplatissement de la texture OpenCV
Bureau: espace colorimétrique OpenCV
Bureau: Filtre OpenCV SqrBox
Bureau: redimensionner l'image OpenCV
Bureau: Croquis au crayon OpenCV