Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 namespace cpl_visual_features
00011 {
00012 
00013 
00014 
00015 #define BIG 100000
00016 
00017 
00018 
00019 typedef int LapRow;
00020 typedef int LapCol;
00021 typedef float LapCost;
00022 
00023 
00024 
00025 extern LapCost lap(int dim, LapCost **assigncost,
00026                     LapCol *rowsol, LapRow *colsol, LapCost *u, LapCost *v);
00027 
00028 extern void checklap(int dim, LapCost **assigncost,
00029                      LapCol *rowsol, LapRow *colsol, LapCost *u,
00030                      LapCost *v);
00031 };