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

C# Discussion :

haaracascade en vs 2013


Sujet :

C#

  1. #1
    Membre habitué Avatar de Hamza
    Homme Profil pro
    Data Analyst
    Inscrit en
    Avril 2005
    Messages
    295
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : Algérie

    Informations professionnelles :
    Activité : Data Analyst
    Secteur : Distribution

    Informations forums :
    Inscription : Avril 2005
    Messages : 295
    Points : 164
    Points
    164
    Par défaut haaracascade en vs 2013
    Bonjour,

    je veux développez une application qui me permet de détecte un visage puis l'identifier donc j'utilise emgu en C#, quand je tape le code suivant puis je compile un msg d'erreur s'affiche.

    code :
    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
     
    /// /////////Variable//////////////////////////////////////////
            Capture CAM1 = null;
            bool capvid = false;
            Image<Bgr, Byte> ImgCam;
            HaarCascade haar;
    private void Form1_Load(object sender, EventArgs e)
            {
     
                try
                {
                    CAM1 = new Capture(0);
                }catch (NullReferenceException except){
                    MessageBox.Show("Le périphérique d'acquisition est introuvable", "Pointeuse", MessageBoxButtons.OK);
                    start.Text = "Resume";
                    return;
                }
                Application.Idle += CaptureVideo;
                capvid = true;
                start.Text = "Stop !";
            }
            private void Form1_Formclosed(object sender, FormClosedEventArgs e)
            {
                if (CAM1 != null)
                {
                    CAM1.Dispose();
                }
            }
            void CaptureVideo(object sender, EventArgs arg)
            {
                haar = new HaarCascade("haarcascade_frontalface_alt_tree.xml");
                ImgCam = CAM1.QueryFrame();
                if (ImgCam !=null)
                {
                    Image<Gray, byte> imgray = ImgCam.Convert<Gray, byte>();
                    var faces =
                        imgray.DetectHaarCascade(haar, 1.4, 4, HAAR_DETECTION_TYPE.DO_CANNY_PRUNING
                        , new Size(25, 25))[0];
                    foreach (var face in faces)
                    {
                        ImgCam.Draw(face.rect, new Bgr(Color.Green), 3);
                    }
                }
                scr.Image = ImgCam;
     
            }
    le message d'erreur

    Nom : warnig 1.jpg
Affichages : 452
Taille : 316,5 Ko

    le fichier emgu.cv.dll est bien dans le répertoire debug/bin

    la fenetre de sortie debogueur j'ai ceci
    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
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities.Sync\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.Debugger.Runtime\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Debugger.Runtime.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_fr_b77a5c561934e089\mscorlib.resources.dll'. Le module a été généré sans symboles.
    Le thread 0x1a00 s'est arrêté avec le code 259 (0x103).
    Le thread 0x292c s'est arrêté avec le code 259 (0x103).
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe'. Les symboles ont été chargés.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.CV.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.Util.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.CV.UI.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms.resources\v4.0_4.0.0.0_fr_b77a5c561934e089\System.Windows.Forms.resources.dll'. Le module a été généré sans symboles.
    Une exception de première chance de type 'System.IO.FileNotFoundException' s'est produite dans Emgu.CV.dll
    Une exception non gérée du type 'System.IO.FileNotFoundException' s'est produite dans Emgu.CV.dll
    Informations supplémentaires*: File Not Found
     
    Le programme '[8428] WindowsFormsApplication2.vshost.exe: Trace du programme' s'est arrêté avec le code 0 (0x0).
    Le programme '[8428] WindowsFormsApplication2.vshost.exe' s'est arrêté avec le code 0 (0x0).
    et enfin j'ai la description suivante

    Nom : warnig.jpg
Affichages : 390
Taille : 379,7 Ko

    voila.

  2. #2
    Expert confirmé

    Homme Profil pro
    Chef de projet NTIC
    Inscrit en
    Septembre 2006
    Messages
    3 580
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Chef de projet NTIC
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Septembre 2006
    Messages : 3 580
    Points : 5 195
    Points
    5 195
    Par défaut
    FileNotFound ==> Fichier non trouvé

    Emgu doit simplement ne pas trouver ton fichier xml que tu montres dans tes captures d'écrans.
    The Monz, Toulouse
    Expertise dans la logistique et le développement pour
    plateforme .Net (Windows, Windows CE, Android)

  3. #3
    Membre habitué Avatar de Hamza
    Homme Profil pro
    Data Analyst
    Inscrit en
    Avril 2005
    Messages
    295
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : Algérie

    Informations professionnelles :
    Activité : Data Analyst
    Secteur : Distribution

    Informations forums :
    Inscription : Avril 2005
    Messages : 295
    Points : 164
    Points
    164
    Par défaut
    Bonjour,

    je n'avais pas remarquer un caractere manquant dans le nom du fichier, maintenant que c'est corrigé, j'ai le message suivant :

    Nom : warnig 2.jpg
Affichages : 496
Taille : 321,5 Ko

    j'ai copier le fichier dans le répertoire débug mais j'ai toujours le même message d'erreur

  4. #4
    Membre expert
    Avatar de GuruuMeditation
    Homme Profil pro
    .Net Architect
    Inscrit en
    Octobre 2010
    Messages
    1 705
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 49
    Localisation : Belgique

    Informations professionnelles :
    Activité : .Net Architect
    Secteur : Conseil

    Informations forums :
    Inscription : Octobre 2010
    Messages : 1 705
    Points : 3 568
    Points
    3 568
    Par défaut
    Regarde ici si ça peut t'aider : http://stackoverflow.com/questions/8...-sharp-project
    Microsoft MVP : Windows Platform

    MCPD - Windows Phone Developer
    MCPD - Windows Developer 4

    http://www.guruumeditation.net

    “If debugging is the process of removing bugs, then programming must be the process of putting them in.”
    (Edsger W. Dijkstra)

  5. #5
    Membre habitué Avatar de Hamza
    Homme Profil pro
    Data Analyst
    Inscrit en
    Avril 2005
    Messages
    295
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : Algérie

    Informations professionnelles :
    Activité : Data Analyst
    Secteur : Distribution

    Informations forums :
    Inscription : Avril 2005
    Messages : 295
    Points : 164
    Points
    164
    Par défaut
    c'est déjà fait mais j'ai un nouveau message et je n'arrive pas a comprendre.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    Une exception non gérée du type 'Emgu.CV.Util.CvException' s'est produite dans Emgu.CV.dll
     
    Informations supplémentaires*: OpenCV: The node does not represent a user object (unknown type?)
    fenêtre de sortie débogueur

    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
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.HostingProcess.Utilities.Sync\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.HostingProcess.Utilities.Sync.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\assembly\GAC_MSIL\Microsoft.VisualStudio.Debugger.Runtime\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Debugger.Runtime.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\mscorlib.resources\v4.0_4.0.0.0_fr_b77a5c561934e089\mscorlib.resources.dll'. Le module a été généré sans symboles.
    Le thread 0x14b8 s'est arrêté avec le code 259 (0x103).
    Le thread 0x1ffc s'est arrêté avec le code 259 (0x103).
    Le thread 0xe0c s'est arrêté avec le code 259 (0x103).
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe'. Les symboles ont été chargés.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll'. Impossible de trouver ou d'ouvrir le fichier PDB.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.CV.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.Util.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'D:\Projets\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug\Emgu.CV.UI.dll'. Le module a été généré sans symboles.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'. Chargement des symboles ignoré. Le module est optimisé et l'option du débogueur 'Uniquement mon code' est activée.
    'WindowsFormsApplication2.vshost.exe' (CLR v4.0.30319: WindowsFormsApplication2.vshost.exe)*: Chargé 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms.resources\v4.0_4.0.0.0_fr_b77a5c561934e089\System.Windows.Forms.resources.dll'. Le module a été généré sans symboles.
    Une exception de première chance de type 'Emgu.CV.Util.CvException' s'est produite dans Emgu.CV.dll
    Une exception non gérée du type 'Emgu.CV.Util.CvException' s'est produite dans Emgu.CV.dll
    Informations supplémentaires*: OpenCV: The node does not represent a user object (unknown type?)
     
    Le programme '[6416] WindowsFormsApplication2.vshost.exe' s'est arrêté avec le code 0 (0x0).
    Le programme '[6416] WindowsFormsApplication2.vshost.exe: Trace du programme' s'est arrêté avec le code 0 (0x0).

  6. #6
    Membre habitué Avatar de Hamza
    Homme Profil pro
    Data Analyst
    Inscrit en
    Avril 2005
    Messages
    295
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : Algérie

    Informations professionnelles :
    Activité : Data Analyst
    Secteur : Distribution

    Informations forums :
    Inscription : Avril 2005
    Messages : 295
    Points : 164
    Points
    164
    Par défaut
    Bonjour,

    bon j'ai resolu le probleme, j'utilisais le fichier haarcascade_frontalface_alt_tree.xml que j'ai telecharger ici, puis j'ai trouver ceci ou il demande d'utilisée les ancien fichier, par la suite j'ai remplacer par le fichier haarcascade_frontalface_default.xml est la !! sa marche bien, sa détecte le visage !.

    Merci a vous tous

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Dans OEM erreurs VBO-1508 et VTO-2013 après reinstallation
    Par mandala37 dans le forum Administration
    Réponses: 0
    Dernier message: 22/07/2010, 17h24
  2. Le format Blu-Ray s'imposera-t-il ? "Pas avant 2013" dit une étude de iSuppli
    Par Pierre Louis Chevalier dans le forum Actualités
    Réponses: 118
    Dernier message: 10/01/2010, 21h34
  3. Réponses: 21
    Dernier message: 09/07/2009, 15h23
  4. Réponses: 0
    Dernier message: 08/07/2009, 11h38
  5. Perte de connexion à mysql en local(Erreur 2013)
    Par librairie_licorne dans le forum Outils
    Réponses: 2
    Dernier message: 24/04/2006, 09h35

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