摘要:
测试RGB24->I420 INTEL: I7-8700 3.20GHz FPS of normal : 110.14FPS of IPP : 373.26Throughput of IPP:8.65 GB/s AMD: / 3990X 2.9GHz FPS of normal : 102.89FP 阅读全文
摘要:
Test picture compression format .bmp:Time of reading : 28.68 msTime of writing : 6.79 msTime of decoding : 3.98 msTime of encoding : 4.82 msEncode rad 阅读全文
摘要:
以ffmpeg 4.2 为例 1. 建立YUV-RGB映射表 /* Color space conversion coefficients for YCbCr -> RGB mapping. * * Entries are {crv, cbu, cgu, cgv} * * crv = (255 / 阅读全文
摘要:
1 deque 双向队列, 内部通过map 管理 https://blog.csdn.net/plyukulong2008/article/details/7018270 2. list 双向链表 游标一次只可以移动一步。如果你对链表已经很熟悉,那么STL中的list则是一个双向链表(每个节点有指向 阅读全文
摘要:
超分的两个文件 chropo_resolution derain : 输入rgb 去除雨滴 vf_sr.c 超分 dnn_processing 如果用GPU 建议使用自己编译的tensorflow, 而且只能使用tensorflow 阅读全文
摘要:
如果你需要动态库就用人家编译好的so https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.15.0.tar.gz 安装Nvidia-docker curl -s -L htt 阅读全文
摘要:
1. 下载与安装: https://pytorch.org/get-started/locally/ 安装cuda9.2 & cudnn https://developer.nvidia.com/rdp/cudnn-download 2. 第一个程序 编写CMakeLists.txt cmake_m 阅读全文
摘要:
// 8 Rows of square-matrix A processed by each CTA. // This can be max 32 and only power of 2 (i.e., 2/4/8/16/32). #define ROWS_PER_CTA 8 #if !defined 阅读全文
摘要:
#include <stdio.h> #include <math.h> #include <stdlib.h> #include <cv/cv_tools.h> #include <picture/cv_picture.h> using namespace cv; using namespace 阅读全文
摘要:
#include <m_tools.h> #include <stdio.h> #include <assert.h> #include <vector> #include <string> int main(int argc , char ** argv) { assert( argc>=3 ); 阅读全文