Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (62)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6463)

  • avcodec : Implementation of AAC_fixed_decoder (PS-module)

    20 juillet 2015, par Djordje Pesut
    avcodec : Implementation of AAC_fixed_decoder (PS-module)
    

    Add fixed point implementation.

    Signed-off-by : Nedeljko Babic <nedeljko.babic@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac_defines.h
    • [DH] libavcodec/aacps.c
    • [DH] libavcodec/aacps.h
    • [DH] libavcodec/aacps_fixed.c
    • [DH] libavcodec/aacps_fixed_tablegen.h
    • [DH] libavcodec/aacps_float.c
    • [DH] libavcodec/aacpsdata.c
    • [DH] libavcodec/aacpsdsp.c
    • [DH] libavcodec/aacpsdsp.h
    • [DH] libavcodec/aacpsdsp_fixed.c
    • [DH] libavcodec/aacpsdsp_float.c
    • [DH] libavcodec/aacpsdsp_template.c
    • [DH] libavcodec/aacsbr_template.c
  • How to import the CascadeClassifier module from Opencv ?

    22 juillet 2015, par kylel95

    This porgram is to detect faces in the specified image. I have opencv and ffmpeg properly installed. Also, when I check the file path to see if CascadeClassifer was there, indeed it was. I somehow, still received the error :
    AttributeError : ’module’ object has no attribute ’CascadeClassifer’. I was thinking maybe it should not be called using ’cv2.CascadeClassifier’ and maybe something more lengthy. Thank you

    import cv2
    import numpy as np

    face_cascade = cv2.CascadeClassifer('haarcascade_frontalface_default.xml')
    eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml')

    image = cv2.imread('image.png')
    gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)

    faces = face_cascade.detectMultiScale(gray, 1.3, 5)
    for (x,y,w,h) in faces:
      cv2.rectangle(image,(x,y),(x+w,y+h), (225,0,0),2)
      roi_gray = gray[y:y+h, x:x+w]
      roi_color = image[y:y+h, x:x+w]
      eyes = eye_cascade.detectMultiScale(roi_gray)
      for (ex,ey,ew,eh) in eyes:
          cv2.rectangle(roi_color,(ex,ey),(ex+ew,ey+eh),(0,255,0),2)

    cv2.imshow('Imgae', image)
    cv2.waitKey(0)
    cv2.destroyAllWindows()
  • avcodec : Table creation for AAC_fixed_decoder (PS-module)

    20 juillet 2015, par Jovan Zelincevic
    avcodec : Table creation for AAC_fixed_decoder (PS-module)
    

    Add fixed point implementation of functions for generating tables.

    Signed-off-by : Nedeljko Babic <nedeljko.babic@imgtec.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aacps_fixed_tablegen.c
    • [DH] libavcodec/aacps_fixed_tablegen.h
    • [DH] libavcodec/aacps_tablegen.c
    • [DH] libavcodec/aacps_tablegen_template.c