Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (65)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • 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 (...)

Sur d’autres sites (10020)

  • dnn/openvino : support model input resize

    18 janvier 2021, par Ting Fu
    dnn/openvino : support model input resize
    

    OpenVINO APIs require specify input size to run the model, while some
    OpenVINO model does accept different input size. To enable this feature
    adding input_resizable option here for easier use.
    Setting bool variable input_resizable to specify if the input can be resizable or not.
    input_resizable = 1 means support input resize, aka accept different input size.
    input_resizable = 0 (default) means do not support input resize.
    Please make sure the inference model does accept different input size
    before use this option, otherwise the inference engine may report error(s).
    eg : ./ffmpeg -i video_name.mp4 -vf dnn_processing=dnn_backend=openvino :\
    model=model_name.xml:input=input_name:output=output_name :\
    options=device=CPU\&input_resizable=1 -y output_video_name.mp4

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
  • dnn/openvino : refine code for better model initialization

    18 janvier 2021, par Ting Fu
    dnn/openvino : refine code for better model initialization
    

    Move openvino model/inference request creation and initialization steps
    from ff_dnn_load_model_ov to new function init_model_ov, for later input
    resize support.

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
  • dnn : add backend options when load the model

    7 août 2020, par Guo, Yejun
    dnn : add backend options when load the model
    

    different backend might need different options for a better performance,
    so, add the parameter into dnn interface, as a preparation.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_native.c
    • [DH] libavfilter/dnn/dnn_backend_native.h
    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn/dnn_backend_openvino.h
    • [DH] libavfilter/dnn/dnn_backend_tf.c
    • [DH] libavfilter/dnn/dnn_backend_tf.h
    • [DH] libavfilter/dnn_interface.h
    • [DH] libavfilter/vf_derain.c
    • [DH] libavfilter/vf_dnn_processing.c
    • [DH] libavfilter/vf_sr.c