[JAVA] Bureau: OpenCV Emboss For Rectangle

Goal
Test OpenCV emboss for rectangle.

OpenCV_EmbossForRectangle.java


import java.awt.EventQueue;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JLabel;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.List;

import org.opencv.core.MatOfPoint;
import org.opencv.core.Core;
import org.opencv.core.CvType;
import org.opencv.core.Mat;
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 java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

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

    public int srcX=0;
    public int srcY=0;

    public int secondX=0;
    public int secondY=0;

    public Point innerP1;
    public Point innerP2;

    public Mat matWantToSave;

    public Mat EmbossArea1;
    public Mat EmbossArea2;
    public Mat EmbossArea3;

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

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

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

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        final Mat source = Imgcodecs.imread(
                "D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\DSC_0836.jpg ");

        BufferedImage image=matToBufferedImage(source);

        frmjavaSwing = new JFrame();
        frmjavaSwing.setTitle("擷 tori ROI production Tachibana floating 雕 production pratique");
        frmjavaSwing.setBounds(100, 100, 990, 395);
        frmjavaSwing.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frmjavaSwing.getContentPane().setLayout(null);

        final JLabel lblLocation = new JLabel("");
        lblLocation.setBounds(10, 10, 112, 25);
        frmjavaSwing.getContentPane().add(lblLocation);

        final JLabel lblLocation2 = new JLabel("");
        lblLocation2.setBounds(158, 10, 112, 25);
        frmjavaSwing.getContentPane().add(lblLocation2);

        JPanel panel = new JPanel();
        panel.setBounds(10, 45, 473, 301);
        frmjavaSwing.getContentPane().add(panel);

        final JLabel lblNewLabel = new JLabel("");
        panel.add(lblNewLabel);

        //Étui pour souris de supervision,點 擊 2ème individu 點
        lblNewLabel.addMouseMotionListener(new MouseMotionAdapter() {
            @Override
            public void mouseDragged(MouseEvent arg0) {
                lblLocation2.setText("X:"+arg0.getX()+",Y:"+arg0.getY());

                setSecondX(arg0.getX());
                setSecondY(arg0.getY());

                BufferedImage newImage=matToBufferedImage(paintRectangle(arg0.getX(),arg0.getY()));
                lblNewLabel.setIcon(new ImageIcon(newImage));


            }
        });

        final JLabel lblRoi = new JLabel("");
        lblRoi.setBounds(494, 45, 478, 306);
        frmjavaSwing.getContentPane().add(lblRoi);


        lblNewLabel.setIcon(new ImageIcon(image));

        JButton btnNewButton = new JButton("擷 ROI moyen et permanent de tori");
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                getRoiAndEmboss();
                if (getEmbossArea1()!=null){

                    Mat source1 = Imgcodecs.imread("D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\DSC_0836.jpg ");
                    //Récupérer une petite copie en grande
                    //Area1
                    Mat embossArea1=getEmbossArea1();//obtenir le bloc de la zone flottante 1

                    //Zone ROI de Tori Area1 et Area3
                    Rect roi=new Rect(Math.min(getSrcX(),getSecondX()),Math.min(getSrcY(),getSecondY()),Math.abs(getSecondX()-getSrcX()),Math.abs(getSecondY()-getSrcY()));//Impossible Hihara Keidai,Petit

                    //Coller la source1
                    Mat destinationROI = source1.submat( roi );
                    embossArea1.copyTo( destinationROI , embossArea1);
                    //Area2
                    Mat embossArea2=getEmbossArea2();//obtenir le bloc de la zone flottante 2
                    //Zone de retour sur investissement Tori Area2 et Area3
                    Rect tempInner=new Rect(getInnerP1(),getInnerP2());
                    //Coller la source1
                    Mat innerMat=source1.submat( tempInner );
                    embossArea2.copyTo( innerMat , embossArea2);

                    //Area3
                    Mat embossArea3=getEmbossArea3();//obtenir des blocs de zone flottante 3
                    //Coller la source1
                    embossArea3.copyTo( destinationROI , embossArea3);

                    BufferedImage image=matToBufferedImage(source1);
                    lblRoi.setText("");
                    lblRoi.setIcon(new ImageIcon(image));

                }else{
                    lblRoi.setText("Blocage du ROI non réglementé!");
                }

            }
        });
        btnNewButton.setBounds(278, 10, 150, 25);
        frmjavaSwing.getContentPane().add(btnNewButton);


        //Étui pour souris de supervision,點 擊 1er individu 點
        lblNewLabel.addMouseListener(new MouseAdapter() {
            @Override
            public void mouseClicked(MouseEvent arg0) {
                lblLocation2.setText("");
                lblLocation.setText("Depuis le début:X:"+arg0.getX()+",Y:"+arg0.getY());
                setSrcX(arg0.getX());
                setSrcY(arg0.getY());
                BufferedImage newImage=matToBufferedImage(paintPoint(arg0.getX(),arg0.getY()));
                lblNewLabel.setIcon(new ImageIcon(newImage));
            }
        });



    }
    //繪 圖 au premier individu
    public Mat paintPoint(int x,int y){
        Mat src = Imgcodecs.imread("D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\DSC_0836.jpg ");
        Imgproc.circle(src, new Point(x,y), 2, new Scalar(0,55,255),2);
        return src;

    }
    //繪 ROI 區,Gourmand ou flottant
    public Mat paintRectangle(int x,int y){
        Mat src = Imgcodecs.imread("D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\DSC_0836.jpg ");
        Point srcPoint=new Point(getSrcX(),getSrcY());
        Imgproc.rectangle(src, srcPoint, new Point(x,y), new Scalar(0,0,255),2);
        setSecondX(x);
        setSecondY(y);
        return src;

    }
    //處 處 圖 ROI 區 變 Debout ou flottant
    public void getRoiAndEmboss(){
        Mat RoiMat;
        Mat MaskTemplate = null;
        Mat dst = new Mat();
        if(getSecondX()>0 && getSecondY()>0){
            Mat source=
                    Imgcodecs.imread("D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\DSC_0836.jpg ");
            Rect roi=new Rect(new Point(getSrcX(),getSrcY()),new Point(getSecondX(),getSecondY()));

            RoiMat=source.submat(roi);
            // source.

            //area1-start,Dessiner la zone 1 en diagonale supérieure gauche,Diagonale supérieure droite,Diagonale inférieure droite
            //Angle oblique 45 degrés,Degré calculé
            double angleRad = 45*Math.PI / 180.0;   // convert angle to radians
            //Prédéfini 與 ROI même taille,Tout panneau de modèle de route de brousse blanche
            MaskTemplate=new Mat(RoiMat.size(),CvType.CV_8UC1,new Scalar(0));

            int length = 25;//Épaisseur debout ou flottante
            Point direction = new Point(length * Math.cos(angleRad), length * Math.sin(angleRad)); // calculate direction

            //Remplissage en forme de tanabe Poly Matériaux requis
            List<MatOfPoint> allMatOfPoint=new ArrayList<MatOfPoint>();
            MatOfPoint mop1=new MatOfPoint();
            List<Point> allPoint1=new ArrayList<Point>();

            //area1 6 pièces,Circulation requise
            allPoint1.add(new Point(0,0));//p1
            allPoint1.add(new Point(0 +direction.x*0.5,0 +direction.y*0.5));//p2
            allPoint1.add(new Point(RoiMat.width()-direction.x*0.5,0 +direction.y*0.5));//p3
            allPoint1.add(new Point(RoiMat.width()-direction.x*0.5,RoiMat.height()-direction.y*0.5));//p4
            allPoint1.add(new Point(RoiMat.width(),RoiMat.height()));//p5
            allPoint1.add(new Point(RoiMat.width(),0));//p6
            mop1.fromList(allPoint1);
            allMatOfPoint.add(mop1);
            Imgproc.fillPoly(MaskTemplate, allMatOfPoint,  new Scalar(255,255,255));//Remplissage d'achèvement,Blanc pour zone1(255,255,255)

            //C'est un tapis à plusieurs facettes
            Core.bitwise_and(RoiMat, RoiMat, dst,MaskTemplate);
            //zone1 Meiryo Kasori
            dst.convertTo(dst, -1, 2, 50);
            //Valeur globale de la construction,Demande de rapatriement
            setEmbossArea1(dst);
            //area1-end

            //area2-start,Partie rectangulaire intérieure de type Area2
            Mat dst2 = new Mat();

            //partie rectangulaire intérieure
            Rect rectDst2=new Rect(new Point(0 +direction.x*0.5,0 +direction.y*0.5),new Point(RoiMat.width()-direction.x*0.5,RoiMat.height()-direction.y*0.5));
            //Valeur globale de la construction,Demande de rapatriement
            setInnerP1(getSrcX()+(int)direction.x*0.5,0 +getSrcY()+(int)direction.y*0.5);
            setInnerP2(getSrcX()+RoiMat.width()-direction.x*0.5,getSrcY()+RoiMat.height()-direction.y*0.5);
            //Zone d'arrivée2 partie rectangulaire intérieure,Et parce que Mat
            dst2=RoiMat.submat(rectDst2);
            //Valeur globale de la construction,Demande de rapatriement
            setEmbossArea2(dst2);


            //area3-start,Dessiner la zone 1 en diagonale supérieure gauche,Diagonale inférieure gauche,Diagonale inférieure droite
            Mat dst3 = new Mat();
            RoiMat=source.submat(roi);
            //Prédéfini 與 ROI même taille,Tout panneau de modèle de route de brousse blanche
            MaskTemplate=new Mat(RoiMat.size(),CvType.CV_8UC1,new Scalar(0));

            //Remplissage en forme de tanabe Poly Matériaux requis
            allMatOfPoint=new ArrayList<MatOfPoint>();
            MatOfPoint mop2=new MatOfPoint();
            List<Point> allPoint2=new ArrayList<Point>();
            //Coordonnées de possession collective,area3 6 pièces,Circulation requise
            allPoint2.add(new Point(0,0));//p1
            allPoint2.add(new Point(0 +direction.x*0.5,0 +direction.y*0.5));//p2
            allPoint2.add(new Point(0 +direction.x*0.5,RoiMat.height()-direction.y*0.5));//p3
            allPoint2.add(new Point(RoiMat.width()-direction.x*0.5,RoiMat.height()-direction.y*0.5));//p4
            allPoint2.add(new Point(RoiMat.width(),RoiMat.height()));//p5
            allPoint2.add(new Point(0,RoiMat.height()));//p6
            mop2.fromList(allPoint2);
            allMatOfPoint.add(mop2);

            //Remplissage d'achèvement,Blanc pour zone3(255,255,255)
            Imgproc.fillPoly(MaskTemplate, allMatOfPoint,  new Scalar(255,255,255));
            //C'est un tapis area3 aux multiples facettes
            //Core.add(RoiMat, RoiMat, dst3,MaskTemplate);
            Core.bitwise_and(RoiMat, RoiMat, dst3,MaskTemplate);
            //area3 assombrissement des cendres
            dst3.convertTo(dst3, -1, 0.5, -50);
            //Valeur globale de la construction,Demande de rapatriement
            setEmbossArea3(dst3);
            //area3-end

        }else{
            RoiMat=null;
        }
    }




    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;
    }

    public int getSrcX() {
        return srcX;
    }

    public void setSrcX(int srcX) {
        this.srcX = srcX;
    }

    public int getSrcY() {
        return srcY;
    }

    public void setSrcY(int srcY) {
        this.srcY = srcY;
    }

    public int getSecondX() {
        return secondX;
    }

    public void setSecondX(int secondX) {
        this.secondX = secondX;
    }

    public int getSecondY() {
        return secondY;
    }

    public void setSecondY(int secondY) {
        this.secondY = secondY;
    }

    public Mat getMatWantToSave() {
        return matWantToSave;
    }

    public void setMatWantToSave(Mat matWantToSave) {
        this.matWantToSave = matWantToSave;
    }

    public Mat getEmbossArea1() {
        return EmbossArea1;
    }

    public void setEmbossArea1(Mat embossArea1) {
        EmbossArea1 = embossArea1;
    }

    public Mat getEmbossArea2() {
        return EmbossArea2;
    }

    public void setEmbossArea2(Mat embossArea2) {
        EmbossArea2 = embossArea2;
    }

    public Mat getEmbossArea3() {
        return EmbossArea3;
    }

    public void setEmbossArea3(Mat embossArea3) {
        EmbossArea3 = embossArea3;
    }

    public Point getInnerP1() {
        return innerP1;
    }

    public void setInnerP1(double d,double e) {
        Point tmpPoint=new Point(d,e);
        this.innerP1 = tmpPoint;
    }

    public Point getInnerP2() {
        return innerP2;
    }

    public void setInnerP2(double d,double e) {
        Point tmpPoint=new Point(d,e);
        this.innerP2 = tmpPoint;
    }

}
Result
![opencv_emboss_rectangle.jpg](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/276243/1ba4b6c2-50d3-ef17-c712-ea51dccb974e.jpeg)

Recommended Posts

Bureau: OpenCV Emboss For Rectangle
Bureau: OpenCV Emboss
Bureau: Rectangle OpenCV
Bureau: OpenCV EqualizeHist pour YUV
Bureau: OpenCV Flood Fill For Fun
Bureau: seuil OpenCV
Bureau: OpenCV BilateralFilterBlur
Bureau: OpenCV Dilate
Bureau: vérification du rectangle OpenCV à l'intérieur par ClipLine
Bureau: OpenCV Affine
Bureau: OpenCV CLAHE
Bureau: OpenCV Ellipse2Poly
Bureau: OpenCV HDR
Bureau: OpenCV Denoise
Bureau: OpenCV Concat
Bureau: OpenCV Mosaic
Bureau: OpenCV Erode
Bureau: OpenCV Denoise
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: Changement d'éclairage OpenCV
Bureau: OpenCV Add WaterMark
Bureau: OpenCV Fill ConvexPoly
Bureau: OpenCV Grab Cut
Bureau: OpenCV Sharpness Gui
Bureau: Changement de couleur OpenCV
Bureau: Filtre Freichennel OpenCV
Bureau: seuil adaptatif OpenCV
Bureau: OpenCV Draw Circle
Bureau: OpenCV Fill Poly
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: OpenCV Flood Fill
Bureau: espace colorimétrique OpenCV
Bureau: Filtre OpenCV SqrBox
Bureau: redimensionner l'image OpenCV