Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10058)

  • 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
  • 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 : 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