寫写code、调調bug、填填坑,僅此而已。
发布时间:2019-05-06 14:56:50
最近研究jpeg图像的编码解码,涉及到DCT即离散余弦变换,参考CSDN上一位calcular博客的文章,进行简易修改。点击(此处)折叠或打开#include<iostream>#include<math.h>using namespace std;#define PI 3.14159265354 .........【阅读全文】
发布时间:2019-04-11 13:32:43
点击(此处)折叠或打开void readNvidiaConf(map<string,string> &m_config){ ifstream cfg_file; string path="./test.conf"; cfg_file.open(path.c_str());.........【阅读全文】
发布时间:2019-03-22 18:56:28
点击(此处)折叠或打开#include <stdio.h>#include <jpeglib.h>#include <stdlib.h>/* we will be using this uninitialized pointer later to store raw, uncompressd image */unsigned char *raw_image = NULL;.........【阅读全文】
发布时间:2019-03-14 17:12:15
1.编写c++用例test.h点击(此处)折叠或打开#include<iostream>using namespace std;class MyClass{public: MyClass(); ~MyClass();  .........【阅读全文】
发布时间:2019-03-09 10:36:58
点击(此处)折叠或打开#include#includetypedef struct { unsigned char red,green,blue;} PPMPixel;typedef struct { &n.........【阅读全文】