2019年5月9日

摘要: https://www.jianshu.com/p/f92211b62c1b 阅读全文
posted @ 2019-05-09 15:03 LGLiu 阅读(634) 评论(0) 推荐(0) 编辑

2019年5月8日

摘要: 原来好好的,突然就不行了 解决! 好像是安装的一些东西冲突了 我的方法:pip uninstall numpy 多uninstall 一下,我发现我有两个版本的numpy 再pip install numpy(慢的话用清华源) 环境:win10 tensorflow-gpu 1.13.1 pytho 阅读全文
posted @ 2019-05-08 15:34 LGLiu 阅读(669) 评论(0) 推荐(0) 编辑
 
摘要: 没解决 ,但是好像不太影响使用 (py36) C:\Users\LEEG>conda install numpyCollecting package metadata: doneSolving environment: |The environment is inconsistent, please 阅读全文
posted @ 2019-05-08 15:29 LGLiu 阅读(3749) 评论(0) 推荐(1) 编辑

2019年5月6日

摘要: https://blog.csdn.net/loveliuzz/article/details/79135583 阅读全文
posted @ 2019-05-06 21:19 LGLiu 阅读(337) 评论(0) 推荐(0) 编辑
 
摘要: https://blog.csdn.net/u011021773/article/details/80791650 阅读全文
posted @ 2019-05-06 20:55 LGLiu 阅读(197) 评论(0) 推荐(0) 编辑
 
摘要: 如果我们只想看channels的信息 conda config --show channels 删除源 onda config --remove channels ... 阅读全文
posted @ 2019-05-06 12:35 LGLiu 阅读(496) 评论(0) 推荐(0) 编辑
 
摘要: win10 python3.6 anaconda GPU版本 1 尝试清华源安装 --https://blog.csdn.net/zzq060143/article/details/88042075(最后还是解决了这个问题,参考链接https://cloud.tencent.com/develope 阅读全文
posted @ 2019-05-06 09:49 LGLiu 阅读(5596) 评论(0) 推荐(0) 编辑

2019年4月4日

摘要: >> im = imread('lake.jpg');>> imshow(im)>> hsv_im = rgb2hsv(im);>> imshow(hsv_im) 阅读全文
posted @ 2019-04-04 19:55 LGLiu 阅读(744) 评论(0) 推荐(0) 编辑
 
摘要: >> im = imread('ny.png'); >> r = im(:,:,1); >> g = im(:,:,2); >> b = im(:,:,3); >> imshow(r), imshow(g),imshow(b); 分别显示有颜色的 >> r1 = cat(3, r, zeros(si 阅读全文
posted @ 2019-04-04 19:51 LGLiu 阅读(1963) 评论(0) 推荐(0) 编辑
 
摘要: >> im = imread('trees.jpg');>> imshow(im)>> ycrcb_trees = rgb2ycbcr(im);>> figure(2)>> imshow(ycrcb_trees) 阅读全文
posted @ 2019-04-04 17:11 LGLiu 阅读(1671) 评论(0) 推荐(1) 编辑