IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Multimédia Java Discussion :

Problème Capture d'image


Sujet :

Multimédia Java

  1. #1
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2011
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Charente Maritime (Poitou Charente)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2011
    Messages : 26
    Points : 26
    Points
    26
    Par défaut Problème Capture d'image
    Bonjour,

    Je me permets de poster une demande ici , car je suis en train de travailler sur un projet qui me demande de faire des captures d'image. J'ai visité un bon nombre de site et parcouru des forums dont celui-ci, mais je ne trouves pas de solution à ma problématique (cela est dû je pense à mon inexpérience en Java (2 mois de pratique en java ...).

    Voici la totalité du script que j'ai suivi grâce à un tutoriel vidéo (sur la vidéo cela fonctionne bien, mais moi non...).


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
     
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package expadcamera;
     
    import java.io.IOException;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.NoPlayerException;
    import javax.media.CannotRealizeException;
    import javax.swing.ImageIcon;
    import javax.swing.JToggleButton;
    import JImage.JIResizeImage;
    import java.awt.FileDialog;
    import java.awt.Image;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import javax.imageio.ImageIO;
    import javax.media.Buffer;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.Player;
    import javax.media.control.FrameGrabbingControl;
    import javax.media.format.VideoFormat;
    import javax.media.util.BufferToImage;
    /**
     *
     * @author ordi
     */
    public class ExpadCameraForm extends javax.swing.JFrame {
     
        Player player;
        BufferedImage bi;
        String nfile;
        /**
         * Creates new form ExpadCameraForm
         */
        public ExpadCameraForm() {
            initComponents();
     
            try 
            {
                initCamera();
            } catch (IOException ex) {
                Logger.getLogger(ExpadCameraForm.class.getName()).log(Level.SEVERE, null, ex);
            } catch (NoPlayerException ex) {
                Logger.getLogger(ExpadCameraForm.class.getName()).log(Level.SEVERE, null, ex);
            } catch (CannotRealizeException ex) {
                Logger.getLogger(ExpadCameraForm.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
     
        private void initCamera() throws IOException, NoPlayerException, CannotRealizeException
        {
           MediaLocator ml = new MediaLocator("vfw://0");
           player = Manager.createRealizedPlayer(ml);
           this.tbCamera.add(player.getVisualComponent());
           player.start();
        }
     
        private void setImageButton(JToggleButton tbutton, Image image)
        {
            tbutton.setIcon(new ImageIcon(image));
        }
     
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jLabel1 = new javax.swing.JLabel();
            tbCamera = new javax.swing.JToggleButton();
            tbCapture = new javax.swing.JToggleButton();
            bCapture = new javax.swing.JButton();
            bSave = new javax.swing.JButton();
            jTextField1 = new javax.swing.JTextField();
            jLabel2 = new javax.swing.JLabel();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jLabel1.setText("Expad Capture Application");
     
            tbCamera.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    tbCameraActionPerformed(evt);
                }
            });
     
            bCapture.setText("Capture");
            bCapture.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    bCaptureActionPerformed(evt);
                }
            });
     
            bSave.setText("Save");
            bSave.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    bSaveActionPerformed(evt);
                }
            });
     
            jTextField1.setText("jTextField1");
     
            jLabel2.setText("N° de dossier");
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(tbCamera, javax.swing.GroupLayout.PREFERRED_SIZE, 358, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(tbCapture, javax.swing.GroupLayout.PREFERRED_SIZE, 358, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(bCapture)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(bSave))
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jLabel1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 427, Short.MAX_VALUE)
                            .addComponent(jLabel2)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                            .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 94, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addContainerGap())
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(22, 22, 22)
                            .addComponent(jLabel1)
                            .addGap(31, 31, 31))
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                            .addContainerGap()
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                                .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                                .addComponent(jLabel2))
                            .addGap(18, 18, 18)))
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(tbCapture, javax.swing.GroupLayout.DEFAULT_SIZE, 387, Short.MAX_VALUE)
                        .addComponent(tbCamera, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
                    .addGap(18, 18, 18)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(bCapture)
                        .addComponent(bSave))
                    .addContainerGap())
            );
     
            pack();
        }// </editor-fold>                        
     
        private void tbCameraActionPerformed(java.awt.event.ActionEvent evt) {                                         
            // TODO add your handling code here:
        }                                        
     
        private void bCaptureActionPerformed(java.awt.event.ActionEvent evt) {                                         
     
            FrameGrabbingControl fgc = (FrameGrabbingControl) player.getControl("javax.media.control.FrameGrabbingControl");
            Buffer buffer = fgc.grabFrame();
     
            BufferToImage bti = new BufferToImage((VideoFormat) buffer.getFormat());
            Image image = bti.createImage(buffer);
     
            JIResizeImage resize = new JIResizeImage();
            bi = (BufferedImage) image;
     
            Image  imageresize = resize.rescale(bi,150,150);
     
            this.setImageButton(this.tbCapture, image);
            player.close();
            player.deallocate();
        }                                        
     
        private void bSaveActionPerformed(java.awt.event.ActionEvent evt) {                                      
     
            FileDialog fd = new FileDialog(ExpadCameraForm.this, "Save Image", FileDialog.SAVE);
            fd.show();
     
            if(fd.getFile() != null)
            {
                nfile = fd.getDirectory() + fd.getFile() + ".jpeg";
                try
                {
                    File make = new File(nfile);
                    try
                    {
                        ImageIO.write(bi, "jpeg", make);
                    }
                    catch(IOException ex)
                    {
                        Logger.getLogger(ExpadCameraForm.class.getName()).log(Level.SEVERE, nfile);
                    }
                }catch(Exception ex)
                {
                    Logger.getLogger(ExpadCameraForm.class.getName()).log(Level.SEVERE, nfile);
                }
            }
     
        }                                     
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /*ExpadCameraForm form = new ExpadCameraForm();
            form.setVisible(true);*/
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(ExpadCameraForm.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(ExpadCameraForm.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(ExpadCameraForm.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(ExpadCameraForm.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new ExpadCameraForm().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JButton bCapture;
        private javax.swing.JButton bSave;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JTextField jTextField1;
        private javax.swing.JToggleButton tbCamera;
        private javax.swing.JToggleButton tbCapture;
        // End of variables declaration                   
    }
    Et voici les erreurs que j'ai :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
     
    run:
    déc. 02, 2014 2:31:36 PM javax.media.Manager createPlayer
    AVERTISSEMENT: java.net.MalformedURLException: unknown protocol: vfw
    java.net.MalformedURLException: unknown protocol: vfw
    	at java.net.URL.<init>(URL.java:593)
    	at java.net.URL.<init>(URL.java:483)
    	at java.net.URL.<init>(URL.java:432)
    	at javax.media.MediaLocator.getURL(MediaLocator.java:30)
    	at javax.media.Manager.createPlayer(Manager.java:146)
    	at javax.media.Manager.createRealizedPlayer(Manager.java:266)
    	at expadcamera.ExpadCameraForm.initCamera(ExpadCameraForm.java:58)
    	at expadcamera.ExpadCameraForm.<init>(ExpadCameraForm.java:45)
    	at expadcamera.ExpadCameraForm$4.run(ExpadCameraForm.java:244)
    	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
    	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:744)
    	at java.awt.EventQueue.access$400(EventQueue.java:97)
    	at java.awt.EventQueue$3.run(EventQueue.java:697)
    	at java.awt.EventQueue$3.run(EventQueue.java:691)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    	at java.awt.EventQueue.dispatchEvent(EventQueue.java:714)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    	at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
     
    déc. 02, 2014 2:31:36 PM expadcamera.ExpadCameraForm <init>
    GRAVE: null
    javax.media.NoPlayerException
    	at javax.media.Manager.createPlayer(Manager.java:150)
    	at javax.media.Manager.createRealizedPlayer(Manager.java:266)
    	at expadcamera.ExpadCameraForm.initCamera(ExpadCameraForm.java:58)
    	at expadcamera.ExpadCameraForm.<init>(ExpadCameraForm.java:45)
    	at expadcamera.ExpadCameraForm$4.run(ExpadCameraForm.java:244)
    	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
    	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:744)
    	at java.awt.EventQueue.access$400(EventQueue.java:97)
    	at java.awt.EventQueue$3.run(EventQueue.java:697)
    	at java.awt.EventQueue$3.run(EventQueue.java:691)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    	at java.awt.EventQueue.dispatchEvent(EventQueue.java:714)
    	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    	at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
    J'ai essayé diverses solutions, mais rien n'y fait :-(

    Le but est de faire un .jar que des professionnels automobiles utiliseront pour faire des captures de véhicules via leurs tablettes.

    Cordialement.

  2. #2
    Modérateur

    Homme Profil pro
    Développeur java, access, sql server
    Inscrit en
    Octobre 2005
    Messages
    2 710
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur java, access, sql server
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2005
    Messages : 2 710
    Points : 4 794
    Points
    4 794
    Par défaut
    Un jar sur une tablette ????
    Ton exemple utilise Swing donc on est en java "traditionnel" (PC)
    Si c'est de l'android, je ne pense pas que cela fonctionne.

    Par contre, si tu veux faire des captures écran sur un PC suivre ce lien : http://java.developpez.com/faq/gui/?..._capture_ecran

    Tu peux poster le lien vers la vidéo que tu as vu ?
    Labor improbus omnia vincit un travail acharné vient à bout de tout - Ambroise Paré (1510-1590)

    Consulter sans modération la FAQ ainsi que les bons ouvrages : http://jmdoudoux.developpez.com/cours/developpons/java/

  3. #3
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2011
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Charente Maritime (Poitou Charente)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2011
    Messages : 26
    Points : 26
    Points
    26
    Par défaut
    Bonjour, merci d'avoir répondu aussi vite, voici le tuto que j'ai suivi :



    il est en 2 parties.

    Les tablettes sont connectées sur un server, sur lequel tourne une application métier, je dois donc faire fonctionner ce petit applicatif sous windows.

    Bien Cordialement.

  4. #4
    Modérateur

    Homme Profil pro
    Développeur java, access, sql server
    Inscrit en
    Octobre 2005
    Messages
    2 710
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur java, access, sql server
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2005
    Messages : 2 710
    Points : 4 794
    Points
    4 794
    Par défaut
    Dans la vidéo, elle utilise un "device" : microsoft WDM image capture - abrégé en "vfw"
    Si ce n'est pas installé sur ton PC alors je pense qu'il est normal d'avoir cette erreur :

    java.net.MalformedURLException: unknown protocol: vfw
    Labor improbus omnia vincit un travail acharné vient à bout de tout - Ambroise Paré (1510-1590)

    Consulter sans modération la FAQ ainsi que les bons ouvrages : http://jmdoudoux.developpez.com/cours/developpons/java/

  5. #5
    Nouveau membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2011
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Charente Maritime (Poitou Charente)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2011
    Messages : 26
    Points : 26
    Points
    26
    Par défaut
    Oui, j'ai également utilisé JMStudio et voila ce que j'obtiens, c'est la même chose

    Nom : Capture.PNG
Affichages : 328
Taille : 30,4 Ko

    ma webcam fonctionne correctement, c'est pour cela que je ne comprends pas.

Discussions similaires

  1. Problème de capture d'image à partir de la webcam
    Par MasterMbg dans le forum Multimédia
    Réponses: 0
    Dernier message: 05/09/2013, 12h16
  2. Problème de capture d'image et de seuil
    Par HDF15865 dans le forum OpenCV
    Réponses: 0
    Dernier message: 12/12/2009, 19h00
  3. Problème pour capturer une image d'un composant Flex
    Par chris21284 dans le forum Flex
    Réponses: 3
    Dernier message: 03/06/2009, 14h34
  4. Problème de capture d'image sur une vidéo
    Par tib_al dans le forum LabVIEW
    Réponses: 2
    Dernier message: 29/07/2008, 10h19
  5. Capture d image par webcam
    Par moimoimoi3x dans le forum C++Builder
    Réponses: 7
    Dernier message: 03/07/2003, 08h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo