码迷,mamicode.com
首页 >  
搜索关键字:image    ( 48784个结果
How to set background image to a LinearLayout using Android-Universal-Image-Loader ? #594
You can do it by 2 ways:use loadImage(...) and set layout background in listener (ImageLoadingListener.onLoadingComplete(..., Bitmap loadedImage, ...)...
分类:移动开发   时间:2014-10-09 00:49:17    阅读次数:251
java生成二维码
package Test;import java.awt.Graphics2D;import java.awt.geom.AffineTransform;import java.awt.image.BufferedImage;import com.google.zxing.LuminanceSour...
分类:编程语言   时间:2014-10-09 00:04:17    阅读次数:360
cocos2dx[3.2]小知识——Sprite转换为Image
将Sprite转换为Image。// //获取精灵的CCImage Image*HelloWorld::createImageFromSprite(Sprite*sp) { Sprite*pNewSpr=Sprite::createWithSpriteFrame(sp->getSpriteFrame()); pNewSpr->setAnchorPoint(Vec2::ZERO); RenderTexture*pRender=RenderTexture::create(pN..
分类:其他好文   时间:2014-10-08 16:17:06    阅读次数:316
PS 滤镜——运动模糊
%%%%%  motion blur clc; clear all; close all; Image=imread('4.jpg'); Image=ouble(Image); theta=pi/4; len=20; row=floor(len*sin(theta))+1; col=floor(len*cos(theta))+1; motion_f1(1:row,1:c...
分类:其他好文   时间:2014-10-08 16:02:05    阅读次数:237
Image Retrieval Q&A
1、常用的图像匹配算法及优缺点有哪些?基于灰度相关,基于特征,基于关系三个层次,基于灰度相关的图像匹配较常用,基于特征匹配效果最好,但是算法复杂,耗时长,难以实现实时性,基于关系的匹配算法建立语义的网络,是人工智能技术在图像处理中的应用,目前为止无突破性的进展。2、早期的CBIR中都是使用全局特征,...
分类:其他好文   时间:2014-10-08 14:28:25    阅读次数:240
等比压缩图片
+ (UIImage *)thumbnailWithImageWithoutScale:(UIImage *)image ?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? size:(CGSize)asize { ? ? UIImage *newimage = nil; ?? ? ? ? if (image)...
分类:其他好文   时间:2014-10-08 13:29:45    阅读次数:213
单独调用kindeditor的多图上传组件实现多图上传
本例是单独调用kindeditor多图上传的组件来进行多图上传,兼容性你懂得!官方示例地址:http://kindeditor.net/ke4/examples/multi-image-dialog.htmlHtmlJS
分类:其他好文   时间:2014-10-08 13:05:45    阅读次数:177
创建BitMap
Bitmap pResource=(Bitmap)Image.FromFile("..\\..\\res\\animal.bmp");Bitmap pBitMap = new Bitmap(36, 36); //BitMap大小 Graphics pGraphics = ...
分类:其他好文   时间:2014-10-08 12:53:05    阅读次数:217
.NET Framework 3.5 安装错误:0x800F0906、0x800F081F、0x800F0907
使用Add-WindowsFeature 照成的问题I get the failure below.. If I pick the Server 2012 R2 image from 8/15/2014 the same command works fine.Name[0]: PS C:\Users...
分类:Web程序   时间:2014-10-08 12:31:05    阅读次数:480
leetcode——Rotate Image(二维数组顺时针旋转90度)
题目: You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? 分析: 二维数...
分类:其他好文   时间:2014-10-07 16:44:13    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!