
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parCette 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, parThis 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 Zelincevicavcodec : 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> -
How to import the CascadeClassifier module from Opencv ?
22 juillet 2015, par kylel95This 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 youimport 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 Pesutavcodec : 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