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.
26 lines
553 B
26 lines
553 B
/*
|
|
* HomographyHelper
|
|
* Created by Elliot Woods on 26/11/2010.
|
|
* Edited by Krisjanis Rijnieks on 23/01/2016
|
|
*
|
|
* Based entirely on arturo castro's homography implementation
|
|
* Created 08/01/2010, arturo castro
|
|
*
|
|
* http://www.openframeworks.cc/forum/viewtopic.php?f=9&t=3121
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "ofMatrix4x4.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
class HomographyHelper {
|
|
public:
|
|
static void gaussian_elimination(float *input, int n);
|
|
static void findHomography(float src[4][2], float dst[4][2], float homography[16]);
|
|
};
|
|
|
|
}
|
|
}
|
|
|