
C++
zhangzhao0907
这个作者很懒,什么都没留下…
展开
-
CMake编译OpenCV:IPPICV: Download: ippicv_2019_win_intel64_20180723_general.zip错误
使用CMake编译OpenCV出错,总是提醒下载解压失败:IPPICV: Download: ippicv_2019_win_intel64_20180723_general.zipCMake Error: Problem with archive_write_finish_entry(): Can't restore timeCMake Error: Problem ex...原创 2019-10-16 22:00:56 · 4067 阅读 · 2 评论 -
C++实现的复数类Complex
使用C++实现的复数类计算://Coded by ZZ//#define COMPLEX_H#if !defined(COMPLEX_H)#define COMPLEX_H#endif#include <iostream>#include <iomanip>class Complex{public: double real; ...原创 2018-09-13 19:58:45 · 3129 阅读 · 0 评论