• 大小: 24.88MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-10
  • 语言: 其他
  • 标签: OPENCV  车牌识别  

资源简介

当今世界上最有用的开源代码,如识别国内车牌需重新训练。

资源截图

代码片段和文件信息

//
//  AppDelegate.m
//  ANPR
//
//  Created by Christian Roman on 29/08/13.
//  Copyright (c) 2013 Christian Roman. All rights reserved.
//

#import “AppDelegate.h“
#import “MainViewController.h“

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithframe:[[UIScreen mainScreen] bounds]];
    
    MainViewController *mainViewController = [[MainViewController alloc] initWithNibName:NSStringFromClass([MainViewController class]) bundle:nil];
    [self.window setRootViewController:mainViewController];
    
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks disable timers and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources save user data invalidate timers and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-08-29 20:56  ANPR-master\
     文件         224  2013-08-29 20:56  ANPR-master\.gitignore
     目录           0  2013-08-29 20:56  ANPR-master\ANPR.xcodeproj\
     文件       52320  2013-08-29 20:56  ANPR-master\ANPR.xcodeproj\project.pbxproj
     目录           0  2013-08-29 20:56  ANPR-master\ANPR.xcodeproj\project.xcworkspace\
     文件         149  2013-08-29 20:56  ANPR-master\ANPR.xcodeproj\project.xcworkspace\contents.xcworkspacedata
     目录           0  2013-08-29 20:56  ANPR-master\ANPR\
     文件        1168  2013-08-29 20:56  ANPR-master\ANPR\ANPR-Info.plist
     文件         496  2013-08-29 20:56  ANPR-master\ANPR\ANPR-Prefix.pch
     文件         283  2013-08-29 20:56  ANPR-master\ANPR\AppDelegate.h
     文件        2365  2013-08-29 20:56  ANPR-master\ANPR\AppDelegate.m
     文件       18594  2013-08-29 20:56  ANPR-master\ANPR\Default-568h@2x.png
     文件        6540  2013-08-29 20:56  ANPR-master\ANPR\Default.png
     文件       16107  2013-08-29 20:56  ANPR-master\ANPR\Default@2x.png
     文件         428  2013-08-29 20:56  ANPR-master\ANPR\ImageProcessingImplementation.h
     文件        7110  2013-08-29 20:56  ANPR-master\ANPR\ImageProcessingImplementation.mm
     文件         317  2013-08-29 20:56  ANPR-master\ANPR\ImageProcessingProtocol.h
     文件        3515  2013-08-29 20:56  ANPR-master\ANPR\ImageProcessor.cpp
     文件         717  2013-08-29 20:56  ANPR-master\ANPR\ImageProcessor.h
     文件         353  2013-08-29 20:56  ANPR-master\ANPR\MainViewController.h
     文件        4216  2013-08-29 20:56  ANPR-master\ANPR\MainViewController.m
     文件       15530  2013-08-29 20:56  ANPR-master\ANPR\MainViewController.xib
     文件         757  2013-08-29 20:56  ANPR-master\ANPR\UIImage+OpenCV.h
     文件        4967  2013-08-29 20:56  ANPR-master\ANPR\UIImage+OpenCV.mm
     文件         262  2013-08-29 20:56  ANPR-master\ANPR\UIImage+operation.h
     文件        3526  2013-08-29 20:56  ANPR-master\ANPR\UIImage+operation.m
     目录           0  2013-08-29 20:56  ANPR-master\ANPR\dependencies\
     目录           0  2013-08-29 20:56  ANPR-master\ANPR\dependencies\include\
     目录           0  2013-08-29 20:56  ANPR-master\ANPR\dependencies\include\leptonica\
     文件      211495  2013-08-29 20:56  ANPR-master\ANPR\dependencies\include\leptonica\allheaders.h
     文件        2131  2013-08-29 20:56  ANPR-master\ANPR\dependencies\include\leptonica\alltypes.h
............此处省略286个文件信息

评论

共有 条评论