登录
首页 » Visual C++ » delaunay

delaunay

于 2021-04-08 发布 文件大小:3410KB
0 324
下载积分: 1 下载次数: 353

代码说明:

  VC和OpenGL实现的点云读取界面,需要的朋友可以下载参考(VC and OpenGL realize the point cloud to read interface, the need for a friend can download the reference)

文件列表:

带约束条件的delaunay分割
........................\Aboutfrm.frm
........................\Aboutfrm.frx
........................\AddEditBookId.frm
........................\AddEditBookId.frx
........................\AddNewBook.frm
........................\AddNewBook.frx
........................\AEditBookId.frm
........................\AEditBookId.frx
........................\BookSystem.PDM
........................\BookSystem.vbp
........................\BookSystem.vbw
........................\DataBase
........................\........\Data.mdb
........................\........\Set.Dat
........................\........\VB101.tmp
........................\........\VB12D.tmp
........................\DataEnvironment1.DCA
........................\DataEnvironment1.Dsr
........................\DataReport1.DCA
........................\DataReport1.Dsr
........................\DataReport1.dsx
........................\DataReport2.DCA
........................\DataReport2.Dsr
........................\DataReport2.dsx
........................\DataReport3.DCA
........................\DataReport3.Dsr
........................\DataReport3.dsx
........................\EditBook.frm
........................\EditBook.frx
........................\EditBookId.frm
........................\EditBookId.frx
........................\Findfrm.frm
........................\Findfrm.frx
........................\frmMain.frm
........................\frmSplash.frm
........................\frmSplash.frx
........................\imgae





........................\.....\CDROM01.ICO
........................\.....\CLASSLIB.ICO
........................\.....\CLOCK03.ICO
........................\.....\FACE01.ICO
........................\.....\FACE02.ICO
........................\.....\FACE03.ICO
........................\.....\FACE04.ICO
........................\.....\FACE05.ICO
........................\.....\graph9.ico
........................\.....\JGL.ico
........................\.....\KEY04.ICO
........................\.....\LT72.ICO
........................\.....\NOTEPA~5.ICO
........................\.....\NOTESG.ICO
........................\.....\OOFL.ICO
........................\.....\Orders.ICO
........................\.....\OUTLOOK.ICO
........................\.....\RPTSTYLE.ICO
........................\.....\SCDRESPL.ICO
........................\.....\SECUR05.ICO
........................\.....\TIMER01.ICO
........................\.....\TOOLS.ICO
........................\Lentfrm.frm
........................\Lentfrm.frx
........................\LentLogin.frm
........................\LentLogin.frx
........................\LoginSys.frm
........................\LoginSys.frx
........................\Main.frm
........................\Main.frx
........................\Module1.bas
........................\mp3play
........................\.......\mp3.exe
........................\MSSCCPRJ.SCC
........................\Readme.txt
........................\SearchNum.frm
........................\SearchNum.frx
........................\Setfrm.frm
........................\Setfrm.frx
........................\setfrm.log
........................\SetPer.frm
........................\SetPer.frx
........................\SetType.frm
........................\SetType.frx
........................\VB1.TMP
........................\VB1113.TMP
........................\VB1115.TMP
........................\VB1120.TMP
........................\VB15.TMP
........................\VB210.TMP
........................\VB223.TMP
........................\VB235.TMP
........................\VB32.TMP
........................\VBD4.tmp
........................\中国象棋2000


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

发表评论

0 个回复

  • Image-color-VB-source-code
    使用VB编写的图片反色源代码是图像处理的很好的教程(Image color VB source code)
    2014-03-18 09:45:58下载
    积分:1
  • udf
    运用在fluent中的udf,解决边界正弦运动的情况,非常珍贵(Border harmonic vibration UDF, use them in fluent, very precious resource)
    2021-04-13 21:08:56下载
    积分:1
  • chenggongchengxu
    rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h" #include <iostream.h> void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h =-1 (undefined) float min, max, delta,tmp tmp = R>G?G:R min = tmp>B?B:tmp tmp = R>G?R:G max = tmp>B?tmp:B V = max // v delta = max- min if( max != 0 ) S = delta/max // s else { // r = g = b = 0 // s = 0, v is undefined S = 0 H = 0 return } if (delta == 0){ H = 0 return } else if(R == max){ if (G >= B) H = (G- B)/delta // between yellow & magenta else H = (G- B)/delta+ 6 } else if( G == max ) H = 2+ ( B- R )/delta // between cyan & yellow else if (B == ma)
    2011-12-02 10:09:24下载
    积分:1
  • consturct_curve
    对测井曲线进行重构的程序,可以充分利用测井特征曲线所反应的岩性特征信息,完成多信息的融合(Log curve reconstruction procedures)
    2012-07-19 05:19:33下载
    积分:1
  • RemoteControl-1
    说明:  一个用VC++6.0编的程序例子,实现远程屏幕图像的传输 (a VC 6.0 Provision procedures example, remote screen image transmission)
    2020-11-03 18:59:52下载
    积分:1
  • jpegIO
    实现原始的JPEG图片编解码,不借助任何的第三方库,纯C++。(To achieve the original JPEG image decoding, without using any third-party libraries, pure C++.)
    2011-10-06 13:50:13下载
    积分:1
  • DSP
    程序是基于DSP的数字图像处理技术,可以实现军事滤波,中值滤波和维纳滤波,实现效果较好(The program is a DSP-based digital image processing technology, the military filtering, median filtering and Wiener filtering, better )
    2012-03-18 08:30:46下载
    积分:1
  • DebugDemo
    设置位置断点跟踪程序,VC++精选编程源码,很好的参考资料。(Set breakpoint location tracking procedures, VC++ programming source code, a good reference.)
    2013-11-26 09:57:15下载
    积分:1
  • otsu-canny
    基于otsu的自适应阀值canny边缘检测(adaptive canny edge detection based on otsu)
    2020-06-27 02:00:02下载
    积分:1
  • Otsu image processing
    利用大津算法对图片进行处理,得到满意的处理效果。(The image is processed by Otsu algorithm and satisfactory results are obtained.)
    2019-04-12 15:45:15下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载