#define _MATCHERS_H |
#define _MATCHERS_H |
|
|
#include <vector> |
#include <vector> |
|
#include <set> |
/* Matchters */ |
/* Matchters */ |
#include "PatMatch.h" |
#include "PatMatch.h" |
#include "BitmapFont.h" |
#include "BitmapFont.h" |
int x,y; |
int x,y; |
PatMatch pm; |
PatMatch pm; |
public: |
public: |
MatchResult(int xx, int yy,PatMatch& p) :x(xx),y(yy),pm(p){} |
MatchResult(int xx, int yy,const PatMatch& p) :x(xx),y(yy),pm(p){} |
|
vector<pixel> getPixels() const { |
|
return pm.getPixels(x,y); |
|
} |
}; |
}; |
|
|
class Matchers { |
class Matchers { |
Assumption() |
Assumption() |
.add(SimpleAssumption(YokoMask,Mid,1.5,1,0,0)) |
.add(SimpleAssumption(YokoMask,Mid,1.5,1,0,0)) |
.add(SimpleAssumption((PtypeMask)(TateMask|TatehaneMask|TatehidariMask|HidariMask),JointStart,1.5,1,270,2)))); |
.add(SimpleAssumption((PtypeMask)(TateMask|TatehaneMask|TatehidariMask|HidariMask),JointStart,1.5,1,270,2)))); |
|
pm.push_back(PatMatch(5,3, |
|
".@@.." |
|
"@@@@@" |
|
".....", |
|
Assumption() |
|
.add(SimpleAssumption(YokoMask,Mid,1.5,1,0,0)) |
|
.add(SimpleAssumption((PtypeMask)(TateMask|TatehaneMask|TatehidariMask|HidariMask),JointEnd,1.5,1,270,2)))); |
pm.push_back(PatMatch(5,4, |
pm.push_back(PatMatch(5,4, |
"....?" |
"....?" |
".@@.." |
".@@.." |
.add(SimpleAssumption(YokoMask,JointEnd,1.5,2,0,0)) |
.add(SimpleAssumption(YokoMask,JointEnd,1.5,2,0,0)) |
.add(SimpleAssumption(TateMask,JointEnd,1.5,1,270,2)))); |
.add(SimpleAssumption(TateMask,JointEnd,1.5,1,270,2)))); |
} |
} |
vector<MatchResult> findMatch(const BitmapFont& bf){ |
vector<MatchResult> findMatch(const BitmapFont& bf) const{ |
vector<MatchResult> mr; |
vector<MatchResult> mr; |
vector<PatMatch>::iterator it; |
vector<PatMatch>::const_iterator it; |
for(it=pm.begin();it!=pm.end();it++) |
for(it=pm.begin();it!=pm.end();it++) |
for(int y= -1; y<bf.getHeight(); y++) |
for(int y= -1; y<bf.getHeight(); y++) |
for(int x= -1;x<bf.getWidth();x++) |
for(int x= -1;x<bf.getWidth();x++) |
mr.push_back(MatchResult(x,y,*it)); |
mr.push_back(MatchResult(x,y,*it)); |
return mr; |
return mr; |
} |
} |
bool coverCheck(const BitmapFont& bf){ |
vector<pixel> notCovered(const BitmapFont& bf) const{ |
vector<MatchResult> mr=findMatch(bf); |
vector<MatchResult> mr=findMatch(bf); |
vector<set<int> > pixel2match(bf.pixels.size()); |
vector<set<int> > pixel2match(bf.getSize()); |
vector<set<int> > match2pixel(mr.size()); |
vector<set<int> > match2pixel(mr.size()); |
vector<MatchResult>::iterator it; |
vector<MatchResult>::iterator it; |
for(it=mr.begin();it!=mr.end();it++){ |
for(it=mr.begin();it!=mr.end();it++){ |
int n= it-mr-begin(); |
int n= it-mr.begin(); |
set<pixel> ps; |
vector<pixel> ps=(*it).getPixels(); |
hogehoge |
vector<pixel>::iterator ips; |
match2pixel[n].swap(ps); |
for(ips=ps.begin();ips!=ps.end();ips++){ |
|
int m=bf.getIndex(*ips); |
|
cout << '(' << ips->first << ',' << ips->second << ")\n"; |
|
assert(m != -1); |
|
match2pixel[n].insert(m); |
|
pixel2match[m].insert(n); |
|
} |
|
} |
|
vector<pixel> ret; |
|
for(int i=0;i<bf.getPixelSize();i++){ |
|
if(pixel2match[i].empty()) { |
|
ret.push_back(bf.getPixelAt(i)); |
|
} |
} |
} |
return true; |
return ret; |
} |
} |
}; |
}; |
ostream& operator<<(ostream &os,const Matchers &mt){ |
ostream& operator<<(ostream &os,const Matchers &mt){ |