-
Notifications
You must be signed in to change notification settings - Fork 3
/
MiniPatch.h
44 lines (34 loc) · 1.12 KB
/
MiniPatch.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// -*- c++ -*-
// Copyright 2008 Isis Innovation Limited
//
// MiniPatch.h
//
// Declares MiniPatch class
//
// This is a simple pixel-patch class, used for tracking small patches
// it's used by the tracker for building the initial map
#ifndef __MINI_PATCH_H
#define __MINI_PATCH_H
#include <cvd/image.h>
#include <cvd/byte.h>
#include <cvd/utility.h>
#include <TooN/TooN.h>
#include <vector>
namespace PTAMM {
using namespace TooN;
struct MiniPatch
{
void SampleFromImage(CVD::ImageRef irPos, CVD::BasicImage<CVD::byte> &im); // Copy pixels out of source image
bool FindPatch(CVD::ImageRef &irPos, // Find patch in a new image
CVD::BasicImage<CVD::byte> &im,
int nRange,
std::vector<CVD::ImageRef> &vCorners,
std::vector<int> *pvRowLUT = NULL);
inline int SSDAtPoint(CVD::BasicImage<CVD::byte> &im, const CVD::ImageRef &ir); // Score function
static int mnHalfPatchSize; // How big is the patch?
static int mnRange; // How far to search?
static int mnMaxSSD; // Max SSD for matches?
CVD::Image<CVD::byte> mimOrigPatch; // Original pixels
};
}
#endif