mirror of https://github.com/emgucv/emgucv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
771 B
30 lines
771 B
//----------------------------------------------------------------------------
|
|
// Copyright (C) 2004-2012 by EMGU. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Emgu.Util;
|
|
|
|
namespace Emgu.CV.VideoStab
|
|
{
|
|
public class GaussianMotionFilter : UnmanagedObject
|
|
{
|
|
/*
|
|
public GaussianMotionFilter()
|
|
: this(15, -1.0f)
|
|
{
|
|
}*/
|
|
|
|
public GaussianMotionFilter()
|
|
{
|
|
_ptr = VideoStabInvoke.GaussianMotionFilterCreate();
|
|
}
|
|
|
|
protected override void DisposeObject()
|
|
{
|
|
VideoStabInvoke.GaussianMotionFilterRelease(ref _ptr);
|
|
}
|
|
}
|
|
}
|