stm32+ov7670数字识别


原理是X,Y轴等间隔采样,如果要识别字母的话估计要加大采样密度。当前采样密度是1/20。
资源截图
代码片段和文件信息
/**************************************************************************//**
 * @file     core_cm3.c
 * @brief    CMSIS Cortex-M3 Core Peripheral Access layer Source File
 * @version  V1.30
 * @date     30. October 2009
 *
 * @note
 * Copyright (C) 2009 ARM Limited. All rights reserved.
 *
 * @par
 * ARM Limited (ARM) is supplying this software for use with Cortex-M 
 * processor based microcontrollers.  This file can be freely distributed 
 * within development tools that are supporting such ARM based processors. 
 *
 * @par
 * THIS SOFTWARE IS PROVIDED “AS IS“.  NO WARRANTIES WHETHER EXPRESS IMPLIED
 * OR STATUTORY INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
 * ARM SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
 * CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
 *
 ******************************************************************************/

#include 

/* define compiler specific symbols */
#if defined ( __CC_ARM   )
  #define __ASM            __asm                                      /*!< asm keyword for ARM Compiler          */
  #define __INLINE         __inline                                   /*!< inline keyword for ARM Compiler       */

#elif defined ( __ICCARM__ )
  #define __ASM           __asm                                       /*!< asm keyword for IAR Compiler          */
  #define __INLINE        inline                                      /*!< inline keyword for IAR Compiler. Only avaiable in High optimization mode! */

#elif defined   (  __GNUC__  )
  #define __ASM            __asm                                      /*!< asm keyword for GNU Compiler          */
  #define __INLINE         inline                                     /*!< inline keyword for GNU Compiler       */

#elif defined   (  __TASKING__  )
  #define __ASM            __asm                                      /*!< asm keyword for TASKING Compiler      */
  #define __INLINE         inline                                     /*!< inline keyword for TASKING Compiler   */

#endif


/* ###################  Compiler specific Intrinsics  ########################### */

#if defined ( __CC_ARM   ) /*------------------RealView Compiler -----------------*/
/* ARM armcc specific functions */

/**
 * @brief  Return the Process Stack Pointer
 *
 * @return ProcessStackPointer
 *
 * Return the actual process stack pointer
 */
__ASM uint32_t __get_PSP(void)
{
  mrs r0 psp
  bx lr
}

/**
 * @brief  Set the Process Stack Pointer
 *
 * @param  topOfProcStack  Process Stack Pointer
 *
 * Assign the value ProcessStackPointer to the MSP 
 * (process stack pointer) Cortex processor register
 */
__ASM void __set_PSP(uint32_t topOfProcStack)
{
  msr psp r0
  bx lr
}

/**
 * @brief  Return the Main Stack Pointer
 *
 * @return Main Stack Pointer
 *
 * Return the curren

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         14  2013-07-30 23:04  ident_digit.gitignore

     文件        115  2013-07-31 01:07  ident_digitReadme.md

     文件       1906  2013-08-02 21:54  ident_digitUsersteer.c

     文件       6812  2013-08-12 16:12  ident_digitUsermain.c

     文件        287  2013-07-10 22:49  ident_digitUserled.h

     文件       3259  2011-04-04 19:03  ident_digitUserstm32f10x_conf.h

     文件       5794  2013-08-10 16:27  ident_digitUserstm32f10x_it.c

     文件       2086  2011-04-04 19:03  ident_digitUserstm32f10x_it.h

     文件       2036  2013-07-10 21:46  ident_digitUsersystick.c

     文件        564  2013-07-10 21:46  ident_digitUsersystick.h

     文件       6834  2013-08-10 17:02  ident_digitUserov7670.c

     文件       1441  2013-08-10 17:18  ident_digitUserfifo.h

     文件        603  2013-07-12 15:49  ident_digitUserworkqueue.c

     文件        261  2013-07-12 15:45  ident_digitUserworkqueue.h

     文件       2047  2013-08-01 00:11  ident_digitUserDelay.c

     文件        611  2013-08-01 00:11  ident_digitUserDelay.h

     文件      11289  2013-08-01 00:11  ident_digitUserFlash_program.c

     文件       1527  2013-08-01 00:11  ident_digitUserTouch.h

     文件       2222  2013-08-01 00:11  ident_digitUserflash_program.h

     文件       6282  2013-08-04 16:17  ident_digitUserisd4004.c

     文件        222  2013-08-02 17:46  ident_digitUserpwm.h

     文件       3662  2013-08-10 17:05  ident_digitUserSCCB.c

     文件        962  2013-08-02 23:59  ident_digitUserstep.h

     文件        155  2013-08-03 15:20  ident_digitUseradc.h

     文件       2266  2013-08-02 21:36  ident_digitUserpwm.c

     文件        189  2013-08-02 21:42  ident_digitUsersteer.h

     文件       2962  2013-08-03 15:40  ident_digitUseradc.c

     文件       6356  2013-08-03 00:03  ident_digitUserstep.c

     文件       4274  2013-08-05 15:11  ident_digitUserLCD12864.c

     文件       2044  2013-08-03 15:23  ident_digitUserlcd.h

............此处省略173个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)