fileMotionFilter.h
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
/*
*  MotionFilter.h
*
*  Created by Daisuke Nogami on Sep, 05.
*  opyright 2005 Daisuke Nogami [null-null.net]. Some rights reserved.
*/
 
#pragma once
 
// selfmade class
#include "CellSet.h"
#include "DirectShow.h"
#include "RainFilter.h"
#include "AirstreamFilter.h"
 
class MotionFilter{
private:
  DirectShow* ds;
 
  void getRgbAt( float x, float y, unsigned char* rgb );
 
public:
  MotionFilter( DirectShow* ds );
 
  void attach( CellSet* cellset, RainFilter* rfilter );
  void attach( CellSet* cellset, AirstreamFilter* asfilter );
};
[トップ] [一覧] [最終更新] [検索] [バックアップ]