码迷,mamicode.com
首页 >  
搜索关键字:gray    ( 1068个结果
89. Gray Code
89. Gray Code The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing ...
分类:其他好文   时间:2016-07-25 01:51:54    阅读次数:212
简单布局
<style>#container{ width:1002px; background:gray; } #header{ height:120px; background:red; } #main{ height:600px; /*background:green;*/ } #lside{ widt ...
分类:其他好文   时间:2016-07-14 01:48:25    阅读次数:111
html
1、不加doctype导致低版本IE解析效果不一样2、id不能为数字,如<div id="1">是错误的3、文件编码与charset声明不一致 <style>#container{ width:800px; background:gray; } #header{ height:100px; back ...
分类:Web程序   时间:2016-07-13 20:11:59    阅读次数:127
对RGB图像进行灰度化(方法 + 代码)
对RGB图像进行灰度化,通俗点说就是对图像的RGB三个分量进行加权平均得到最终的灰度值。最常见的加权方法如下: 1)Gray=B;Gray=G;Gray=R 2)Gray=max(B+G+R) 3)Gray=(B+G+R)/3 4)Gray= 0.072169B+ 0.715160G+ 0.2126 ...
分类:其他好文   时间:2016-07-09 17:56:34    阅读次数:461
图像的纹理特征之灰度共生矩阵
(黑灯瞎火好干事。。。。。。。来源一) 由于纹理是由灰度分布在空间位置上反复出现而形成的,因而在图像空间中相隔某距离的两象素之间会存在一定的灰度关系,即图像中灰度的空间相关特性。灰度共生矩阵就是一种通过研究灰度的空间相关特性来描述纹理的常用方法。 Gray-level co-occurrence m ...
分类:其他好文   时间:2016-07-07 00:50:44    阅读次数:537
89. Gray Code java solutions
The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total num ...
分类:编程语言   时间:2016-06-27 12:07:52    阅读次数:144
OCR note
Color Spaces The RGB method to represent colors is an example of a colorspace. It’s one of many methods that stores colors. Another colorspace is gray ...
分类:其他好文   时间:2016-06-19 06:43:13    阅读次数:192
【一天一道LeetCode】#89. Gray Code
一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder‘s Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 The gray code is a binary numeral system where two successive values differ in only one bit....
分类:其他好文   时间:2016-06-12 02:03:10    阅读次数:152
Opencv函数
1、void cvCvtColor( const CvArr* src, CvArr* dst, int code ) 颜色空间转换函数,可以实现RGB颜色向HSV,HSI等颜色空间的转换,也可以转换为灰度图像 参数CV_RGB2GRAY是RGB到gray 2、boxFilter(srcImage, ...
分类:其他好文   时间:2016-06-01 13:00:01    阅读次数:176
1068条   上一页 1 ... 76 77 78 79 80 ... 107 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!