摘要:
https://blog.csdn.net/u011681952/article/details/81985559 阅读全文
摘要:
1. 编译安装ffmpeg 下载源码,执行 ./configure --disable-yasm --enbale-shared --prefix=/usr/local/ffmpeg 即可。 2. 下载opencv并设置config 下载源码,并 git checkout 3.1.0,也可以是其他版 阅读全文
摘要:
取消 恢复 阅读全文
摘要:
Ordinal Regression with Multiple Output CNN https://blog.csdn.net/u013841196/article/details/81460498 阅读全文
摘要:
survey 文章汇总:很全 https://github.com/EvelynFan/AWESOME-FER https://arxiv.org/pdf/1804.08348.pdf https://blog.csdn.net/z349177893/article/details/86605140 阅读全文
摘要:
方法1: result_list = sorted(origin_list, key=lambda e: e.__getitem__('order_key')) 方法2: import operator result_list = sorted(origin_list, key=operator.itemgetter('order_key')) 阅读全文
摘要:
https://www.jianshu.com/p/a20d5a7ed6f3 阅读全文
摘要:
mask_x = ['11', '12', 13'] 方法1:for循环遍历 方法2:map迭代 可能出现的错误: Scrapy运行错误:ValueError: invalid literal for int() with base 10: 原因:list中出现了空格或者非数字的字符 解决:去除掉非 阅读全文
摘要:
步骤 1. 按照官网的Option1安装步骤安装 https://github.com/facebookresearch/maskrcnn-benchmark/blob/master/INSTALL.md 注意:编译cocoApi会遇到-Wno-cpp相关的错误,直接将 cocoapi\Python 阅读全文