亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? xil_rgb2ycrcb_action.m

?? RGB to Y CB CR conversion source code in VHDL
?? M
字號(hào):
function Xil_RGB2YCrCb_action(blockHandle, controlName,actionType, keysValuesStruct,actionData)%sprintf('rgb2ycrcb_action: block handle:%d, activated control:"%s"',%blockHandle, controlName)  value_i = str2num(keysValuesStruct.('in_bits'));  value_o = str2num(keysValuesStruct.('out_bits'));  value_m = str2num(keysValuesStruct.('m_bits'));  value_c = str2num(keysValuesStruct.('c_bits'));  scale = pow2(value_o);    if ((strcmp(controlName,'standard')) || (strcmp(controlName,'out_bits')) || (strcmp(controlName,'range_sel')))    if (~(strcmp(keysValuesStruct.('standard'),'custom')))                    % Leaving 'custom'      if ((strcmp(keysValuesStruct.('prev_standard'),'custom')))                     xlUpdateGuiControl(gcbh, 'custom_coefa',  keysValuesStruct.('coefA'));         xlUpdateGuiControl(gcbh, 'custom_coefb',  keysValuesStruct.('coefB'));             xlUpdateGuiControl(gcbh, 'custom_coefc',  keysValuesStruct.('coefC'));             xlUpdateGuiControl(gcbh, 'custom_coefd',  keysValuesStruct.('coefD'));        xlUpdateGuiControl(gcbh, 'custom_ofs_y',  keysValuesStruct.('yoffset'));        xlUpdateGuiControl(gcbh, 'custom_ofs_c',  keysValuesStruct.('coffset'));        xlUpdateGuiControl(gcbh, 'custom_has_max',keysValuesStruct.('has_clip'));        xlUpdateGuiControl(gcbh, 'custom_has_min',keysValuesStruct.('has_clamp'));        xlUpdateGuiControl(gcbh, 'custom_max_y',  keysValuesStruct.('ymax'));        xlUpdateGuiControl(gcbh, 'custom_max_c',  keysValuesStruct.('cmax'));        xlUpdateGuiControl(gcbh, 'custom_min_y',  keysValuesStruct.('ymin'));        xlUpdateGuiControl(gcbh, 'custom_min_c',  keysValuesStruct.('cmin'));      end    else      if (~(strcmp(keysValuesStruct.('prev_standard'),'custom'))) % just switched into custom mode        xlUpdateGuiControl(gcbh, 'coefA', keysValuesStruct.('custom_coefa'));        xlUpdateGuiControl(gcbh, 'coefB', keysValuesStruct.('custom_coefb'));        xlUpdateGuiControl(gcbh, 'coefC', keysValuesStruct.('custom_coefc'));        xlUpdateGuiControl(gcbh, 'coefD', keysValuesStruct.('custom_coefd'));        xlUpdateGuiControl(gcbh, 'yoffset', keysValuesStruct.('custom_ofs_y'));        xlUpdateGuiControl(gcbh, 'coffset', keysValuesStruct.('custom_ofs_c'));        xlUpdateGuiControl(gcbh, 'has_clip', keysValuesStruct.('custom_has_max'));        xlUpdateGuiControl(gcbh, 'has_clamp', keysValuesStruct.('custom_has_min'));        xlUpdateGuiControl(gcbh, 'ymax', keysValuesStruct.('custom_max_y'));        xlUpdateGuiControl(gcbh, 'cmax', keysValuesStruct.('custom_max_c'));        xlUpdateGuiControl(gcbh, 'ymin', keysValuesStruct.('custom_min_y'));        xlUpdateGuiControl(gcbh, 'cmin', keysValuesStruct.('custom_min_c'));      end    end    if ((strcmp(keysValuesStruct.('standard'),'YCrCb ITU 601 (SD)')) || ...        % Entering '601' or '709' PAL        (strcmp(keysValuesStruct.('standard'),'YCrCb ITU 709 (HD), 1125/60 (PAL)')))        if ((strcmp(keysValuesStruct.('range_sel'),'16 - 240 : TV')))        xlUpdateGuiControl(gcbh, 'coefA', '0.299' );        xlUpdateGuiControl(gcbh, 'coefB', '0.114' );        xlUpdateGuiControl(gcbh, 'coefC', '0.564' );        xlUpdateGuiControl(gcbh, 'coefD', '0.713' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(240/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(240/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(16/256*scale)));      end      if ((strcmp(keysValuesStruct.('range_sel'),'16 - 235 : Studio equipment')))        xlUpdateGuiControl(gcbh, 'coefA', '0.299' );        xlUpdateGuiControl(gcbh, 'coefB', '0.114' );        xlUpdateGuiControl(gcbh, 'coefC', '0.5772' );        xlUpdateGuiControl(gcbh, 'coefD', '0.7295' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(235/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(235/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(16/256*scale)));      end      if ((strcmp(keysValuesStruct.('range_sel'),'0  - 255 : Computer systems')))        xlUpdateGuiControl(gcbh, 'coefA', '0.2568' );        xlUpdateGuiControl(gcbh, 'coefB', '0.0979' );        xlUpdateGuiControl(gcbh, 'coefC', '0.5772' );        xlUpdateGuiControl(gcbh, 'coefD', '0.5910' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(255/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(255/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(0/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(0/256*scale)));      end    end        if (strcmp(keysValuesStruct.('standard'),'YCrCb ITU 709 (HD), 1250/50 (NTSC)'))  % Entering '709 NTSC'      if ((strcmp(keysValuesStruct.('range_sel'),'16 - 240 : TV')))        xlUpdateGuiControl(gcbh, 'coefA', '0.2126' );        xlUpdateGuiControl(gcbh, 'coefB', '0.0722' );        xlUpdateGuiControl(gcbh, 'coefC', '0.5389' );        xlUpdateGuiControl(gcbh, 'coefD', '0.6350' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(240/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(240/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(16/256*scale)));      end      if ((strcmp(keysValuesStruct.('range_sel'),'16 - 235 : Studio equipment')))        xlUpdateGuiControl(gcbh, 'coefA', '0.2126' );        xlUpdateGuiControl(gcbh, 'coefB', '0.0722' );        xlUpdateGuiControl(gcbh, 'coefC', '0.5512' );        xlUpdateGuiControl(gcbh, 'coefD', '0.6495' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(235/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(235/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(16/256*scale)));      end      if ((strcmp(keysValuesStruct.('range_sel'),'0  - 255 : Computer systems')))        xlUpdateGuiControl(gcbh, 'coefA', '0.1819' );        xlUpdateGuiControl(gcbh, 'coefB', '0.0618' );        xlUpdateGuiControl(gcbh, 'coefC', '0.5512' );        xlUpdateGuiControl(gcbh, 'coefD', '0.6495' );        xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));        xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));        xlUpdateGuiControl(gcbh, 'has_clip', 'on');        xlUpdateGuiControl(gcbh, 'has_clamp', 'on');        xlUpdateGuiControl(gcbh, 'ymax', num2str(round(255/256*scale)));        xlUpdateGuiControl(gcbh, 'cmax', num2str(round(255/256*scale)));        xlUpdateGuiControl(gcbh, 'ymin', num2str(round(0/256*scale)));        xlUpdateGuiControl(gcbh, 'cmin', num2str(round(0/256*scale)));      end    end    if (strcmp(keysValuesStruct.('standard'),'YUV'))  % Entering 'YUV'      xlUpdateGuiControl(gcbh, 'coefA', '0.299' );      xlUpdateGuiControl(gcbh, 'coefB', '0.114' );      xlUpdateGuiControl(gcbh, 'coefC', '0.500111' );      xlUpdateGuiControl(gcbh, 'coefD', '0.877283' );      xlUpdateGuiControl(gcbh, 'yoffset', num2str(round(16/256*scale)));      xlUpdateGuiControl(gcbh, 'coffset', num2str(round(128/256*scale)));      xlUpdateGuiControl(gcbh, 'has_clip', 'on');      xlUpdateGuiControl(gcbh, 'has_clamp', 'on');      xlUpdateGuiControl(gcbh, 'ymax', num2str(round(240/256*scale)));      xlUpdateGuiControl(gcbh, 'cmax', num2str(round(240/256*scale)));      xlUpdateGuiControl(gcbh, 'ymin', num2str(round(16/256*scale)));      xlUpdateGuiControl(gcbh, 'cmin', num2str(round(16/256*scale)));    end  end  % Range checking of m_bits:  if (((strcmp(controlName,'m_bits')) && (strcmp(actionType,'lostFocus'))) || ...      ((strcmp(controlName,'c_bits')) && (strcmp(actionType,'lostFocus'))) || ...       (strcmp(controlName,'fabric_adds')) )    if (value_m < value_o)         xlUpdateGuiControl(gcbh, 'm_bits', num2str(value_o) ); end;    if (value_m > value_i+value_c) xlUpdateGuiControl(gcbh, 'm_bits', num2str(value_i+value_c) ); end;       end%  if (strcmp(controlName,'is_v4'))%    if (strcmp(keysValuesStruct.('is_v4'), 'on'))%      xlUpdateGuiControl(gcbh, 'fabric_adds',  keysValuesStruct.('fabric_cache')); %    else%      xlUpdateGuiControl(gcbh, 'fabric_cache',  keysValuesStruct.('fabric_adds')); %      xlUpdateGuiControl(gcbh, 'fabric_adds', 'on' );%    end%  end  xlUpdateGuiControl(gcbh, 'coefvoid', num2str(1-str2num(keysValuesStruct.('coefA'))-str2num(keysValuesStruct.('coefB'))));  xlUpdateGuiControl(gcbh, 'prev_standard', keysValuesStruct.('standard')); end

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合男人的天堂| 日本一区二区动态图| 欧美激情艳妇裸体舞| 亚洲一区影音先锋| 91福利社在线观看| 亚洲最大色网站| 欧洲精品一区二区| 婷婷久久综合九色综合绿巨人| 欧美久久婷婷综合色| 日韩精品乱码av一区二区| 日韩一区二区三区电影在线观看| 亚洲国产欧美在线| 午夜欧美大尺度福利影院在线看 | 亚洲综合视频在线| 精品国精品国产| 国产精品一区一区三区| 国产精品激情偷乱一区二区∴| 欧美日韩在线直播| 高清不卡在线观看| 日韩高清一区在线| 国产精品一线二线三线精华| 日韩一区二区三区观看| 亚洲激情图片一区| 欧美一二三区精品| 国产一区二区精品久久91| 中文字幕av一区二区三区高| 91一区二区三区在线观看| 亚洲国产精品嫩草影院| 日韩欧美中文字幕公布| 国产乱码精品一区二区三| 中文字幕在线观看不卡| 色噜噜狠狠色综合欧洲selulu| 男男gaygay亚洲| 欧美国产日韩精品免费观看| 色综合天天综合| 婷婷激情综合网| 欧美极品少妇xxxxⅹ高跟鞋 | 美洲天堂一区二卡三卡四卡视频| 亚洲伊人色欲综合网| 最新热久久免费视频| 国产精品―色哟哟| 国产精品乱人伦| 国产精品二区一区二区aⅴ污介绍| 久久久五月婷婷| 久久婷婷久久一区二区三区| 久久丝袜美腿综合| 丰满白嫩尤物一区二区| 日韩欧美一卡二卡| a4yy欧美一区二区三区| 麻豆freexxxx性91精品| 亚洲日本中文字幕区| 一区二区在线免费观看| 日韩欧美亚洲一区二区| 久久精品国产久精国产爱| 亚洲免费视频中文字幕| 精品国产污网站| 色欧美片视频在线观看 | 亚洲国产成人私人影院tom| 色av成人天堂桃色av| 精品系列免费在线观看| 国产视频一区二区在线观看| 欧美一区二区私人影院日本| 一区二区三区小说| 亚洲不卡在线观看| 日本三级亚洲精品| 国产一区在线不卡| 不卡一区在线观看| 欧美日韩不卡在线| 久久综合色之久久综合| 国产精品国产三级国产aⅴ中文| 亚洲精品你懂的| 日韩av在线免费观看不卡| 福利91精品一区二区三区| 91视频免费观看| 日韩一区二区视频| 国产欧美精品在线观看| 亚洲国产乱码最新视频 | 精品中文字幕一区二区小辣椒| 欧美一区二区三区视频| 久久精品视频一区二区| 国内久久婷婷综合| 一本一道综合狠狠老| 欧美性色综合网| 亚洲精品一区二区三区在线观看 | 国产精品美女久久福利网站| www.在线欧美| 亚洲国产精品黑人久久久| 日韩欧美区一区二| 欧美日精品一区视频| 国产成人午夜电影网| 久久国产生活片100| 日韩高清在线电影| 亚洲国产一区二区三区青草影视| 国产精品网友自拍| www久久精品| 91精品久久久久久久99蜜桃 | www.色综合.com| 国产米奇在线777精品观看| 日韩一区二区精品在线观看| 亚洲人快播电影网| 成人99免费视频| 亚洲欧洲日韩综合一区二区| 国产成人在线免费| 国产日产亚洲精品系列| 国产在线精品免费| 久久久高清一区二区三区| 欧美乱妇23p| 香蕉久久夜色精品国产使用方法| 欧美性猛交xxxxxxxx| 日韩国产一二三区| 欧美一级免费观看| 久久66热偷产精品| 久久精品日韩一区二区三区| www.日韩av| 午夜精品一区二区三区电影天堂| 在线不卡免费av| 国产黑丝在线一区二区三区| 国产精品第四页| 日韩精品专区在线| 三级在线观看一区二区| 欧美午夜一区二区三区免费大片| 亚洲国产精品久久不卡毛片| 日韩一区二区三区高清免费看看 | 精品美女在线播放| 亚洲一线二线三线视频| 中文字幕在线不卡视频| 亚洲另类一区二区| 日韩精品乱码av一区二区| 久久丁香综合五月国产三级网站| 黄色资源网久久资源365| 国产成人精品在线看| 不卡视频在线看| 欧亚一区二区三区| 91麻豆精品国产91久久久久久久久| 精品伦理精品一区| 国产精品色噜噜| 亚洲综合丝袜美腿| 精品视频免费在线| 欧美videos大乳护士334| 日本一区二区三区久久久久久久久不| 国产精品麻豆欧美日韩ww| 亚洲在线视频免费观看| 麻豆成人免费电影| 成人av网站在线| 欧美日韩视频一区二区| 久久亚洲一级片| 自拍偷在线精品自拍偷无码专区| 午夜私人影院久久久久| 激情文学综合插| 97久久精品人人做人人爽50路| 欧美日韩国产乱码电影| 久久久久九九视频| 亚洲精品高清视频在线观看| 久久精品国产精品亚洲综合| k8久久久一区二区三区 | 亚洲国产精品二十页| 亚洲高清不卡在线| 国产尤物一区二区在线| 在线欧美小视频| 久久综合视频网| 一区二区欧美视频| 国产一区二区按摩在线观看| 色先锋资源久久综合| 欧美成人一区二区三区在线观看 | 91麻豆精品在线观看| 欧美一级免费观看| 亚洲日本在线看| 久久99精品网久久| 日本精品视频一区二区| 久久久久久久精| 午夜久久电影网| 99综合影院在线| 日韩精品在线网站| 一区二区三区日韩欧美精品| 国产在线精品不卡| 欧美日韩综合色| 中文字幕一区二区日韩精品绯色| 日韩专区在线视频| 91蝌蚪porny| 久久久久99精品一区| 视频一区免费在线观看| 91网站在线播放| 久久只精品国产| 日本在线不卡视频一二三区| 99国产精品99久久久久久| 精品毛片乱码1区2区3区| 亚洲图片一区二区| 99久久久无码国产精品| 2024国产精品视频| 丝袜诱惑制服诱惑色一区在线观看 | 高潮精品一区videoshd| 日韩欧美自拍偷拍| 亚洲国产日韩a在线播放| 99视频一区二区| 久久影音资源网| 日韩国产成人精品| 在线观看日韩毛片| 中文字幕在线观看不卡视频| 国产精品一区二区男女羞羞无遮挡| 欧美久久一二区|