摘要: T = readtable('BIL.txt'); b = table2array(T); b = cast(b, 'uint8'); [h,w] = size(b) % for i = 1:3:h % l = floor(i/3)+1; % image(l,:,1)=b(i,:); % image 阅读全文
posted @ 2021-09-19 21:18 Timor88 阅读(40) 评论(0) 推荐(0)
摘要: T = readtable('BIL.txt'); b = table2array(T); % b = cast(b, 'uint8'); [h,w] = size(b); x = [1 w] y = [1 h/3] R = b(1:3:h,:); G = b(2:3:h,:); B = b(3:3 阅读全文
posted @ 2021-09-19 21:17 Timor88 阅读(51) 评论(0) 推荐(0)
摘要: def ut_zhihu_rank(): url = '' i = 0 md = '' headers = { 'user-agent':'ua' } res = requests.get(url, headers=headers) soup = BeautifulSoup(res.content, 阅读全文
posted @ 2021-09-11 21:08 Timor88 阅读(52) 评论(0) 推荐(0)