1. image filter : 项目描述: Image filtering allows you to apply various effects on photos. after open the app, customer can pick a image from Sd card ori....
分类:
其他好文 时间:
2014-10-31 06:21:50
阅读次数:
262
int?write_JPEG_file?(char?*?filename,?unsigned?char*?yuvData,?int?quality,int?image_width,int?image_height)
{
?????struct?jpeg_compress_struct?cinfo;
?
?????struct?jpeg_er...
分类:
其他好文 时间:
2014-10-30 21:06:50
阅读次数:
252
在Eclipse中处理图片时,需要引入两个包:importcom.sun.p_w_picpath.codec.jpeg.JPEGCodec;importcom.sun.p_w_picpath.codec.jpeg.JPEGImageEncoder;报错,编译不通过解决办法:Eclipse默认把这些受访问限制的API设成了ERROR。只要把Windows-Preferences-Java-Complicer-Error..
分类:
其他好文 时间:
2014-10-30 19:25:05
阅读次数:
189
题目:You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?在原址上进行将矩阵旋转90度。如...
分类:
其他好文 时间:
2014-10-30 19:03:07
阅读次数:
208
//把Image转换成字符串 string ImageToStr(Image img) { using (MemoryStream msStream=new MemoryStream()) { Bi...
分类:
其他好文 时间:
2014-10-30 16:48:34
阅读次数:
109
Android-Universal-Image-Loader三大组件DisplayImageOptions、ImageLoader、ImageLoaderConfiguration详解
【译】UNIVERSAL IMAGE
LOADER. PART 3---ImageLoader详解
从代码分析Android-Universal-Image-Loader的图片加载、显示流程
【译...
分类:
移动开发 时间:
2014-10-30 15:22:31
阅读次数:
175
如果采用以下方法把照片的命名方式做了修改,会导致连拍照片不能以动画形式播放,
在alps\packages\apps\camera\res\values\camera_string.xml中
把image_file_name_format对应的字符'IMG'_yyyyMMdd_HHmmss进行修改,比如修改为'Power'_yyyyMMdd_HHmmss。
修改:
alps\package...
分类:
移动开发 时间:
2014-10-30 13:38:42
阅读次数:
246
人脸检测做训练当然可以用OpenCV训练好的xml,但是岂止于此。我们也要动手做!~
首先是样本的选取。样本的选取很重要,找了很久才发现几个靠谱的。
人脸样本:http://www.vision.caltech.edu/Image_Datasets/Caltech_10K_WebFaces/ 网上抓取的逾10,000个人脸样本
http://...
分类:
其他好文 时间:
2014-10-30 10:22:34
阅读次数:
1343