登录
首页 » 图形图像 » opening NVIDIA "SLI" Debugging and simple demonstration program source...

opening NVIDIA "SLI" Debugging and simple demonstration program source...

于 2022-07-14 发布 文件大小:3.74 MB
0 141
下载积分: 2 下载次数: 1

代码说明:

启用NVIDIA显卡“SLI技术”的调试和简单演示程序源代码。-opening NVIDIA "SLI" Debugging and simple demonstration program source code.

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

发表评论

0 个回复

  • Apparel CAD source code, can interrupt the bspline partition, the reduction oper...
    服装CAD源代码,可以进行bspline的打断分割,裁减操作,而且还可以解析shx字库,进行标注等。-Apparel CAD source code, can interrupt the bspline partition, the reduction operation, but also can resolve shx font, such as to carry out marking.
    2022-12-13 19:20:03下载
    积分:1
  • 该源码使用Direct3D编写,显示水面效应,很有借鉴行!
    该源码使用Direct3D编写,显示水面效应,很有借鉴行!
    2022-11-15 16:10:03下载
    积分:1
  • 一个头文件 一个头文件 一个头文件
    一个头文件 一个头文件 一个头文件-A header file a header file a header file a header file
    2022-01-25 14:43:59下载
    积分:1
  • VC6.0的三次Bezier曲线的绘制编写的程序,使用MFC框架D.
    这是用VC6.0编写的绘制三次Bezier曲线的程序,使用MFC框架文档视图结构。程序除实现三次Bezier曲线的绘制,还实现了点,直线,圆的绘制,可做为学习计算机图形算法的参考。与其它Bezier曲线绘制程序的不同是,本程序实现了Bezier曲线上型值点的计算显示。程序中编写了Bezier曲线类来完成Bezier曲线的绘制,并能对绘制的曲线数据进行保存与打开。对学习文件操作也有一定帮助。这是我第一次上传源码,有什么不妥之处还请管理员指点。谢谢!-VC6.0 prepared by the cubic Bezier curve drawing procedures, use MFC framework document View structure. In addition to procedures to achieve cubic Bezier curve drawing, but also realized the point, line, round mapping, can be used as learning computer graphics algorithm reference. And other Bezier curves of different procedures, The program of Bezier curve-point value calculations show. Procedures prepared Bezier curves like to complete the Bezier curve drawing, and is able to draw the curve data preservation and open. Operation right to study the documents will also help. This is the first time I uploaded the source code, what is wrong with this manager also requested guidance. Thank you!
    2022-08-05 22:57:49下载
    积分:1
  • 从三字经使用四个不同的筛选器的层析重建
    这个程序作为输入需要三字经,然后绘制一个文件。使用函数 iradon,程序将会重建层析图像使用从输入的三字经。四个不同的筛选器被用于重建 ︰ Ram Lak、 Shepp_Logan、 汉和汉明。绘制的图形显示所有四个重建图像和像素值。
    2022-03-23 06:11:49下载
    积分:1
  • 象模糊代码 MATLAB
    图象模糊代码 MATLAB-MATLAB code Fuzzy Image
    2023-05-13 09:05:03下载
    积分:1
  • 数字处理(朱志刚)
    数字图像处理(朱志刚)-Digital Image Processing (Zhu Zhigang)
    2022-08-15 06:21:32下载
    积分:1
  • PCAMAT
    PCAMAT - Calculates the pca for data-matlab code
    2023-02-20 13:15:04下载
    积分:1
  • planets太阳系八大行星
    资源描述 import QtQuick 2.0 import QtCanvas3D 1.0 import "planets.js" as GLCode Item {     id: mainview     width: 1280     height: 768     visible: true     property int focusedPlanet: 100     property int oldPlanet: 0     property real xLookAtOffset: 0     property real yLookAtOffset: 0     property real zLookAtOffset: 0     property real xCameraOffset: 0     property real yCameraOffset: 0     property real zCameraOffset: 0     property real cameraNear: 0     NumberAnimation {         id: lookAtOffsetAnimation         target: mainview         properties: "xLookAtOffset, y
    2022-03-09 11:25:15下载
    积分:1
  • barcode generation principle : bar code data of the first part by the seven figu...
    条形码的生成原理: 条形码的第一数据部分是由 7个数字形成的,其形成的方法详述如下: n 首先使用 产生和 匹配的字母码,该字母码有6个字母组成,字母限于A和B。产生字母码的列表如下 字母码 0 AAA 1 AABABB 2 AABBAB 3 AABBBA 4 ABAABB 5 ABBAAB 6 ABBBAA 7 ABABAB 8 ABABBA 9 ABBABA 表一 映射表 n 将 和 产生的字母码按位进行搭配,来产生一个数字-字母匹配对。并通过查表来得到 形成的条形码第一数据部分。 将 和C进行搭配,并通过查表得到 形成的条形码的第二数据部分。 该映射表如表二所示: 数字-字母匹配对 二进制信息 0A 0001101 0B 0100111 0C 1110010 1A 0011001 1B 0110011 1C 1100110 2A 0010011 2B 0011011 2C 1101100 3A 0111101 3B 0100001 3C 1000010 4A 0100011 4B 0011101 4C 1011100 5A 0110001 5B 0111001 5C 1001110 6A 0101111 6B 0000101 6C 1010000 7A 0111011 7B 0010001 7C 1000100 8A 0110111 8B 0001001 8C 1001000 9A 0001011 9B 0010111 9C 1110100 表二 数字-字母映射表 n 绘制条形码:通过映射表二得到的二进制数码进行绘制,1对应黑线,0对应白线。 -barcode generation principle : bar code data of the first part by the seven figures formed, and the formation of detailed as follows : n the first use of the alphabet and matching code, the code l
    2022-01-25 20:25:14下载
    积分:1
  • 696516资源总数
  • 106600会员总数
  • 11今日下载