码迷,mamicode.com
首页 >  
搜索关键字:aam alignment    ( 521个结果
NET format
The net file format is used to describe the axtNet data that underlie the net alignment annotations in the Genome Browser. For a detailed description ...
分类:Web程序   时间:2015-01-29 22:18:04    阅读次数:198
开源库
通用库/General LibraryOpenCV无需多言。RAVLRecognition And Vision Library. 线程安全。强大的IO机制。包含AAM。CImg很酷的一个图像处理包。整个库只有一个头文件。包含一个基于PDE的光流算法。图像,视频IO/Image, Video IOF...
分类:其他好文   时间:2015-01-28 12:49:04    阅读次数:158
POJ 1836 Alignment 枚举中间点双向求LIS
点击打开链接 Alignment Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 13590   Accepted: 4375 Description In the army, a platoon is composed by n soldiers...
分类:其他好文   时间:2015-01-25 16:44:36    阅读次数:194
axt alignment format
axt Alignment Format axt alignment files are produced from Blastz, an alignment tool available from Webb Miller's lab at Penn State University. The a....
分类:其他好文   时间:2015-01-22 17:02:07    阅读次数:407
UNIX内存管理理解——简版malloc实现
typedef long Align; /* for alignment to long boundary */union header { /* block header */ struct { union header *ptr; /* next block if on f...
分类:其他好文   时间:2015-01-22 01:29:46    阅读次数:194
UVa 1593 Alignment of Code(字符串)
题意  按要求对齐代码 字符串流的应用 #include using namespace std; const int N = 1005, M = 200; string s[N][M], line; int cw[M], cn[N]; int main() { int r = 0, c = 0; while(getline(cin, line)) {...
分类:其他好文   时间:2015-01-21 13:29:55    阅读次数:179
conky配置
alignment top_rightbackground yesborder_width 0cpu_avg_samples 2default_bar_size 160 5default_color greendefault_graph_size 25 170diskio_avg_samples 2...
分类:其他好文   时间:2015-01-20 20:13:23    阅读次数:242
内存对齐 (转)
1.引子 在结构中,编译器为结构的每个成员按其自身的自然对界(alignment)条件分配空间。各个成员按照它们被声明的顺序在内存中顺序存储,第一个成员的地址和整个结构的地址相同。 例如,下面的结构各成员空间分配情况(假设对齐方式大于2字节,即#pragma pack(n), n = 2,4,8.....
分类:其他好文   时间:2015-01-14 12:24:28    阅读次数:174
编写跨平台代码之memory alignment
编写网络包(存储在堆上)转换程序时,在hp-ux机器上运行时会遇到si_code: 1 - BUS_ADRALN - Invalid address alignment. Please refer to the following link that helps in handling unal.....
分类:其他好文   时间:2015-01-12 17:23:48    阅读次数:209
字节对其小结
开发中会遇到字节不对齐需要对齐操作,下面是此类的两个小结,以便以后开发中直接使用。 #define?ALIGNMENT(__v, __bytes) do{ int _i=__v%__bytes; if(_i) __v+=(__bytes-_i); }while(0) _v是表示的长度,__byt...
分类:其他好文   时间:2015-01-10 16:46:36    阅读次数:160
521条   上一页 1 ... 45 46 47 48 49 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!