Package org.opencv.core

Examples of org.opencv.core.MatOfByte


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

Related Classes of org.opencv.core.MatOfByte

Copyright © 2018 www.massapicom. 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.