• 大小: 4.53KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: 检测  

资源简介

基于颜色车牌检测(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


评论

共有 条评论