Python/C++教程 第41页
Windows OpenGL 图像饱和度调节-猿说编程

Windows OpenGL 图像饱和度调节

OpenGL饱和度,OpenGL饱和度调节,OpenGL饱和度设置,图像饱和度调节,OpenGL饱和度设置,OpenGL教程,OpenGL特效,
C/C++ itoa函数-猿说编程

C/C++ itoa函数

C/C++ itoa函数 - 在 stdlib.h 中 itoa 函数,可用于将 int 整数类型转为 char 字符串,语法如下: /* *描述:将一个整数转为char类型 * *参数: * [in] value:整数类型 * [in] string:字符串...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
018481
IOS OpenGL ES GPUImage 图像溶解 GPUImageDissolveBlendFilter-猿说编程

IOS OpenGL ES GPUImage 图像溶解 GPUImageDissolveBlendFilter

GPUImage - GPUImageDissolveBlendFilter- GPUImage 共 125 个滤镜, 分为四类 1、Color adjustments : 31 filters , 颜色处理相关 2、Image processing : 40 filters , 图像处理相关. 3、Blendi...
Visual Studio 2019 代码注释快捷键-猿说编程

Visual Studio 2019 代码注释快捷键

Visual Studio 2019 代码注释快捷键-1、选中需要注释的代码 2、CTRL + K + C //注释 3、CTRL + K + U //取消注释 1.安装 Visual Studio 2.安装 Visual Studio 插件 Visual Assist 3.Visual Stud...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
018462
Python reduce 函数-猿说编程

Python reduce 函数

Python reduce 函数 - Python 内置函数 reduce 和 map / filter 等函数有点类似,都是通过函数对迭代器中的元素进行遍历操作,唯一区别是 reduce 函数是返回计算结果是一个值,而 map / filter ...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
018412
Python str / bytes / unicode 区别详解-猿说编程

Python str / bytes / unicode 区别详解

Python str / bytes / unicode 区别详解 - 在讲解 str / bytes / unicode 区别之前首先要明白字节和字符的区别,请参考:bytearray/bytes/string区别 中对字节和字符有清晰的讲解,最重要是明白...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
018402
IOS – OpenGL ES 设置图像黑白噪点 GPUImageLocalBinaryPatternFilter-猿说编程

IOS – OpenGL ES 设置图像黑白噪点 GPUImageLocalBinaryPatternFilter

GPUImage - 设置图像图像黑白化GPUImageLocalBinaryPatternFilter - GPUImage 共 125 个滤镜, 分为四类 1、Color adjustments : 31 filters , 颜色处理相关 2、Image processing : 40 filters ,...
Python divmod函数-猿说编程

Python divmod函数

divmod 函数也是 Python 的内置函数,它是把除数和余数运算结果结合起来,返回一个包含商和余数的元组 tuple (a // b, a % b); 注意:divmod 函数只能接受整数 int 或浮点数类型 float 参数不能...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
018332
AVFoundation – AVVideoCompositionInstruction AVMutableVideoCompositionInstruction 操作指令-猿说编程

AVFoundation – AVVideoCompositionInstruction AVMutableVideoCompositionInstruction 操作指令

AVFoundation – AVVideoCompositionInstruction AVMutableVideoCompositionInstruction 操作指令 - AVVideoCompositionInstruction 继承自 NSObject ,封装了一组操作指令,由 AVVideoCompositi...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
018333
Windwos zlib下载和编译-猿说编程

Windwos zlib下载和编译

Windwos zlib下载和编译 - 很多程序中的压缩或者解压缩函数都会用到 zlib 库。zlib 适用于数据压缩的函式库,几乎适用于任何计算器硬件和操作系统。zlib 编译需要用到 CMake ,关于CMake 安装请...