资源简介
基于颜色车牌检测(opencv)
代码片段和文件信息
/*利用HSV颜色车牌定位*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “cv.h“
#include “highgui.h“
#include “cxcore.h“
int myOtsu(const IplImage *frame)
{
#define GrayScale 256 //frame灰度级
int width = frame->width;
int height = frame->height;
int pixelCount[GrayScale]={0};
float pixelPro[GrayScale]={0};
int i j pixelSum = width * height threshold = 0;
uchar* data = (uchar*)frame->imageData;
//统计每个灰度级中像素的个数
for(i = 0; i < height; i++)
{
for(j = 0;j < width;j++)
{
pixelCount[(int)data[i * width + j]]++;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5836 2016-08-29 11:03 carplatecolor\main.cpp
文件 1035 2016-05-31 15:53 carplatecolor\opencvdemo.pro
文件 23615 2016-07-05 13:55 carplatecolor\opencvdemo.pro.user
目录 0 2016-08-29 11:04 carplatecolor
----------- --------- ---------- ----- ----
30486 4
相关资源
- INA226电流检测的代码
- 嵌入式开发ov2460摄像机检测
- DS18b20 温度检测液晶显示-温度可调上
- 温度检测(DS8B20)
- U盘自动检测和拷贝
- MIT人脸检测图像库
- C++实战源码-检测单元格中的单词拼写
- C++ 检测是否安装声卡
- C++ 检测软驱是否有软盘
- C++ 检测TCP_IP协议是否安装
- c++ 检测两个数是否为亲和数
- 一个登入器检测帐密的源码
- c++ 检测文件是否存在
- 检测人脸并截取出来另存为图片
- linux下用C编写的OCI连接Oracle数据库程
- C++ 检测系统启动模式
- C++ 检测系统中安装的协议
- opencv harris角点检测
- 通过两对红外对管检测进出人流量 具
- 基于stm32f103心率检测
- c++ 检测windows机型
- 全系统驱动变速帝王
- 基于opencv的肤色检测
- 边缘检测多尺度opencv
- 史上最快人脸检测系统超越OpenCV
- 检测图片中的简单几何图形,如三角
- 图像边缘检测7种算子代码
- 光流法运动检测代码C++,opencv
- 运动目标实时检测效果
- c++ 车辆牌照检测
评论
共有 条评论