Home › Forums › GAMES在线课程(现代计算机图形学入门)讨论区 › MacOS上能做作业吗 Tagged: macOS This topic has 6 replies, 7 voices, and was last updated 2 years, 1 month ago by 苏州穷人. Viewing 5 reply threads Author Posts 2022年4月22日 at 下午5:53 #11340 Score: 0 InnerPeaceParticipant 问题同题目,请问作业支持MacOS吗? 2022年5月26日 at 上午12:55 #11604 Score: 0 Ica HuangParticipant 自己装CMake、Opencv和eigen就能做了,我最近在mac配了环境,是能在mac上做的。 2022年6月27日 at 上午8:56 #11872 Score: 0 PattiiiiParticipant 请问Mac配置好环境之后可以不装虚拟机吗?现在我找不到作业0的文档了 2022年7月17日 at 下午3:07 #12017 Score: 0 unkvccParticipant Karma: 2 pts mac环境配置没整明白,自行安装了eigen库,直接编译能过 g++ main.cpp -o Test 但是 cmake .. 然后 make 报错,找不到头文件 2022年7月26日 at 下午7:33 #12084 Score: 0 yishanxianshengParticipant 老哥,你有遇到ffmepg的问题吗?说找不到dylib的问题 2022年9月9日 at 下午2:01 #12827 Score: 0 paladinzeParticipant Mac上是可以的。虚拟机主要是为了保证环境一致性,提前把依赖准备好了。Mac上需要手动做两件事: – 安装依赖:OpenCV,Eigen – 更新build配置 个人开发环境:Mac M1 + Clion编辑器 安装依赖(推荐通过Homebrew) – brew install opencv – brew install eigen 更新build配置(CMakeLists.txt) M1中没有/usr/local/include目录,所以需要调整include_directories,不然会找不到依赖(eigen)相关文件。 例如修改为:include_directories("/opt/homebrew/Cellar/eigen/3.4.0_1/include/") tip:查看homebrew的安装路径:brew list eigen 2022年10月14日 at 上午9:36 #14276 Score: 0 苏州穷人Participant https://zhuanlan.zhihu.com/p/573419068 图形库:Raylib,代替OpenCV 矩阵运算库: OpenBLAS,代替Eigen 以上的库都是C语言接口的 原作业框架是C++实现的,使用了OpenCV和Eigen,都是很复杂的C++库。 我用C语言实现了程序框架和作业,简洁明了。包括注释,一共不超过350行代码。 代码可以运行在Mac和WIN10(VS2019开发)。 Author Posts Viewing 5 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In