Package org.opencv.core

Examples of org.opencv.core.MatOfByte.toArray()


        this.setSize(m.width()+30, m.height()+50);
       
        MatOfByte mob = new MatOfByte();
        Highgui.imencode(".jpeg", m, mob);
       
        byte [] imgByteArray = mob.toArray();
        ImageIcon img = new ImageIcon(imgByteArray);
       
        this.imgL.setIcon(img);
      
        //if( !this.isVisible() )
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.