https://gallery.technet.microsoft.com/DiskSpd-a-robust-storage-6cd2f223http://blogs.technet.com/b/josebda/archive/2014/10/13/diskspd-powershell-and-st...
分类:
其他好文 时间:
2015-10-01 20:30:18
阅读次数:
358
例子从样本数据中生成层次聚类树这个例子显示了如果利用样本数据生成层次聚类数,并用3维散点图展示该聚类。产生样本数据矩阵,其中的随机数由标准均匀分布(U(0,1))生成。 rng('default'); % For reproducibilty X = [gallery('uniformdata'.....
分类:
其他好文 时间:
2015-09-23 15:05:03
阅读次数:
196
1. REMOVE (HIDE) A SPECIFIC SKINTraverse through thegallery groupcollection, then through itsgallery itemcollection and hide a corresponding item:priv...
分类:
其他好文 时间:
2015-09-23 10:34:31
阅读次数:
206
Android优化 最常见的就是ListView, Gallery, GridView, ViewPager 的大数据优化 图片优化 访问网络的优化优化的原则: 数据延迟加载 分批加载 本地缓存数据优化 1).复用contentview 2).创建static class ViewH...
分类:
移动开发 时间:
2015-09-22 18:42:41
阅读次数:
157
第一部分 个性化控件(View) 主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、 GridView、ImageView、ProgressBar、TextView、ScrollView、TimeView、TipView、 FlipView、Col...
分类:
移动开发 时间:
2015-09-18 14:00:04
阅读次数:
698
GitHub 优秀的 Android 开源项目转自:http://blog.csdn.net/shulianghan/article/details/18046021主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridVi...
分类:
移动开发 时间:
2015-09-17 17:24:48
阅读次数:
483
开始找工作了,随时会把复习笔记粘上来。今天用OpenCV提供的TrackBar实现一个Image Gallery.1. 在OpenCV的HighGUI模块中,提供了slider(滑动条)的一种形式,称为trackbar,可以用一个int类型指定可滑动最大值。由cv::CreateTrackbar(....
分类:
其他好文 时间:
2015-09-15 14:19:49
阅读次数:
388
首先自定义Gallery实现一次只能滑动一个页面代码如下:public class MGalleryView extends Gallery{public MGalleryView(Context context, AttributeSet attrs) {super(context, attrs)...
分类:
移动开发 时间:
2015-09-12 12:05:01
阅读次数:
202
Lets apply the Best practices to the Image Gallery ./*** index.html ***/ Image Gallery Snapshiots Fire...
分类:
其他好文 时间:
2015-09-10 12:44:40
阅读次数:
257
题意:
给出一个n个点的多边形,求多边形核的面积;
多边形的核即为多边形内部的点集,使其中的点可以看到多边形的任意顶点和边;
n
题解:
这应该也算是模板题的一种吧;
求多边形核的方法现在是O(nlogn)的;
将所有的直线按极角排序(math库中atan2()函数),然后线性的在双端队列里面搞搞;
这样求出了半平面交的边集,也顺带求出了点集;
求面积的话就直接叉积扫...
分类:
其他好文 时间:
2015-09-07 22:52:27
阅读次数:
262