摘要: Git安装: Linux系统自带:终端中输入git即可 Windows系统安装: git下载: https://git-scm.com/download/win 将git添加至环境变量 git --version查看git版本 Git配置: git config --global --list 用于 阅读全文
posted @ 2024-03-30 11:00 达可奈特 阅读(4) 评论(0) 推荐(0) 编辑
摘要: JSON (JavaScript Object Notation) 用于存储和传输数据,通常用于服务器-->Web端的数据传输 JSON 示例: { "employees":[ {"firstName":"John", "lastName":"Doe"}, {"firstName":"Anna", 阅读全文
posted @ 2024-03-30 10:52 达可奈特 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 部分资料汇总: LearnOpenGL: https://learnopengl.com/Introduction LearnOpenGL-CN: https://learnopengl-cn.github.io/ Sample CMake Project for OpenGL: https://g 阅读全文
posted @ 2024-03-27 21:49 达可奈特 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Android-NDK: 安卓-原生开发工具包 写一个Hello World # include <iostream> int main(int argc, char const *argv[]) { for(int i = 0; i < 5; ++i) std::cout << "Hello Wo 阅读全文
posted @ 2024-03-14 09:00 达可奈特 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 使用场景:本地VSCode通过SSH访问(远程)服务器 写在前面:首先确认电脑上已经安装ssh (命令行中输入ssh) 通过SSH连接远程服务器:ssh user@hostname(SSH默认端口为22),然后提示需要输入登录密码 参考:https://code.visualstudio.com/d 阅读全文
posted @ 2024-02-28 11:33 达可奈特 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 图片序列转视频 https://shotstack.io/learn/use-ffmpeg-to-convert-images-to-video/ 视频转图片序列: https://www.bannerbear.com/blog/how-to-extract-images-from-a-video- 阅读全文
posted @ 2024-02-06 09:55 达可奈特 阅读(6) 评论(0) 推荐(0) 编辑
摘要: https://blog.programster.org/ffmpeg-create-smooth-videos-with-frame-interpolation FFmpeg Doc: https://ffmpeg.org/ffmpeg-filters.html#minterpolate 阅读全文
posted @ 2024-02-06 09:52 达可奈特 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 摘录自Android官方文档 Intent 和 Intent 过滤器: https://developer.android.google.cn/guide/components/intents-filters?hl=zh-cn 安卓按钮: https://developer.android.com/ 阅读全文
posted @ 2024-01-28 12:11 达可奈特 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Android开发环境配置 Android Studio下载:https://developer.android.google.cn/studio/install?hl=zh-cn Android SDK下载 JDK for Native develop Android NDK: https://d 阅读全文
posted @ 2024-01-28 12:09 达可奈特 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 3D模型查看器: 3D查看器 (Windows自带) Blender (https://www.blender.org/download/) MeshLab (基于VCGlib) 3D模型来源: 美工建模 (fbx) 三维重建 (ply/obj) 3D-AIGC:https://www.tripo3 阅读全文
posted @ 2024-01-11 15:22 达可奈特 阅读(17) 评论(0) 推荐(0) 编辑