登录
首页 » Visual C++ » bmpLoader--STL

bmpLoader--STL

于 2021-03-12 发布 文件大小:11840KB
0 328
下载积分: 1 下载次数: 27

代码说明:

  VTK读取BMP序列图片实现MC算法面绘制,并且将绘制结果保存为STL格式。(VTK read BMP image sequences to achieve MC surface rendering algorithm, and the results will be drawn saved as STL format.)

文件列表:

bmpLoader -STL
..............\Debug
..............\.....\SC.exe,11244544,2016-11-29
..............\.....\SC.ilk,16058432,2016-11-29
..............\.....\SC.pdb,37710848,2016-11-29
..............\SC
..............\..\Debug
..............\..\.....\BuildLog.htm,13050,2016-11-29
..............\..\.....\mt.dep,65,2016-11-29
..............\..\.....\SC.exe.embed.manifest,663,2016-05-25
..............\..\.....\SC.exe.embed.manifest.res,728,2016-05-25
..............\..\.....\SC.exe.intermediate.manifest,621,2016-11-29
..............\..\.....\SC.obj,56822,2016-11-29
..............\..\.....\SC.pch,3211264,2016-10-27
..............\..\.....\stdafx.obj,13825,2016-10-27
..............\..\.....\vc90.idb,1502208,2016-11-29
..............\..\.....\vc90.pdb,757760,2016-11-29
..............\..\ReadMe.txt,1153,2016-05-17
..............\..\SC.cpp,4869,2016-11-29
..............\..\SC.vcproj,7824,2016-10-27
..............\..\SC.vcproj.Hank-PC.Hank.user,1411,2016-10-27
..............\..\SC.vcproj.HANK-PC.panjunli.user,1411,2016-11-30
..............\..\stdafx.cpp,207,2016-05-17
..............\..\stdafx.h,233,2016-05-25
..............\..\targetver.h,498,2016-05-17
..............\SC.ncb,12487680,2016-11-30
..............\SC.sln,872,2016-05-17

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

发表评论

0 个回复

  • number
    将图片转化为BMP位图,然后通过逐行扫描识别图片中的数字。(A picture into a BMP bitmap, and then through the progressive scanned image in the figure.)
    2009-10-15 16:05:44下载
    积分:1
  • FacesAlign-2.3
    运用于人脸图像预处理中,主要实现功能有:人脸检测,人脸对齐,人脸图像放缩,人脸剪切。(Applied to the face image preprocessing, the main features are: face detection, face alignment, face image zoom, face cuts.)
    2013-10-23 21:26:50下载
    积分:1
  • las_tools
    一个非常实用的las文件处理工具,可以实现很多功能,如读写las文件,分类,分块,抽稀,合并,生成边界线,生成DEM,点云高度归一化,数据格式转换,波形数据压缩等(A very useful the las file processing tools, you can achieve a lot of features, such as read and write las file classification block Rarefy merge to generate the boundary line, generated DEM point cloud height normalized data format conversion, waveform data compression, etc.)
    2021-01-24 20:58:38下载
    积分:1
  • yumen
    数字图像处理应用程序,包括灰度化,点运算等(Digital image processing applications, including graying, point operations, etc.)
    2010-05-15 08:52:56下载
    积分:1
  • m11
    混合高斯(Mixture of Gaussian, MOG) 背景建模算法和Codebook 背景建模算法被广泛应用于监控视频的运动目标检测问题, 但混合高斯的球体模型通常假设RGB 三个分量是独立的, Codebook 的圆柱体模型假设背景像素值在圆柱体内均匀分布且背景亮度值变化方向指向坐标原点, 这些假设使得模型对背景的描述能力下降. 本文提出了一种椭球体背景模型, 该模型克服了混合高斯球体模型和Codebook 圆柱体模型假设的局限性, 同时利用主成分分析(Principal components analysis, PCA) 方法来刻画椭球体背景模型, 提出了一种基于主成分分析的Codebook 背景建模算法. 实验表明, 本文算法不仅能够更准确地描述背景像素值在RGB 空间中的分布特征, 而且具有良好的鲁棒性.(The background modeling algorithm of mixture of Gaussian (MOG) and codebook is widely used in moving object detection of surveillance video. However, the ball model of MOG usually assumes that the three components of RGB are independent, while the cylinder model of codebook assumes that the value of background pixel is distributed uniformly within the cylinder and the changing direction of brightness points to the origin of the coordinate system. These assumptions reduce the descriptive capability for background modeling. Therefore, the paper proposes an ellipsoid- based background model, which overcomes the MOG and codebook0s limitations. By using principal component analysis to depict the ellipsoid background model, a novel PCA-based codebook background modeling algorithm is proposed. Experiments show that this algorithm can not only give more accurate description of the distribution of background pixels but also have a better robustness.)
    2014-04-15 11:11:55下载
    积分:1
  • 平台基于visual studio2015 bilateralFilter
    平台基于visual studio2015,使用opencv函数实现双边滤波,进行图像处理(bilateral Filter based on opencv)
    2020-06-20 05:00:01下载
    积分:1
  • HOG-adaboost
    HOG adaboost pedestrian-detect
    2014-04-09 02:59:39下载
    积分:1
  • vc-driven-camera-capture-images
    该文档的主要功能就是利用vc编写一段代码实现摄像头采集图像。(The main function of the document is vc write a piece of code to achieve the camera capture images.)
    2013-04-02 10:43:48下载
    积分: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
  • jpeg2k
    说明:  JPEG2000 的一个实现,期中,wavelet.dll是提供的功能接口。(An implementation of JPEG2000, period, wavelet.dll is to provide a functional interface.)
    2010-05-04 17:00:01下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载