首页 文章 精选 留言 我的

精选列表

搜索[数据资源],共10032篇文章
优秀的个人博客,低调大师

android:用getIdentifier()获取资源Id

项目中一问题,从获取图片名称后,然后调用图片。直接用R.drawable.?无法调用。解决: 主要由两种方法,个人建议第二种。1. 不把图片放在res/drawable下,而是存放在src某个package中(如:com.drawable.resource),这种情况下的调用方法为:String path = "com/drawable/resource/imageName.png";InputStream is = getClassLoader().getResourceAsStream(path);Drawable.createFromStream(is, "src");2. 如果还是希望直接使用res/drawable中的图片,就需要通过下面的方法了:假设创建工程的时候,填写的package名字为:com.test.imageint resID = getResources().getIdentifier("imageName", "drawable", "com.test.image");Drawable image = getResources().getDrawable(resID); 本文转自老Zhan博客园博客,原文链接:http://www.cnblogs.com/mybkn/archive/2012/05/30/2526375.html,如需转载请自行联系原作者

优秀的个人博客,低调大师

人脸识别网上资源列表(装载)

http://sourceforge.net/apps/mediawiki/pyvision/index.php?title=FaceL:_Facile_Face_Labeling 原文地址: Related Open Source and Demo Software This is a short list of free or cheap webcam face recognition systems. The list includes some open source and commercial systems. OpenCV- OpenCV includes sample code that captures images from a web cam and detects faces. This is the same face detector used in FaceL. (MacOS, Windows, Linux) PittPatt Face Tracker- Free webcam demo of the PittPatt face tracking SDK. (MacOS, Windows) NeuroTechnology- Verilook commercial face recognition SDK demo. (Windows) Malic- Open source face recognition system usingOpenCVfor face detection and theCSU Face Recognition Evaluation Systemfor face identification. (Linux) Real Time Face Tracking and Recognition (RTFTR)- This is an open source linux based face recognition system designed to evaluate multiple detection and recognition algorithms. It won second place in the Open Software Challenge Nepal 2009. (Linux) PAM Face Authentication Library- A Google Summer of Code project using LBP and MACE Filters. David Cristinacce Face Detection Demo- Open source face detection demo. (Windows) Chesnokov Yuriy Face Detection Demo- Open source face detection demo. (Windows) KeyLemon- Login to your computer using your face. (Windows) BananaSecurity- Login to your computer using your face. (Windows)

资源下载

更多资源
Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

Spring

Spring

Spring框架(Spring Framework)是由Rod Johnson于2002年提出的开源Java企业级应用框架,旨在通过使用JavaBean替代传统EJB实现方式降低企业级编程开发的复杂性。该框架基于简单性、可测试性和松耦合性设计理念,提供核心容器、应用上下文、数据访问集成等模块,支持整合Hibernate、Struts等第三方框架,其适用范围不仅限于服务器端开发,绝大多数Java应用均可从中受益。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册