登录
首页 » OpenGL图像 » 计算机图形学大作业openmesh&qt

计算机图形学大作业openmesh&qt

于 2022-06-19 发布 文件大小:61.45 MB
0 259
下载积分: 2 下载次数: 1

代码说明:

资源描述计算机图形学大作业QTModelViewer,openmesh结合qt,网格细分结合边的反转,opengl三维图像的编辑,运行通过!

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • school OpenGL 3D game series with the book source A01_OpenGL the procedural fram...
    学OpenGL编3D游戏 随书源码 A01_OpenGL的程序框架 第1 章源程序 A02_OpenGL的基本图形 第2 章源程序 A03_OpenGL的组合图形 第3 章源程序 A04_摄像漫游 第4 章源程序 A05_开天辟地 第5 章源程序 A06_OpenGL中显示文字 第6 章源程序 A07_特殊的平面_树 第7 章源程序 A08_显示3D模型 第8 章源程序 A09_3D动画 第9 章源程序 A10_射击、爆炸 第10章源程序 A11_碰撞检测 第11章源程序 A12_游戏进度保存 第12章源程序 A13_3D场景编辑 第13章源程序 include 公用程序 运行程序 所有运行程序 学OpenGL编3D游戏运行程序在里面 文件 TSCC.exe AVI解码器 运行须知.txt 错误解决方法 说明文档.txt 本文档 学OpenGL编3D游戏.bat 运行“学OpenGL编3D游戏” //////////////////////////////////// 如果程序编制演示的AVI不能播放,请自行安装盘上的TSCC.exe。-school OpenGL 3D game series with the book source A01_OpenGL the procedural framework of Chapter 1-source The basic sequence A02_OpenGL graphics Chapter 2 source A03_OpenGL combination graphics Chapter 3 source A04_ roaming camera Chapter 4 source A05_ Chapter 5 of the entire source A06_OpenG L display text Chapter 6 source A07_ special plane trees _ Chapter 7 source revealed A08_ No. 3 D model Chapter 8 source A09_3D animation Chapter 9 source A10_ s
    2022-04-06 17:01:27下载
    积分:1
  • 著名的Nehe的OpenGL教程的VC++配套源码1-10课,适合OpenGL的初学者,作者在程序中已详加注释...
    著名的Nehe的OpenGL教程的VC++配套源码1-10课,适合OpenGL的初学者,作者在程序中已详加注释-This is NeHe OpenGL Tourial source code from 1 to 10 with mach comment!
    2022-03-31 21:45:59下载
    积分:1
  • code, you must use the OpenGL glut.h header file, tarball contain glut.h use
    图象拼接代码,必须使用OpenGL的glut.h header file,压缩档内含有glut.h使用说明-code, you must use the OpenGL glut.h header file, tarball contain glut.h use
    2023-03-17 23:40:03下载
    积分:1
  • 本程序主要实现了OpenGl技术显示三维点云数据,能够读入以.obj为扩展名的,数据格式为X,Y,Z的点云数据。...
    本程序主要实现了OpenGl技术显示三维点云数据,能够读入以.obj为扩展名的,数据格式为X,Y,Z的点云数据。 -This procedure mainly realize the OpenGL technology show three-dimensional point cloud data can be read to. Obj for the extension, the data format for the X, Y, Z of the point cloud data.
    2022-08-14 20:41:29下载
    积分:1
  • 周炜的nehe opengl全中文48章教程,最近网上不能下载,有喜欢的朋友可以一起分享,我会陆续把他的代码全部上载,再次感谢这位无私的朋友为我们提供的这么好的...
    周炜的nehe opengl全中文48章教程,最近网上不能下载,有喜欢的朋友可以一起分享,我会陆续把他的代码全部上载,再次感谢这位无私的朋友为我们提供的这么好的学习教材-Zhou Wei, the Chinese-language nehe opengl tutorial Chapter 48, the latest online Can not download, like to have friends can share, I will catch him all the code upload, once again thank the selfless friend to provide us with such a good learning materials
    2022-03-22 02:50:39下载
    积分:1
  • 通过径向基函数将散乱数据点云重构为三维隐式曲面
    通过径向基函数将散乱数据点云重构为三维隐式曲面-RBF
    2022-03-19 15:50:08下载
    积分:1
  • OPENGL绘制彩色的三角形
    OPENGL绘制彩色的三角形-OpenGL rendering color triangle
    2022-09-16 16:10:09下载
    积分:1
  • OpenGL MUST Project 1[Polyline Editor] use linked list of C++
    #include #include #include #include #include "point.h" /*draw line from the line array*/ void drawPointLine() {  Node * temp;  for (int i=0;inext!=NULL)   {    temp=temp->next;    glVertex2i(temp->x,temp->y);   }   glEnd();  } } /*find the point and delete the point from the line array*/ void delpointFun(int xx,int yy) {  for (int i=0;inext!=NULL)   {&n
    2022-01-31 23:45:53下载
    积分:1
  • 运动检测
    可以实现运动目标的检测与跟踪 算法可靠camshift改进的比 该混合高斯 研究了基于色彩直方图特征和基于方差比值特征的MeanShift算法的目标跟踪原理及其实现过程,并通过分析检测过程中得到的目标结果图像,试验比较了两种算法的跟踪效果,最终选用了基于方差比值特征的Mean Shift目标跟踪算法,可于复杂背景下实时准确地完成运动目标的跟踪。 本文在VC++6.0开发平台下,采用C语言编写程序并调用了部分OpenCV库函数,实现了以上提出的图像预处理、运动目标检测和跟踪算法,并通过试验验证了算法的有效性,成功实现了对复杂背景下运动目标的检测与跟踪。
    2022-01-26 03:10:21下载
    积分:1
  • OpenGL基础函数合集
    这个里面包含了一系列OpenGL基础的函数,需要freeglut环境
    2022-07-15 13:27:37下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载