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.
20 lines
508 B
20 lines
508 B
//----------------------------------------------------------------------------
|
|
// Copyright (C) 2004-2017 by EMGU Corporation. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Emgu.CV.VideoStab
|
|
{
|
|
/*
|
|
public enum MotionModel
|
|
{
|
|
TRANSLATION = 0,
|
|
TRANSLATION_AND_SCALE = 1,
|
|
LINEAR_SIMILARITY = 2,
|
|
AFFINE = 3,
|
|
HOMOGRAPHY = 4,
|
|
UNKNOWN = 5
|
|
}*/
|
|
}
|