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
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三个分量进行加权平均得到最终的灰度值。最常见的加权方法如下: 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
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
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
本系列文章已全部上传至我的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
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