
Recherche avancée
Autres articles (38)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (8897)
-
mpeg4videodec : move sprite_{shift,traj} from MpegEncContext to Mpeg4DecContext
26 novembre 2013, par Anton Khirnov -
Revision da0ce28fe3 : fixed integer overflow warnings Jenkins warns on left shift of negative numbers
26 septembre 2013, par Yaowu XuChanged Paths :
Modify /vp8/common/x86/vp8_asm_stubs.c
Modify /vp8/encoder/dct.c
fixed integer overflow warningsJenkins warns on left shift of negative numbers and non-aligned read
of int. This commit fixed the two issues.Change-Id : I389a7fb6a572c643902e40a4c10fefef94500d2c
-
YUV420p to other formats, color shift problems
1er juin 2013, par SamSo I'm writing a color detection application using an AR Drone. The drone sends my python/opencv socket server an image from its camera in YUV420p format.
What I do to access the image as an opencv IPLImage is the following (and yes this is inefficient but I didn't / don't want to have to write new conversion tools myself) :
- Save the yuv image to a file (some_image.yuv)
- subprocess.call(insert ffmpeg call here)
- Read the resultant file (bmp, png, it doesn't matter) back in using cv.LoadImage
My problem right now is a very noticable color shift. I'm waving a red felt sheet in these pictures. The first one shows a heavy yellow tint. The second isn't as bad but is very rare — mostly when I have the red sheet it's heavily tinted.
- Tinted image : http://i.stack.imgur.com/BQikM.png
- Less-tinted image : http://i.stack.imgur.com/ezHyy.png
I'm wondering both of these things :
- if there's either a better way to do this
- If the color tinting issue can be resolved
My ffmpeg conversion line looks something like
ffmpeg -s 640x480 -vcodec rawvideo -f rawvideo -pix_fmt yuv420p -i image.yuv -vcodec bmp -f image2 output.bmp
I've also tried :
ffmpeg -f rawvideo -s 640x480 -pix_fmt yuv420p -vf colormatrix=bt709:bt601 -i image.yuv -f image -vcodec png output.png
The color shift is always there, unfortunately !
The color shift is my big problem right now as I later convert the image to HSV and use thresholding to choose a color range that works for me.