2015年6月25日

摘要: 目前接触到的只有 RGB 和 HSV其他的也就不特意看了,免得混淆。HSV:Hue-色相,就是颜色。取值 0~360Saturation-饱和度,颜色的“纯度”。Value-亮度,取值0~1看图,V=1&&S = 0时是白色。RGB:RGB565是使用16位表示一个像素:5位表示R,6位表示G,5位... 阅读全文

posted @ 2015-06-25 04:38 Bing_Lee 阅读(200) 评论(0) 推荐(0)

2015年6月21日

摘要: #include #include int main(int,char**){ ifstream input("input.txt"); char c; while (!input.eof()){ input >> c; cout << c << end... 阅读全文

posted @ 2015-06-21 13:44 Bing_Lee 阅读(185) 评论(0) 推荐(0)

2015年6月20日

摘要: pip install numpysudo apt-get install python-opencvsudo apt-get install python-pyaudio 阅读全文

posted @ 2015-06-20 01:45 Bing_Lee 阅读(148) 评论(0) 推荐(0)

2015年6月14日

摘要: stuff[start:stop:step]要注意的是,它返回的是[start,stop),即不包括stop。 阅读全文

posted @ 2015-06-14 10:54 Bing_Lee 阅读(165) 评论(0) 推荐(0)

2015年6月7日

摘要: 转自知乎:http://www.zhihu.com/question/26857761/answer/34382260错误:Unable to find vcvarsall.bat如链接所说,就是版本的问题。numpy要是能加个版本检测就好了。 阅读全文

posted @ 2015-06-07 20:29 Bing_Lee 阅读(136) 评论(0) 推荐(0)