[JAVA] Bureau: OpenCV Changer la taille Utiliser GassianPryamid

Goal
Test OpenCV GassianPryamid scale a image.

OpenCV_ChangeSizeUseGassianPryamid.java


import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.Size;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;

public class OpenCV_ChangeSizeUseGassianPryamid {

    static{System.loadLibrary(Core.NATIVE_LIBRARY_NAME);}

    private JFrame frmjavaSwing;
    private Mat src = new Mat();

    /**
     *  Launch the application.
     */
    public static void main(String[] argv){
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try{
                    OpenCV_ChangeSizeUseGassianPryamid window = new OpenCV_ChangeSizeUseGassianPryamid();
                    window.frmjavaSwing.setVisible(true);
                }catch (Exception e){
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     *  Create the application.
     */
    public OpenCV_ChangeSizeUseGassianPryamid(){
        init();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void init(){
        final Mat src = Imgcodecs.imread("D:\\projects\\Java\\OpenCV_Samples\\resource\\imgs\\lena.jpg ");
        setSource(src);
        BufferedImage image=matToBufferedImage(src);

        frmjavaSwing = new JFrame();
        frmjavaSwing.setTitle("opencv ���j�Y�p�m��2");
        frmjavaSwing.setBounds(100, 100, 520, 550);
        frmjavaSwing.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frmjavaSwing.getContentPane().setLayout(null);

        final JLabel lblNewLabel = new JLabel("");
        lblNewLabel.setBounds(10, 68, 438, 438);
        lblNewLabel.setIcon(new ImageIcon(image));
        frmjavaSwing.getContentPane().add(lblNewLabel);

        JButton btnNewButton = new JButton("���j2��");
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                BufferedImage newImage=matToBufferedImage( pyrUp(getSource()));
                lblNewLabel.setIcon(new ImageIcon(newImage));
            }
        });
        btnNewButton.setBounds(63, 21, 87, 23);
        frmjavaSwing.getContentPane().add(btnNewButton);

        JButton button = new JButton("�Y�p2��");
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                BufferedImage newImage=matToBufferedImage( pyrDown(getSource()));
                lblNewLabel.setIcon(new ImageIcon(newImage));
            }
        });
        button.setBounds(221, 21, 87, 23);
        frmjavaSwing.getContentPane().add(button);
    }

    public Mat pyrUp(Mat source){

        Mat destination=new Mat(source.rows(),source.cols(),source.type());
        Imgproc.pyrUp(source, destination, new Size(source.rows()*2,source.cols()*2));
        setSource(destination);
        return destination;

    }

    public Mat pyrDown(Mat source){

        Mat destination=new Mat(source.rows(),source.cols(),source.type());
        Imgproc.pyrDown(source, destination, new Size(source.rows()*0.5,source.cols()*0.5));
        setSource(destination);
        return destination;

    }

    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 Mat getSource() {
        return src;
    }

    public void setSource(Mat source) {
        this.src = source;
    }
}
Result
![opencv_scale_up_image.JPG](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/276243/155c7653-8574-9c8a-64ee-735e23f8f2f1.jpeg) ![opencv_scale_down_image.JPG](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/276243/bd39c0d7-b683-103c-235b-6d007fef9258.jpeg)

Recommended Posts

Bureau: OpenCV Changer la taille Utiliser GassianPryamid
Bureau: OpenCV Change Size Use Resize
Bureau: OpenCV Change Size Use Get Rotation Matrix2D
Bureau: Changement d'éclairage OpenCV
Bureau: Changement de couleur OpenCV
Bureau: OpenCV Rotate Use Remap
Bureau: OpenCV Gui change chaque pixel
Bureau: seuil OpenCV
Bureau: OpenCV BilateralFilterBlur
Bureau: OpenCV Dilate
Bureau: OpenCV Affine
Bureau: OpenCV Emboss
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: Rectangle OpenCV
Bureau: OpenCV Watershed
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: OpenCV Gui Change Alpha et Gamma Value
Bureau: OpenCV utilise EqualizeHist avec ajout de poids pour RVB
Bureau: OpenCV Add WaterMark
Bureau: OpenCV Fill ConvexPoly
Bureau: OpenCV Grab Cut
Bureau: OpenCV Sharpness Gui
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: Piano virtuel OpenCV
Bureau: image de fusion OpenCV
Bureau: Filtre OpenCV Scharr
Bureau: aperçu de la webcam Opencv
Utiliser OpenCV avec Java
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