-
adaptivethresholdImageSeg_TextDetection
说明: 自适应阈值的图像分割及文字提取技术,matlab,对学习基本原理有帮助(Adaptive threshold for image segmentation and text extraction technology, matlab, the basic principles of learning will help)
- 2008-11-17 11:25:53下载
- 积分:1
-
sift----matlab
sift算法的完整matlab程序,本人测试过,很好,稍加修改即可!(complete sift algorithm matlab program, I tested, well, a few minor changes!)
- 2012-02-28 10:09:41下载
- 积分:1
-
reproject_mod04
批处理与重投影MODIS MOD04 数据(Reproject MODIS s mod04 data)
- 2021-04-21 20:38:49下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
车牌号识别3
说明: 图像识别预处理,用主要用于汽车车牌号识别(Image recognition for license plate recognition)
- 2020-12-28 16:41:37下载
- 积分:1
-
CameraCalibration(zhang)
说明: 张正友相机参数标定matlab程序,压缩包中包括一份张正友标定的原文论文,一个附带实验数据和图像的matlab程序。(Zhang Zhengyou matlab camera calibration procedures, compressed package includes a calibration Zhang Zhengyou original papers, 1 with experimental data and image matlab program.)
- 2010-03-23 11:23:02下载
- 积分:1
-
血管524 (2)
说明: 最大类间差法对视网膜血管进行分割,亲测有效。(The method of maximum class difference is effective for the segmentation of retinal vessels.)
- 2020-04-30 15:42:16下载
- 积分:1
-
pre_process_gui
说明: 实现指纹识别中的指纹图像预处理中的方向场,细化等,含有一个GUI界面(pre-process of figure print image)
- 2010-04-01 11:47:10下载
- 积分:1
-
daima
题目:
八宝粥的生产过程中需要用到大量的红豆(红蚕豆),而实际上从红豆产地购买得到的红豆中会参杂一些杂物和不合格红豆。为了保证八宝粥的质量,需要对红豆进行筛选,去除不合格红豆和其它杂物。目前国内在红豆筛选工序上仍然使用人工筛选的方式,存在人工成本高、精确度差、劳动强度大等缺点。因此八宝粥生产厂商迫切需求开发一款能够自动实现红豆筛选的自动化筛选机。针对上述需求,请设计筛选机中的基于可见光图像的红豆筛选算法,该算法应尽可能的准确的找到参杂在红豆原料中的不合格红豆和杂物。
附件包括两个不同实验环境下拍摄得到的红豆相关图片样本库,实验环境分别为自然光照条件和灯光条件。每个条件下的样本库包括合格、不合格、杂物和混合四类样本的图像,其中合格、不合格以及杂物的图像可用来训练或建模,混合类图像用来测试算法的准确性和实时性。同学可在自然光照环境下的样本库或者灯光条件下的样本库中任选其一,用于解决上述问题。
作业提交格式包括以下四个内容:
一、 问题分析
二、 算法设计
三、 实验结果(将自己选择的样本库中的混合样本图片中的样本个体进行分类,并给出可视化的分类结果。)
(Title:Use a lot of red bean production process of eight-treasure porridge ( red bean ), but in fact from the Red areas available in red bean can blend some sundries and unqualified red bean. In order to ensure the quality of eight-treasure porridge, the need for screening of red bean, red bean and other debris removal is not qualified. At present in the domestic bean screening process still use manual screening method, has the disadvantages of high labor costs, poor accuracy, high labor intensity. Therefore, eight-treasure porridge manufacturers need to develop a can achieve automatic bean screening automatic screening machine. According to the above requirements, please design screening machine selection algorithm based on visible light image of the red, the algorithm should be as accurate as possible to find the mixed in the bean raw materials in the unqualified red bean and debris.Accessories include captured in two different experimental environment of the red bean image sample dat)
- 2013-03-11 21:10:47下载
- 积分:1
-
c# bmp图片转 jpg格式实例 附源码
c# bmp图片转 jpg格式实例 附源码
- 2013-05-19下载
- 积分:1