root/as3/Marilena/trunk/src/jp/maaash/ObjectDetection/ObjectDetectorEvent.as

リビジョン 567, 2.5 kB (コミッタ: mash, コミット時期: 4 年 前)

[Marilena]initial import of Marilena, Object Detection in AS3

Line 
1 //
2 // Project Marilena
3 // Object Detection in Actionscript3
4 // based on OpenCV (Open Computer Vision Library) Object Detection
5 //
6 // Copyright (C) 2008, Masakazu OHTSUKA (mash), all rights reserved.
7 // contact o.masakazu(at)gmail.com
8 //
9 // Redistribution and use in source and binary forms, with or without modification,
10 // are permitted provided that the following conditions are met:
11 //
12 //   * Redistribution's of source code must retain the above copyright notice,
13 //     this list of conditions and the following disclaimer.
14 //
15 //   * Redistribution's in binary form must reproduce the above copyright notice,
16 //     this list of conditions and the following disclaimer in the documentation
17 //     and/or other materials provided with the distribution.
18 //
19 // This software is provided by the copyright holders and contributors "as is" and
20 // any express or implied warranties, including, but not limited to, the implied
21 // warranties of merchantability and fitness for a particular purpose are disclaimed.
22 // In no event shall the Intel Corporation or contributors be liable for any direct,
23 // indirect, incidental, special, exemplary, or consequential damages
24 // (including, but not limited to, procurement of substitute goods or services;
25 // loss of use, data, or profits; or business interruption) however caused
26 // and on any theory of liability, whether in contract, strict liability,
27 // or tort (including negligence or otherwise) arising in any way out of
28 // the use of this software, even if advised of the possibility of such damage.
29 //
30 package jp.maaash.ObjectDetection
31 {
32         import flash.events.Event;
33         import flash.geom.Rectangle;
34         public class ObjectDetectorEvent extends Event {
35                 public static const DETECTION_COMPLETE         :String = "ObjectDetectorEvent_DETECTION_COMPLETE";
36                 public static const FACE_FOUND                 :String = "ObjectDetectorEvent_FACE_FOUND";
37                 public static const HAARCASCADES_LOADING       :String = "ObjectDetectorEvent_HAARCASCADES_LOADING";
38                 public static const HAARCASCADES_LOAD_COMPLETE :String = "ObjectDetectorEvent_HAARCASCADES_LOAD_COMPLETE";
39                 public static const DETECTION_START            :String = "ObjectDetectorEvent_DETECTION_START";
40
41                 public var rect         :Rectangle;
42                 public var rects        :Array;
43                 public function ObjectDetectorEvent( t :String ) {
44                         super(t);
45                 }
46                 public override function clone():Event {
47                         var ev :ObjectDetectorEvent = new ObjectDetectorEvent( type );
48                         ev.rect  = rect;
49                         ev.rects = rects;
50                         return ev;
51                 }
52         }
53 }
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。