colorthres.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * colorthres.c: Theshold color based on similarity to reference color
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2006 the VideoLAN team
  5.  * $Id: e847b706f8409dd6403ded3ed6e08dc4605affa7 $
  6.  *
  7.  * Authors: Sigmund Augdal <dnumgis@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <errno.h>
  30. #include <math.h>
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. #include <vlc_sout.h>
  34. #include <vlc_vout.h>
  35. #include "vlc_filter.h"
  36. #include "filter_picture.h"
  37. /*****************************************************************************
  38.  * Local prototypes
  39.  *****************************************************************************/
  40. static int  Create    ( vlc_object_t * );
  41. static void Destroy   ( vlc_object_t * );
  42. static picture_t *Filter( filter_t *, picture_t * );
  43. /*****************************************************************************
  44.  * Module descriptor
  45.  *****************************************************************************/
  46. #define COLOR_TEXT N_("Color")
  47. #define COLOR_LONGTEXT N_("Colors similar to this will be kept, others will be "
  48.     "grayscaled. This must be an hexadecimal (like HTML colors). The first two "
  49.     "chars are for red, then green, then blue. #000000 = black, #FF0000 = red,"
  50.     " #00FF00 = green, #FFFF00 = yellow (red + green), #FFFFFF = white" )
  51. static const int pi_color_values[] = {
  52.   0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x0000FF00, 0x000000FF, 0x0000FFFF };
  53. static const char *const ppsz_color_descriptions[] = {
  54.   N_("Red"), N_("Fuchsia"), N_("Yellow"), N_("Lime"), N_("Blue"), N_("Aqua") };
  55. #define CFG_PREFIX "colorthres-"
  56. vlc_module_begin ()
  57.     set_description( N_("Color threshold filter") )
  58.     set_shortname( N_("Color threshold" ))
  59.     set_category( CAT_VIDEO )
  60.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  61.     set_capability( "video filter2", 0 )
  62.     add_integer( CFG_PREFIX "color", 0x00FF0000, NULL, COLOR_TEXT,
  63.                  COLOR_LONGTEXT, false )
  64.         change_integer_list( pi_color_values, ppsz_color_descriptions, NULL )
  65.     add_integer( CFG_PREFIX "saturationthres", 20, NULL,
  66.                  N_("Saturaton threshold"), "", false )
  67.     add_integer( CFG_PREFIX "similaritythres", 15, NULL,
  68.                  N_("Similarity threshold"), "", false )
  69.     set_callbacks( Create, Destroy )
  70. vlc_module_end ()
  71. static const char *const ppsz_filter_options[] = {
  72.     "color", "saturationthes", "similaritythres", NULL
  73. };
  74. /*****************************************************************************
  75.  * filter_sys_t: adjust filter method descriptor
  76.  *****************************************************************************/
  77. struct filter_sys_t
  78. {
  79. };
  80. /*****************************************************************************
  81.  * Create: allocates adjust video thread output method
  82.  *****************************************************************************
  83.  * This function allocates and initializes a adjust vout method.
  84.  *****************************************************************************/
  85. static int Create( vlc_object_t *p_this )
  86. {
  87.     filter_t *p_filter = (filter_t *)p_this;
  88.     switch( p_filter->fmt_in.video.i_chroma )
  89.     {
  90.         CASE_PLANAR_YUV
  91.             break;
  92.         default:
  93.             msg_Err( p_filter, "Unsupported input chroma (%4s)",
  94.                      (char*)&(p_filter->fmt_in.video.i_chroma) );
  95.             return VLC_EGENERIC;
  96.     }
  97.     if( p_filter->fmt_in.video.i_chroma != p_filter->fmt_out.video.i_chroma )
  98.     {
  99.         msg_Err( p_filter, "Input and output chromas don't match" );
  100.         return VLC_EGENERIC;
  101.     }
  102.     config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,
  103.                        p_filter->p_cfg );
  104.     var_Create( p_filter, CFG_PREFIX "color", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
  105.     var_Create( p_filter, CFG_PREFIX "similaritythres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
  106.     var_Create( p_filter, CFG_PREFIX "saturationthres", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
  107.     /* Allocate structure */
  108.     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  109.     if( p_filter->p_sys == NULL )
  110.         return VLC_ENOMEM;
  111.     p_filter->pf_video_filter = Filter;
  112.     return VLC_SUCCESS;
  113. }
  114. /*****************************************************************************
  115.  * Destroy: destroy adjust video thread output method
  116.  *****************************************************************************
  117.  * Terminate an output method created by adjustCreateOutputMethod
  118.  *****************************************************************************/
  119. static void Destroy( vlc_object_t *p_this )
  120. {
  121.     filter_t *p_filter = (filter_t *)p_this;
  122.     free( p_filter->p_sys );
  123. }
  124. /*****************************************************************************
  125.  * Render: displays previously rendered output
  126.  *****************************************************************************
  127.  * This function send the currently rendered image to adjust modified image,
  128.  * waits until it is displayed and switch the two rendering buffers, preparing
  129.  * next frame.
  130.  *****************************************************************************/
  131. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  132. {
  133.     picture_t *p_outpic;
  134.     uint8_t *p_in_y, *p_in_u, *p_in_v, *p_in_end_u;
  135.     uint8_t *p_out_y, *p_out_u, *p_out_v;
  136.     int i_simthres = var_GetInteger( p_filter, "colorthres-similaritythres" );
  137.     int i_satthres = var_GetInteger( p_filter, "colorthres-saturationthres" );
  138.     int i_color = var_GetInteger( p_filter, "colorthres-color" );
  139.     if( !p_pic ) return NULL;
  140.     p_outpic = filter_NewPicture( p_filter );
  141.     if( !p_outpic )
  142.     {
  143.         picture_Release( p_pic );
  144.         return NULL;
  145.     }
  146.     p_in_u = p_pic->p[U_PLANE].p_pixels;
  147.     p_in_v = p_pic->p[V_PLANE].p_pixels;
  148.     p_in_y = p_pic->p[Y_PLANE].p_pixels;
  149.     p_in_end_u = p_in_u + p_pic->p[U_PLANE].i_visible_lines
  150.                         * p_pic->p[U_PLANE].i_pitch - 8;
  151.     p_out_y = p_outpic->p[Y_PLANE].p_pixels;
  152.     p_out_u = p_outpic->p[U_PLANE].p_pixels;
  153.     p_out_v = p_outpic->p[V_PLANE].p_pixels;
  154.     /* Create grayscale version of input */
  155.     vlc_memcpy( p_out_y, p_in_y, p_pic->p[Y_PLANE].i_visible_lines
  156.                * p_pic->p[Y_PLANE].i_pitch - 8 );
  157.     vlc_memset( p_out_u, 0x80, p_pic->p[U_PLANE].i_visible_lines
  158.                * p_pic->p[U_PLANE].i_pitch - 8 );
  159.     vlc_memset( p_out_v, 0x80, p_pic->p[U_PLANE].i_visible_lines
  160.                * p_pic->p[U_PLANE].i_pitch - 8 );
  161.     /*
  162.      * Do the U and V planes
  163.      */
  164.     int i_red = ( i_color & 0xFF0000 ) >> 16;
  165.     int i_green = ( i_color & 0xFF00 ) >> 8;
  166.     int i_blue = i_color & 0xFF;
  167.     int i_u = (int8_t)(( -38 * i_red - 74 * i_green +
  168.                      112 * i_blue + 128) >> 8) + 128;
  169.     int i_v = (int8_t)(( 112 * i_red  -  94 * i_green -
  170.                       18 * i_blue + 128) >> 8) + 128;
  171.     int refu = i_u - 0x80;         /*bright red*/
  172.     int refv = i_v - 0x80;
  173.     int reflength = sqrt(refu*refu+refv*refv);
  174.     while( p_in_u < p_in_end_u ) {
  175.         /* Length of color vector */
  176.         int inu = (*p_in_u) - 0x80;
  177.         int inv = (*p_in_v) - 0x80;
  178.         int length = sqrt(inu*inu+inv*inv);
  179.         int diffu = refu * length - inu *reflength;
  180.         int diffv = refv * length - inv *reflength;
  181.         long long int difflen2=diffu*diffu;
  182.         difflen2 +=diffv*diffv;
  183.         long long int thres = length*reflength;
  184.         thres *= thres;
  185.         if( length > i_satthres && (difflen2*i_simthres< thres ) ) {
  186.             *p_out_u = *p_in_u;
  187.             *p_out_v = *p_in_v;
  188. //        fprintf(stderr,"keeping color %d %dn", length, difflen2);
  189.         }
  190.         p_in_u++;
  191.         p_in_v++;
  192.         p_out_u++;
  193.         p_out_v++;
  194.     }
  195.     return CopyInfoAndRelease( p_outpic, p_pic );
  196. }