Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1082005
  • 博文数量: 80
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 746
  • 用 户 组: 普通用户
  • 注册时间: 2018-06-12 20:01
个人简介

寫写code、调調bug、填填坑,僅此而已。

文章分类

全部博文(80)

文章存档

2019年(30)

2018年(50)

发布时间:2019-05-06 14:56:50

最近研究jpeg图像的编码解码,涉及到DCT即离散余弦变换,参考CSDN上一位calcular博客的文章,进行简易修改。点击(此处)折叠或打开#include<iostream>#include<math.h>using namespace std;#define PI 3.14159265354 .........【阅读全文】

阅读(255722) | 评论(0) | 转发(0)

发布时间: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());.........【阅读全文】

阅读(4011) | 评论(0) | 转发(0)

发布时间: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;.........【阅读全文】

阅读(4271) | 评论(0) | 转发(0)

发布时间:2019-03-14 17:12:15

1.编写c++用例test.h点击(此处)折叠或打开#include<iostream>using namespace std;class MyClass{public:    MyClass();    ~MyClass();  .........【阅读全文】

阅读(87605) | 评论(0) | 转发(0)

发布时间:2019-03-09 10:36:58

点击(此处)折叠或打开#include#includetypedef struct {     unsigned char red,green,blue;} PPMPixel;typedef struct { &n.........【阅读全文】

阅读(6257) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册