|
tuple | bootstrapping.trainset1 = easy.createRunSet( "corporate_logos" ) |
|
tuple | bootstrapping.trainer = easy.getTrainer( "BOW_Trainer") |
|
tuple | bootstrapping.model1 = easy.train( trainer, trainset1 ) |
|
tuple | bootstrapping.testset1 = easy.createRunSet( "testImg", "UNPURPOSED" ) |
|
tuple | bootstrapping.detector = easy.getDetector( "BOW_Detector" ) |
|
tuple | bootstrapping.result1 = easy.detect( detector, model1, testset1 ) |
|
string | bootstrapping.reject_folder = easy.CVAC_DataDir+"/corporate_logos_round2/reject" |
|
list | bootstrapping.nologos = ["TestKrFlag.jpg", "italia.jpg", "korean-american-flag.jpg", "TestUsFlag.jpg"] |
|
tuple | bootstrapping.fname = os.path.join(root, filename) |
|
string | bootstrapping.newf = reject_folder+"/" |
|
list | bootstrapping.mapwithreject = trainset1['classmap'] |
|
tuple | bootstrapping.trainset2 = easy.createRunSet( "corporate_logos_round2", classmap=mapwithreject ) |
|
tuple | bootstrapping.model2 = easy.train( trainer, trainset2 ) |
|