资源简介
读写,绘制斯坦福大学ply点云数据的源代码,普通的图形绘制软件如Maya,SolideWork无法读取该类数据,是一个遗憾.

代码片段和文件信息
/* ----------------------------------------------------------------------
* RPly library read/write PLY files
* Diego Nehab Princeton University
* http://www.cs.princeton.edu/~diego/professional/rply
*
* This library is distributed under the MIT License. See notice
* at the end of this file.
* ---------------------------------------------------------------------- */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “rply.h“
/* ----------------------------------------------------------------------
* Constants
* ---------------------------------------------------------------------- */
#define WORDSIZE 256
#define LINESIZE 1024
#define BUFFERSIZE (8*1024)
typedef enum e_ply_io_mode_ {
PLY_READ
PLY_WRITE
} e_ply_io_mode;
static const char *const ply_storage_mode_list[] = {
“binary_big_endian“ “binary_little_endian“ “ascii“ NULL
}; /* order matches e_ply_storage_mode enum */
static const char *const ply_type_list[] = {
“int8“ “uint8“ “int16“ “uint16“
“int32“ “uint32“ “float32“ “float64“
“char“ “uchar“ “short“ “ushort“
“int“ “uint“ “float“ “double“
“list“ NULL
}; /* order matches e_ply_type enum */
/* ----------------------------------------------------------------------
* Property reading callback argument
*
* element: name of element being processed
* property: name of property being processed
* nelements: number of elements of this kind in file
* instance_index: index current element of this kind being processed
* length: number of values in current list (or 1 for scalars)
* value_index: index of current value int this list (or 0 for scalars)
* value: value of property
* pdata/idata: user data defined with ply_set_cb
*
* Returns handle to ply file if succesful NULL otherwise.
* ---------------------------------------------------------------------- */
typedef struct t_ply_argument_ {
p_ply_element element;
long instance_index;
p_ply_property property;
long length value_index;
double value;
void *pdata;
long idata;
} t_ply_argument;
/* ----------------------------------------------------------------------
* Property information
*
* name: name of this property
* type: type of this property (list or type of scalar value)
* length_type value_type: type of list property count and values
* read_cb: function to be called when this property is called
*
* Returns 1 if should continue processing file 0 if should abort.
* ---------------------------------------------------------------------- */
typedef struct t_ply_property_ {
char name[WORDSIZE];
e_ply_type type value_type length_type;
p_ply_read_cb read_cb;
void *pdata;
long idata;
} t_ply_property;
/* ----------------------------------------------------------------------
* Element information
*
* name: name of thi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5151 2005-01-16 06:48 读写ply文件\etc\convert.c
文件 1273 2005-01-16 06:48 读写ply文件\etc\dump.c
文件 267 2005-01-16 06:48 读写ply文件\etc\input.ply
文件 2455 2005-01-16 06:48 读写ply文件\etc\sconvert.c
文件 1077 2005-01-16 06:48 读写ply文件\LICENSE
文件 33138 2005-01-16 06:48 读写ply文件\manual\manual.html
文件 950 2005-01-16 06:48 读写ply文件\manual\reference.css
文件 6232 2005-01-16 06:48 读写ply文件\manual\rply.png
文件 51390 2005-01-16 06:48 读写ply文件\rply.c
文件 15201 2005-01-16 06:48 读写ply文件\rply.h
目录 0 2011-03-04 17:48 读写ply文件\etc
目录 0 2011-03-04 17:48 读写ply文件\manual
目录 0 2011-03-04 17:48 读写ply文件
----------- --------- ---------- ----- ----
117134 13
- 上一篇:不死uboot-flash脚本
- 下一篇:PAT甲级练习题155道分类xmind
相关资源
- 用Beckhoff(倍福)PLC读写巴鲁夫RFID
- grads绘制雨量(GRID.GRD)
- Bresenham算法绘制线段并利用“橡皮筋
- STM32基于rt_thread操作系统的SDHC卡文件
- 51模拟SPI读写SD卡(包括Fat和Fat32文件
- ply格式文件的读写程序
- 德卡D8读写器关于读写感应卡的一些代
- 绘制曲线图软件
- MFC中OpenGL面和体的绘制以及动画效果
- 串口绘制曲线 将收到的数据进行曲线
- 用PIC16F877实现EEPROM读写程序
- usb调试程序 对USB设备进行数据的读写
- 对大文件的读写的两个类C#
- 声音文件播放程序.可以播放WAV文件并
- TMS320F2812_FLASH读写实例
- stm32 用SPI 方式读写 SDHC
- VC 实现鼠标画矩形和绘制直线
- 印度泰米尔纳德邦Noyyal流域利用GIS和
- 易语言读写加密配置项源码
- 明泰urf r330读写软件 官方版
- Labwindows/CVI下Excel打开、读写操作
- delphi rfid 读写卡读卡器/写卡器源程序
- RFID读写demo
- 校园一卡通系统中RFID读写器的设计
- css3绘制可爱卡通脸部表情特效
- flutter窗口初始和绘制流程详析
- W25Q256四字节模式读写程序
- CH341编程器软件1.30支持32M
- 单片机实现通用存贮器IC卡读写
- OFC3发卡器IC卡读写器驱动程序 v1.4 官
评论
共有 条评论