• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ


File Info

Rev. deec2c46d1e4b89d37ea473242737695cab87712
크기 661 bytes
Time 2012-03-25 16:55:28
Author masakih
Log Message

[Mod] PPCサポートをやめた

Content

//
//  AllScanners.h
//  Pediabase
//
//  Created by Farranco on 11/5/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "MyScanner.h"
#import "ZBarScanner.h"
#import "SampleCIView.h"
#import <QTKit/QTKit.h>

@class ZbarScanner, MyScanner;

@interface AllScanners : NSObject {
	unsigned char * grayScale;	
	NSInteger width, height; 
	float intialOffsetMultiplier;
	
	ZbarScanner *zbarScanner; 
	MyScanner *myScanner;
}

- (id)initWithCGRect:(CGRect)aRect;
- (NSString *)processVideoBuffer:(CVImageBufferRef)pixelBuffer;

- (void)clearGlobalFrequency;
- (void)setPreviewView:(SampleCIView *)aView;

@end