haarcascade_lefteye_2splits.xml 316 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803
  1. <?xml version="1.0"?>
  2. <!--
  3. Tree-based 20x20 left eye detector.
  4. The detector is trained by 6665 positive samples from FERET, VALID and BioID face databases.
  5. Created by Shiqi Yu (http://yushiqi.cn/research/eyedetection).
  6. ////////////////////////////////////////////////////////////////////////////////////////
  7. IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  8. By downloading, copying, installing or using the software you agree to this license.
  9. If you do not agree to this license, do not download, install,
  10. copy or use the software.
  11. Intel License Agreement
  12. For Open Source Computer Vision Library
  13. Copyright (C) 2000, Intel Corporation, all rights reserved.
  14. Third party copyrights are property of their respective owners.
  15. Redistribution and use in source and binary forms, with or without modification,
  16. are permitted provided that the following conditions are met:
  17. * Redistribution's of source code must retain the above copyright notice,
  18. this list of conditions and the following disclaimer.
  19. * Redistribution's in binary form must reproduce the above copyright notice,
  20. this list of conditions and the following disclaimer in the documentation
  21. and/or other materials provided with the distribution.
  22. * The name of Intel Corporation may not be used to endorse or promote products
  23. derived from this software without specific prior written permission.
  24. This software is provided by the copyright holders and contributors "as is" and
  25. any express or implied warranties, including, but not limited to, the implied
  26. warranties of merchantability and fitness for a particular purpose are disclaimed.
  27. In no event shall the Intel Corporation or contributors be liable for any direct,
  28. indirect, incidental, special, exemplary, or consequential damages
  29. (including, but not limited to, procurement of substitute goods or services;
  30. loss of use, data, or profits; or business interruption) however caused
  31. and on any theory of liability, whether in contract, strict liability,
  32. or tort (including negligence or otherwise) arising in any way out of
  33. the use of this software, even if advised of the possibility of such damage.
  34. -->
  35. <opencv_storage>
  36. <haarcascade_lefteye type_id="opencv-haar-classifier">
  37. <size>
  38. 20 20</size>
  39. <stages>
  40. <_>
  41. <!-- stage 0 -->
  42. <trees>
  43. <_>
  44. <!-- tree 0 -->
  45. <_>
  46. <!-- root node -->
  47. <feature>
  48. <rects>
  49. <_>
  50. 8 12 3 8 -1.</_>
  51. <_>
  52. 8 16 3 4 2.</_></rects>
  53. <tilted>0</tilted></feature>
  54. <threshold>0.0273259896785021</threshold>
  55. <left_val>-0.9060062170028687</left_val>
  56. <right_node>1</right_node></_>
  57. <_>
  58. <!-- node 1 -->
  59. <feature>
  60. <rects>
  61. <_>
  62. 5 11 8 9 -1.</_>
  63. <_>
  64. 7 11 4 9 2.</_></rects>
  65. <tilted>0</tilted></feature>
  66. <threshold>-7.0568458177149296e-03</threshold>
  67. <left_val>0.9338570833206177</left_val>
  68. <right_val>-0.4585995972156525</right_val></_></_>
  69. <_>
  70. <!-- tree 1 -->
  71. <_>
  72. <!-- root node -->
  73. <feature>
  74. <rects>
  75. <_>
  76. 8 7 11 12 -1.</_>
  77. <_>
  78. 8 11 11 4 3.</_></rects>
  79. <tilted>0</tilted></feature>
  80. <threshold>-0.1253869980573654</threshold>
  81. <left_val>0.7246372103691101</left_val>
  82. <right_node>1</right_node></_>
  83. <_>
  84. <!-- node 1 -->
  85. <feature>
  86. <rects>
  87. <_>
  88. 1 0 7 8 -1.</_>
  89. <_>
  90. 1 4 7 4 2.</_></rects>
  91. <tilted>0</tilted></feature>
  92. <threshold>-0.1148729994893074</threshold>
  93. <left_val>0.5303416848182678</left_val>
  94. <right_val>-0.8322122097015381</right_val></_></_>
  95. <_>
  96. <!-- tree 2 -->
  97. <_>
  98. <!-- root node -->
  99. <feature>
  100. <rects>
  101. <_>
  102. 9 7 6 6 -1.</_>
  103. <_>
  104. 7 9 6 2 3.</_></rects>
  105. <tilted>1</tilted></feature>
  106. <threshold>-0.0583099387586117</threshold>
  107. <left_val>0.6540889143943787</left_val>
  108. <right_node>1</right_node></_>
  109. <_>
  110. <!-- node 1 -->
  111. <feature>
  112. <rects>
  113. <_>
  114. 0 0 7 4 -1.</_>
  115. <_>
  116. 0 2 7 2 2.</_></rects>
  117. <tilted>0</tilted></feature>
  118. <threshold>-0.0176843702793121</threshold>
  119. <left_val>0.2948287129402161</left_val>
  120. <right_val>-0.7480958104133606</right_val></_></_>
  121. <_>
  122. <!-- tree 3 -->
  123. <_>
  124. <!-- root node -->
  125. <feature>
  126. <rects>
  127. <_>
  128. 16 13 4 4 -1.</_>
  129. <_>
  130. 18 13 2 4 2.</_></rects>
  131. <tilted>0</tilted></feature>
  132. <threshold>3.5937170032411814e-03</threshold>
  133. <left_val>-0.5030391812324524</left_val>
  134. <right_node>1</right_node></_>
  135. <_>
  136. <!-- node 1 -->
  137. <feature>
  138. <rects>
  139. <_>
  140. 17 15 2 3 -1.</_>
  141. <_>
  142. 17 15 1 3 2.</_></rects>
  143. <tilted>1</tilted></feature>
  144. <threshold>-1.3436110457405448e-03</threshold>
  145. <left_val>0.6599534153938293</left_val>
  146. <right_val>-0.5574085712432861</right_val></_></_>
  147. <_>
  148. <!-- tree 4 -->
  149. <_>
  150. <!-- root node -->
  151. <feature>
  152. <rects>
  153. <_>
  154. 0 13 6 2 -1.</_>
  155. <_>
  156. 2 13 2 2 3.</_></rects>
  157. <tilted>0</tilted></feature>
  158. <threshold>-2.1795940119773149e-03</threshold>
  159. <left_node>1</left_node>
  160. <right_val>-0.4201635122299194</right_val></_>
  161. <_>
  162. <!-- node 1 -->
  163. <feature>
  164. <rects>
  165. <_>
  166. 5 0 6 6 -1.</_>
  167. <_>
  168. 7 0 2 6 3.</_></rects>
  169. <tilted>0</tilted></feature>
  170. <threshold>0.0115148704499006</threshold>
  171. <left_val>0.5969433188438416</left_val>
  172. <right_val>-0.8050804734230042</right_val></_></_></trees>
  173. <stage_threshold>-2.3924100399017334</stage_threshold>
  174. <parent>-1</parent>
  175. <next>-1</next></_>
  176. <_>
  177. <!-- stage 1 -->
  178. <trees>
  179. <_>
  180. <!-- tree 0 -->
  181. <_>
  182. <!-- root node -->
  183. <feature>
  184. <rects>
  185. <_>
  186. 5 7 9 12 -1.</_>
  187. <_>
  188. 8 11 3 4 9.</_></rects>
  189. <tilted>0</tilted></feature>
  190. <threshold>-0.2248556017875671</threshold>
  191. <left_node>1</left_node>
  192. <right_val>-0.8136320114135742</right_val></_>
  193. <_>
  194. <!-- node 1 -->
  195. <feature>
  196. <rects>
  197. <_>
  198. 5 6 4 10 -1.</_>
  199. <_>
  200. 5 6 2 5 2.</_>
  201. <_>
  202. 7 11 2 5 2.</_></rects>
  203. <tilted>0</tilted></feature>
  204. <threshold>-9.6008004620671272e-03</threshold>
  205. <left_val>0.9086313843727112</left_val>
  206. <right_val>-0.3220897018909454</right_val></_></_>
  207. <_>
  208. <!-- tree 1 -->
  209. <_>
  210. <!-- root node -->
  211. <feature>
  212. <rects>
  213. <_>
  214. 8 12 11 8 -1.</_>
  215. <_>
  216. 8 16 11 4 2.</_></rects>
  217. <tilted>0</tilted></feature>
  218. <threshold>0.0742191672325134</threshold>
  219. <left_val>-0.7532945275306702</left_val>
  220. <right_node>1</right_node></_>
  221. <_>
  222. <!-- node 1 -->
  223. <feature>
  224. <rects>
  225. <_>
  226. 0 0 1 8 -1.</_>
  227. <_>
  228. 0 4 1 4 2.</_></rects>
  229. <tilted>0</tilted></feature>
  230. <threshold>-5.3165741264820099e-03</threshold>
  231. <left_val>0.8633949756622314</left_val>
  232. <right_val>-0.0334635712206364</right_val></_></_>
  233. <_>
  234. <!-- tree 2 -->
  235. <_>
  236. <!-- root node -->
  237. <feature>
  238. <rects>
  239. <_>
  240. 0 0 6 6 -1.</_>
  241. <_>
  242. 3 0 3 6 2.</_></rects>
  243. <tilted>0</tilted></feature>
  244. <threshold>-2.1913449745625257e-03</threshold>
  245. <left_node>1</left_node>
  246. <right_val>-0.5572034716606140</right_val></_>
  247. <_>
  248. <!-- node 1 -->
  249. <feature>
  250. <rects>
  251. <_>
  252. 14 14 6 6 -1.</_>
  253. <_>
  254. 14 17 6 3 2.</_></rects>
  255. <tilted>0</tilted></feature>
  256. <threshold>0.0118009597063065</threshold>
  257. <left_val>-0.3235968053340912</left_val>
  258. <right_val>0.6416382193565369</right_val></_></_>
  259. <_>
  260. <!-- tree 3 -->
  261. <_>
  262. <!-- root node -->
  263. <feature>
  264. <rects>
  265. <_>
  266. 5 13 9 7 -1.</_>
  267. <_>
  268. 8 13 3 7 3.</_></rects>
  269. <tilted>0</tilted></feature>
  270. <threshold>-7.6179709285497665e-03</threshold>
  271. <left_node>1</left_node>
  272. <right_val>-0.5316786766052246</right_val></_>
  273. <_>
  274. <!-- node 1 -->
  275. <feature>
  276. <rects>
  277. <_>
  278. 6 17 6 3 -1.</_>
  279. <_>
  280. 8 17 2 3 3.</_></rects>
  281. <tilted>0</tilted></feature>
  282. <threshold>-9.0587511658668518e-03</threshold>
  283. <left_val>-0.7361145019531250</left_val>
  284. <right_val>0.5566077232360840</right_val></_></_>
  285. <_>
  286. <!-- tree 4 -->
  287. <_>
  288. <!-- root node -->
  289. <feature>
  290. <rects>
  291. <_>
  292. 0 0 4 4 -1.</_>
  293. <_>
  294. 0 2 4 2 2.</_></rects>
  295. <tilted>0</tilted></feature>
  296. <threshold>-4.9959779717028141e-03</threshold>
  297. <left_node>1</left_node>
  298. <right_val>-0.4147691130638123</right_val></_>
  299. <_>
  300. <!-- node 1 -->
  301. <feature>
  302. <rects>
  303. <_>
  304. 1 0 3 3 -1.</_>
  305. <_>
  306. 2 1 1 1 9.</_></rects>
  307. <tilted>0</tilted></feature>
  308. <threshold>8.0803930759429932e-03</threshold>
  309. <left_val>0.5927835702896118</left_val>
  310. <right_val>-0.6738492250442505</right_val></_></_>
  311. <_>
  312. <!-- tree 5 -->
  313. <_>
  314. <!-- root node -->
  315. <feature>
  316. <rects>
  317. <_>
  318. 3 18 6 2 -1.</_>
  319. <_>
  320. 3 19 6 1 2.</_></rects>
  321. <tilted>0</tilted></feature>
  322. <threshold>1.9909010734409094e-03</threshold>
  323. <left_val>-0.4214592874050140</left_val>
  324. <right_node>1</right_node></_>
  325. <_>
  326. <!-- node 1 -->
  327. <feature>
  328. <rects>
  329. <_>
  330. 7 18 4 2 -1.</_>
  331. <_>
  332. 8 18 2 2 2.</_></rects>
  333. <tilted>0</tilted></feature>
  334. <threshold>1.6845749923959374e-03</threshold>
  335. <left_val>0.5467922091484070</left_val>
  336. <right_val>-0.7509945034980774</right_val></_></_>
  337. <_>
  338. <!-- tree 6 -->
  339. <_>
  340. <!-- root node -->
  341. <feature>
  342. <rects>
  343. <_>
  344. 6 10 12 2 -1.</_>
  345. <_>
  346. 6 11 12 1 2.</_></rects>
  347. <tilted>0</tilted></feature>
  348. <threshold>-5.0781872123479843e-03</threshold>
  349. <left_node>1</left_node>
  350. <right_val>-0.3989954888820648</right_val></_>
  351. <_>
  352. <!-- node 1 -->
  353. <feature>
  354. <rects>
  355. <_>
  356. 15 8 3 1 -1.</_>
  357. <_>
  358. 16 9 1 1 3.</_></rects>
  359. <tilted>1</tilted></feature>
  360. <threshold>2.6645609177649021e-03</threshold>
  361. <left_val>0.5894060134887695</left_val>
  362. <right_val>-0.4677804112434387</right_val></_></_></trees>
  363. <stage_threshold>-2.6498730182647705</stage_threshold>
  364. <parent>0</parent>
  365. <next>-1</next></_>
  366. <_>
  367. <!-- stage 2 -->
  368. <trees>
  369. <_>
  370. <!-- tree 0 -->
  371. <_>
  372. <!-- root node -->
  373. <feature>
  374. <rects>
  375. <_>
  376. 5 7 9 12 -1.</_>
  377. <_>
  378. 8 11 3 4 9.</_></rects>
  379. <tilted>0</tilted></feature>
  380. <threshold>-0.2530143857002258</threshold>
  381. <left_node>1</left_node>
  382. <right_val>-0.7540258765220642</right_val></_>
  383. <_>
  384. <!-- node 1 -->
  385. <feature>
  386. <rects>
  387. <_>
  388. 16 13 1 6 -1.</_>
  389. <_>
  390. 16 16 1 3 2.</_></rects>
  391. <tilted>0</tilted></feature>
  392. <threshold>2.9663778841495514e-03</threshold>
  393. <left_val>-0.3527964949607849</left_val>
  394. <right_val>0.8799229860305786</right_val></_></_>
  395. <_>
  396. <!-- tree 1 -->
  397. <_>
  398. <!-- root node -->
  399. <feature>
  400. <rects>
  401. <_>
  402. 9 7 5 6 -1.</_>
  403. <_>
  404. 7 9 5 2 3.</_></rects>
  405. <tilted>1</tilted></feature>
  406. <threshold>-0.0471276491880417</threshold>
  407. <left_node>1</left_node>
  408. <right_val>-0.5223489999771118</right_val></_>
  409. <_>
  410. <!-- node 1 -->
  411. <feature>
  412. <rects>
  413. <_>
  414. 16 12 4 6 -1.</_>
  415. <_>
  416. 18 12 2 6 2.</_></rects>
  417. <tilted>0</tilted></feature>
  418. <threshold>1.9500750349834561e-03</threshold>
  419. <left_val>-0.3037990927696228</left_val>
  420. <right_val>0.7520437836647034</right_val></_></_>
  421. <_>
  422. <!-- tree 2 -->
  423. <_>
  424. <!-- root node -->
  425. <feature>
  426. <rects>
  427. <_>
  428. 0 0 6 8 -1.</_>
  429. <_>
  430. 0 4 6 4 2.</_></rects>
  431. <tilted>0</tilted></feature>
  432. <threshold>-0.0714810267090797</threshold>
  433. <left_val>0.6584190130233765</left_val>
  434. <right_node>1</right_node></_>
  435. <_>
  436. <!-- node 1 -->
  437. <feature>
  438. <rects>
  439. <_>
  440. 3 1 15 12 -1.</_>
  441. <_>
  442. 3 5 15 4 3.</_></rects>
  443. <tilted>0</tilted></feature>
  444. <threshold>0.2218973040580750</threshold>
  445. <left_val>-0.6090720295906067</left_val>
  446. <right_val>0.5684216022491455</right_val></_></_>
  447. <_>
  448. <!-- tree 3 -->
  449. <_>
  450. <!-- root node -->
  451. <feature>
  452. <rects>
  453. <_>
  454. 11 12 9 8 -1.</_>
  455. <_>
  456. 11 16 9 4 2.</_></rects>
  457. <tilted>0</tilted></feature>
  458. <threshold>0.0338428206741810</threshold>
  459. <left_val>-0.6431164741516113</left_val>
  460. <right_node>1</right_node></_>
  461. <_>
  462. <!-- node 1 -->
  463. <feature>
  464. <rects>
  465. <_>
  466. 0 0 12 9 -1.</_>
  467. <_>
  468. 4 0 4 9 3.</_></rects>
  469. <tilted>0</tilted></feature>
  470. <threshold>-5.1714561413973570e-04</threshold>
  471. <left_val>0.5462036132812500</left_val>
  472. <right_val>-0.3998414874076843</right_val></_></_>
  473. <_>
  474. <!-- tree 4 -->
  475. <_>
  476. <!-- root node -->
  477. <feature>
  478. <rects>
  479. <_>
  480. 0 12 6 4 -1.</_>
  481. <_>
  482. 2 12 2 4 3.</_></rects>
  483. <tilted>0</tilted></feature>
  484. <threshold>-3.4458211157470942e-03</threshold>
  485. <left_node>1</left_node>
  486. <right_val>-0.4563683867454529</right_val></_>
  487. <_>
  488. <!-- node 1 -->
  489. <feature>
  490. <rects>
  491. <_>
  492. 10 18 4 2 -1.</_>
  493. <_>
  494. 11 18 2 2 2.</_></rects>
  495. <tilted>0</tilted></feature>
  496. <threshold>2.4395729415118694e-03</threshold>
  497. <left_val>0.4779818952083588</left_val>
  498. <right_val>-0.9124708771705627</right_val></_></_>
  499. <_>
  500. <!-- tree 5 -->
  501. <_>
  502. <!-- root node -->
  503. <feature>
  504. <rects>
  505. <_>
  506. 5 2 3 3 -1.</_>
  507. <_>
  508. 6 2 1 3 3.</_></rects>
  509. <tilted>0</tilted></feature>
  510. <threshold>2.1385070867836475e-03</threshold>
  511. <left_node>1</left_node>
  512. <right_val>-0.8361775875091553</right_val></_>
  513. <_>
  514. <!-- node 1 -->
  515. <feature>
  516. <rects>
  517. <_>
  518. 12 18 3 2 -1.</_>
  519. <_>
  520. 13 18 1 2 3.</_></rects>
  521. <tilted>0</tilted></feature>
  522. <threshold>1.8324409611523151e-03</threshold>
  523. <left_val>0.3346279859542847</left_val>
  524. <right_val>-0.7500854730606079</right_val></_></_>
  525. <_>
  526. <!-- tree 6 -->
  527. <_>
  528. <!-- root node -->
  529. <feature>
  530. <rects>
  531. <_>
  532. 0 0 2 8 -1.</_>
  533. <_>
  534. 1 0 1 8 2.</_></rects>
  535. <tilted>0</tilted></feature>
  536. <threshold>1.1167610064148903e-03</threshold>
  537. <left_node>1</left_node>
  538. <right_val>-0.6908379793167114</right_val></_>
  539. <_>
  540. <!-- node 1 -->
  541. <feature>
  542. <rects>
  543. <_>
  544. 5 18 4 2 -1.</_>
  545. <_>
  546. 5 19 4 1 2.</_></rects>
  547. <tilted>0</tilted></feature>
  548. <threshold>9.9106997367925942e-05</threshold>
  549. <left_val>-0.3456133008003235</left_val>
  550. <right_val>0.4118317961692810</right_val></_></_>
  551. <_>
  552. <!-- tree 7 -->
  553. <_>
  554. <!-- root node -->
  555. <feature>
  556. <rects>
  557. <_>
  558. 14 11 6 6 -1.</_>
  559. <_>
  560. 17 11 3 6 2.</_></rects>
  561. <tilted>0</tilted></feature>
  562. <threshold>0.0154477702453732</threshold>
  563. <left_node>1</left_node>
  564. <right_val>0.3698019087314606</right_val></_>
  565. <_>
  566. <!-- node 1 -->
  567. <feature>
  568. <rects>
  569. <_>
  570. 6 12 8 4 -1.</_>
  571. <_>
  572. 8 12 4 4 2.</_></rects>
  573. <tilted>0</tilted></feature>
  574. <threshold>-0.0322449393570423</threshold>
  575. <left_val>0.6111283898353577</left_val>
  576. <right_val>-0.5568534135818481</right_val></_></_></trees>
  577. <stage_threshold>-2.3828399181365967</stage_threshold>
  578. <parent>1</parent>
  579. <next>-1</next></_>
  580. <_>
  581. <!-- stage 3 -->
  582. <trees>
  583. <_>
  584. <!-- tree 0 -->
  585. <_>
  586. <!-- root node -->
  587. <feature>
  588. <rects>
  589. <_>
  590. 12 6 4 9 -1.</_>
  591. <_>
  592. 9 9 4 3 3.</_></rects>
  593. <tilted>1</tilted></feature>
  594. <threshold>-0.1225112974643707</threshold>
  595. <left_node>1</left_node>
  596. <right_val>-0.6702662706375122</right_val></_>
  597. <_>
  598. <!-- node 1 -->
  599. <feature>
  600. <rects>
  601. <_>
  602. 11 9 4 7 -1.</_>
  603. <_>
  604. 12 10 2 7 2.</_></rects>
  605. <tilted>1</tilted></feature>
  606. <threshold>-0.0142306098714471</threshold>
  607. <left_val>0.8780239224433899</left_val>
  608. <right_val>-0.1878418028354645</right_val></_></_>
  609. <_>
  610. <!-- tree 1 -->
  611. <_>
  612. <!-- root node -->
  613. <feature>
  614. <rects>
  615. <_>
  616. 5 8 4 8 -1.</_>
  617. <_>
  618. 5 8 2 4 2.</_>
  619. <_>
  620. 7 12 2 4 2.</_></rects>
  621. <tilted>0</tilted></feature>
  622. <threshold>-5.9833219274878502e-03</threshold>
  623. <left_node>1</left_node>
  624. <right_val>-0.5812284946441650</right_val></_>
  625. <_>
  626. <!-- node 1 -->
  627. <feature>
  628. <rects>
  629. <_>
  630. 8 12 11 8 -1.</_>
  631. <_>
  632. 8 16 11 4 2.</_></rects>
  633. <tilted>0</tilted></feature>
  634. <threshold>0.0770851373672485</threshold>
  635. <left_val>-0.5039535164833069</left_val>
  636. <right_val>0.6738736033439636</right_val></_></_>
  637. <_>
  638. <!-- tree 2 -->
  639. <_>
  640. <!-- root node -->
  641. <feature>
  642. <rects>
  643. <_>
  644. 3 0 14 6 -1.</_>
  645. <_>
  646. 3 3 14 3 2.</_></rects>
  647. <tilted>0</tilted></feature>
  648. <threshold>-0.1108618974685669</threshold>
  649. <left_val>0.6343203783035278</left_val>
  650. <right_node>1</right_node></_>
  651. <_>
  652. <!-- node 1 -->
  653. <feature>
  654. <rects>
  655. <_>
  656. 7 1 6 12 -1.</_>
  657. <_>
  658. 7 4 6 6 2.</_></rects>
  659. <tilted>0</tilted></feature>
  660. <threshold>0.0946047604084015</threshold>
  661. <left_val>-0.4972639083862305</left_val>
  662. <right_val>0.3878743946552277</right_val></_></_>
  663. <_>
  664. <!-- tree 3 -->
  665. <_>
  666. <!-- root node -->
  667. <feature>
  668. <rects>
  669. <_>
  670. 0 18 7 2 -1.</_>
  671. <_>
  672. 0 19 7 1 2.</_></rects>
  673. <tilted>0</tilted></feature>
  674. <threshold>1.7696130089461803e-04</threshold>
  675. <left_val>-0.6393880248069763</left_val>
  676. <right_node>1</right_node></_>
  677. <_>
  678. <!-- node 1 -->
  679. <feature>
  680. <rects>
  681. <_>
  682. 16 12 4 3 -1.</_>
  683. <_>
  684. 18 12 2 3 2.</_></rects>
  685. <tilted>0</tilted></feature>
  686. <threshold>2.0120320841670036e-03</threshold>
  687. <left_val>-0.3531391024589539</left_val>
  688. <right_val>0.5153843760490417</right_val></_></_>
  689. <_>
  690. <!-- tree 4 -->
  691. <_>
  692. <!-- root node -->
  693. <feature>
  694. <rects>
  695. <_>
  696. 0 0 4 8 -1.</_>
  697. <_>
  698. 2 0 2 8 2.</_></rects>
  699. <tilted>0</tilted></feature>
  700. <threshold>-1.6102839726954699e-03</threshold>
  701. <left_node>1</left_node>
  702. <right_val>-0.5191590189933777</right_val></_>
  703. <_>
  704. <!-- node 1 -->
  705. <feature>
  706. <rects>
  707. <_>
  708. 3 0 4 1 -1.</_>
  709. <_>
  710. 5 0 2 1 2.</_></rects>
  711. <tilted>0</tilted></feature>
  712. <threshold>1.6666069859638810e-03</threshold>
  713. <left_val>0.4047819077968597</left_val>
  714. <right_val>-0.6949635744094849</right_val></_></_>
  715. <_>
  716. <!-- tree 5 -->
  717. <_>
  718. <!-- root node -->
  719. <feature>
  720. <rects>
  721. <_>
  722. 3 13 2 2 -1.</_>
  723. <_>
  724. 3 13 2 1 2.</_></rects>
  725. <tilted>1</tilted></feature>
  726. <threshold>-7.1480998303741217e-04</threshold>
  727. <left_node>1</left_node>
  728. <right_val>-0.4894518852233887</right_val></_>
  729. <_>
  730. <!-- node 1 -->
  731. <feature>
  732. <rects>
  733. <_>
  734. 0 16 19 4 -1.</_>
  735. <_>
  736. 0 18 19 2 2.</_></rects>
  737. <tilted>0</tilted></feature>
  738. <threshold>-4.7647571191191673e-03</threshold>
  739. <left_val>-0.5003775954246521</left_val>
  740. <right_val>0.4079605937004089</right_val></_></_>
  741. <_>
  742. <!-- tree 6 -->
  743. <_>
  744. <!-- root node -->
  745. <feature>
  746. <rects>
  747. <_>
  748. 7 13 8 2 -1.</_>
  749. <_>
  750. 11 13 4 2 2.</_></rects>
  751. <tilted>0</tilted></feature>
  752. <threshold>7.8659597784280777e-03</threshold>
  753. <left_val>-0.3363642990589142</left_val>
  754. <right_node>1</right_node></_>
  755. <_>
  756. <!-- node 1 -->
  757. <feature>
  758. <rects>
  759. <_>
  760. 8 8 4 1 -1.</_>
  761. <_>
  762. 9 8 2 1 2.</_></rects>
  763. <tilted>0</tilted></feature>
  764. <threshold>-1.2938310392200947e-03</threshold>
  765. <left_val>-0.6762138009071350</left_val>
  766. <right_val>0.4701024889945984</right_val></_></_>
  767. <_>
  768. <!-- tree 7 -->
  769. <_>
  770. <!-- root node -->
  771. <feature>
  772. <rects>
  773. <_>
  774. 0 1 1 4 -1.</_>
  775. <_>
  776. 0 3 1 2 2.</_></rects>
  777. <tilted>0</tilted></feature>
  778. <threshold>-3.6533139063976705e-04</threshold>
  779. <left_node>1</left_node>
  780. <right_val>-0.4707160890102386</right_val></_>
  781. <_>
  782. <!-- node 1 -->
  783. <feature>
  784. <rects>
  785. <_>
  786. 0 0 1 4 -1.</_>
  787. <_>
  788. 0 1 1 2 2.</_></rects>
  789. <tilted>0</tilted></feature>
  790. <threshold>2.0565679296851158e-03</threshold>
  791. <left_val>0.4132341146469116</left_val>
  792. <right_val>-0.5552641749382019</right_val></_></_>
  793. <_>
  794. <!-- tree 8 -->
  795. <_>
  796. <!-- root node -->
  797. <feature>
  798. <rects>
  799. <_>
  800. 15 15 5 2 -1.</_>
  801. <_>
  802. 15 16 5 1 2.</_></rects>
  803. <tilted>0</tilted></feature>
  804. <threshold>7.8385717642959207e-05</threshold>
  805. <left_val>-0.5152115821838379</left_val>
  806. <right_node>1</right_node></_>
  807. <_>
  808. <!-- node 1 -->
  809. <feature>
  810. <rects>
  811. <_>
  812. 7 18 3 2 -1.</_>
  813. <_>
  814. 8 18 1 2 3.</_></rects>
  815. <tilted>0</tilted></feature>
  816. <threshold>1.7511800397187471e-03</threshold>
  817. <left_val>0.3341724872589111</left_val>
  818. <right_val>-0.7955815792083740</right_val></_></_></trees>
  819. <stage_threshold>-2.1312201023101807</stage_threshold>
  820. <parent>2</parent>
  821. <next>-1</next></_>
  822. <_>
  823. <!-- stage 4 -->
  824. <trees>
  825. <_>
  826. <!-- tree 0 -->
  827. <_>
  828. <!-- root node -->
  829. <feature>
  830. <rects>
  831. <_>
  832. 13 7 3 8 -1.</_>
  833. <_>
  834. 11 9 3 4 2.</_></rects>
  835. <tilted>1</tilted></feature>
  836. <threshold>-0.0646952390670776</threshold>
  837. <left_node>1</left_node>
  838. <right_val>-0.6132640242576599</right_val></_>
  839. <_>
  840. <!-- node 1 -->
  841. <feature>
  842. <rects>
  843. <_>
  844. 15 12 2 8 -1.</_>
  845. <_>
  846. 15 16 2 4 2.</_></rects>
  847. <tilted>0</tilted></feature>
  848. <threshold>9.5212170854210854e-03</threshold>
  849. <left_val>-0.5483155846595764</left_val>
  850. <right_val>0.7865244746208191</right_val></_></_>
  851. <_>
  852. <!-- tree 1 -->
  853. <_>
  854. <!-- root node -->
  855. <feature>
  856. <rects>
  857. <_>
  858. 2 0 10 6 -1.</_>
  859. <_>
  860. 2 3 10 3 2.</_></rects>
  861. <tilted>0</tilted></feature>
  862. <threshold>-0.0981097668409348</threshold>
  863. <left_val>0.6911330819129944</left_val>
  864. <right_node>1</right_node></_>
  865. <_>
  866. <!-- node 1 -->
  867. <feature>
  868. <rects>
  869. <_>
  870. 0 5 18 15 -1.</_>
  871. <_>
  872. 6 10 6 5 9.</_></rects>
  873. <tilted>0</tilted></feature>
  874. <threshold>-0.8593845963478088</threshold>
  875. <left_val>0.4536468088626862</left_val>
  876. <right_val>-0.5002614855766296</right_val></_></_>
  877. <_>
  878. <!-- tree 2 -->
  879. <_>
  880. <!-- root node -->
  881. <feature>
  882. <rects>
  883. <_>
  884. 3 11 12 6 -1.</_>
  885. <_>
  886. 7 13 4 2 9.</_></rects>
  887. <tilted>0</tilted></feature>
  888. <threshold>-0.0898361727595329</threshold>
  889. <left_node>1</left_node>
  890. <right_val>-0.5292878150939941</right_val></_>
  891. <_>
  892. <!-- node 1 -->
  893. <feature>
  894. <rects>
  895. <_>
  896. 16 12 4 7 -1.</_>
  897. <_>
  898. 18 12 2 7 2.</_></rects>
  899. <tilted>0</tilted></feature>
  900. <threshold>2.6945930439978838e-03</threshold>
  901. <left_val>-0.3819977939128876</left_val>
  902. <right_val>0.5782129764556885</right_val></_></_>
  903. <_>
  904. <!-- tree 3 -->
  905. <_>
  906. <!-- root node -->
  907. <feature>
  908. <rects>
  909. <_>
  910. 8 18 4 2 -1.</_>
  911. <_>
  912. 9 18 2 2 2.</_></rects>
  913. <tilted>0</tilted></feature>
  914. <threshold>2.5973599404096603e-03</threshold>
  915. <left_node>1</left_node>
  916. <right_val>-0.9192836880683899</right_val></_>
  917. <_>
  918. <!-- node 1 -->
  919. <feature>
  920. <rects>
  921. <_>
  922. 8 17 4 3 -1.</_>
  923. <_>
  924. 9 17 2 3 2.</_></rects>
  925. <tilted>0</tilted></feature>
  926. <threshold>-3.0058110132813454e-03</threshold>
  927. <left_val>-0.8021379709243774</left_val>
  928. <right_val>0.2925927937030792</right_val></_></_>
  929. <_>
  930. <!-- tree 4 -->
  931. <_>
  932. <!-- root node -->
  933. <feature>
  934. <rects>
  935. <_>
  936. 0 12 6 6 -1.</_>
  937. <_>
  938. 2 12 2 6 3.</_></rects>
  939. <tilted>0</tilted></feature>
  940. <threshold>-4.5496290549635887e-03</threshold>
  941. <left_node>1</left_node>
  942. <right_val>-0.4367895126342773</right_val></_>
  943. <_>
  944. <!-- node 1 -->
  945. <feature>
  946. <rects>
  947. <_>
  948. 4 16 4 4 -1.</_>
  949. <_>
  950. 5 16 2 4 2.</_></rects>
  951. <tilted>0</tilted></feature>
  952. <threshold>4.7376728616654873e-03</threshold>
  953. <left_val>0.4101088047027588</left_val>
  954. <right_val>-0.7269281148910522</right_val></_></_>
  955. <_>
  956. <!-- tree 5 -->
  957. <_>
  958. <!-- root node -->
  959. <feature>
  960. <rects>
  961. <_>
  962. 3 0 4 6 -1.</_>
  963. <_>
  964. 4 0 2 6 2.</_></rects>
  965. <tilted>0</tilted></feature>
  966. <threshold>4.6190437860786915e-03</threshold>
  967. <left_node>1</left_node>
  968. <right_val>-0.8489515185356140</right_val></_>
  969. <_>
  970. <!-- node 1 -->
  971. <feature>
  972. <rects>
  973. <_>
  974. 1 0 4 7 -1.</_>
  975. <_>
  976. 2 0 2 7 2.</_></rects>
  977. <tilted>0</tilted></feature>
  978. <threshold>4.5377281494438648e-03</threshold>
  979. <left_val>0.3012467920780182</left_val>
  980. <right_val>-0.7030177116394043</right_val></_></_>
  981. <_>
  982. <!-- tree 6 -->
  983. <_>
  984. <!-- root node -->
  985. <feature>
  986. <rects>
  987. <_>
  988. 2 0 8 3 -1.</_>
  989. <_>
  990. 6 0 4 3 2.</_></rects>
  991. <tilted>0</tilted></feature>
  992. <threshold>-2.4952790699899197e-03</threshold>
  993. <left_node>1</left_node>
  994. <right_val>-0.4678474962711334</right_val></_>
  995. <_>
  996. <!-- node 1 -->
  997. <feature>
  998. <rects>
  999. <_>
  1000. 8 3 4 6 -1.</_>
  1001. <_>
  1002. 9 3 2 6 2.</_></rects>
  1003. <tilted>0</tilted></feature>
  1004. <threshold>-5.1753767766058445e-03</threshold>
  1005. <left_val>-0.7453035116195679</left_val>
  1006. <right_val>0.4001182019710541</right_val></_></_>
  1007. <_>
  1008. <!-- tree 7 -->
  1009. <_>
  1010. <!-- root node -->
  1011. <feature>
  1012. <rects>
  1013. <_>
  1014. 10 10 3 2 -1.</_>
  1015. <_>
  1016. 10 11 3 1 2.</_></rects>
  1017. <tilted>0</tilted></feature>
  1018. <threshold>-5.2049742080271244e-03</threshold>
  1019. <left_val>0.4866926968097687</left_val>
  1020. <right_node>1</right_node></_>
  1021. <_>
  1022. <!-- node 1 -->
  1023. <feature>
  1024. <rects>
  1025. <_>
  1026. 4 3 7 6 -1.</_>
  1027. <_>
  1028. 4 6 7 3 2.</_></rects>
  1029. <tilted>0</tilted></feature>
  1030. <threshold>-0.0878920033574104</threshold>
  1031. <left_val>0.8349394798278809</left_val>
  1032. <right_val>-0.3382771909236908</right_val></_></_>
  1033. <_>
  1034. <!-- tree 8 -->
  1035. <_>
  1036. <!-- root node -->
  1037. <feature>
  1038. <rects>
  1039. <_>
  1040. 10 18 10 2 -1.</_>
  1041. <_>
  1042. 15 18 5 2 2.</_></rects>
  1043. <tilted>0</tilted></feature>
  1044. <threshold>6.9997250102460384e-03</threshold>
  1045. <left_val>-0.2903988957405090</left_val>
  1046. <right_node>1</right_node></_>
  1047. <_>
  1048. <!-- node 1 -->
  1049. <feature>
  1050. <rects>
  1051. <_>
  1052. 9 13 6 1 -1.</_>
  1053. <_>
  1054. 9 13 3 1 2.</_></rects>
  1055. <tilted>1</tilted></feature>
  1056. <threshold>-9.0990252792835236e-03</threshold>
  1057. <left_val>0.6231582164764404</left_val>
  1058. <right_val>-0.3542473018169403</right_val></_></_></trees>
  1059. <stage_threshold>-2.0176210403442383</stage_threshold>
  1060. <parent>3</parent>
  1061. <next>-1</next></_>
  1062. <_>
  1063. <!-- stage 5 -->
  1064. <trees>
  1065. <_>
  1066. <!-- tree 0 -->
  1067. <_>
  1068. <!-- root node -->
  1069. <feature>
  1070. <rects>
  1071. <_>
  1072. 10 8 4 6 -1.</_>
  1073. <_>
  1074. 8 10 4 2 3.</_></rects>
  1075. <tilted>1</tilted></feature>
  1076. <threshold>-0.0557021014392376</threshold>
  1077. <left_node>1</left_node>
  1078. <right_val>-0.6984158158302307</right_val></_>
  1079. <_>
  1080. <!-- node 1 -->
  1081. <feature>
  1082. <rects>
  1083. <_>
  1084. 14 12 6 8 -1.</_>
  1085. <_>
  1086. 14 16 6 4 2.</_></rects>
  1087. <tilted>0</tilted></feature>
  1088. <threshold>0.0340332910418510</threshold>
  1089. <left_val>-0.3950918912887573</left_val>
  1090. <right_val>0.8031312823295593</right_val></_></_>
  1091. <_>
  1092. <!-- tree 1 -->
  1093. <_>
  1094. <!-- root node -->
  1095. <feature>
  1096. <rects>
  1097. <_>
  1098. 10 8 6 4 -1.</_>
  1099. <_>
  1100. 12 10 2 4 3.</_></rects>
  1101. <tilted>1</tilted></feature>
  1102. <threshold>-0.0461990609765053</threshold>
  1103. <left_node>1</left_node>
  1104. <right_val>-0.4886038005352020</right_val></_>
  1105. <_>
  1106. <!-- node 1 -->
  1107. <feature>
  1108. <rects>
  1109. <_>
  1110. 0 12 6 3 -1.</_>
  1111. <_>
  1112. 2 12 2 3 3.</_></rects>
  1113. <tilted>0</tilted></feature>
  1114. <threshold>-4.8061669804155827e-03</threshold>
  1115. <left_val>0.8077561259269714</left_val>
  1116. <right_val>-0.0744908228516579</right_val></_></_>
  1117. <_>
  1118. <!-- tree 2 -->
  1119. <_>
  1120. <!-- root node -->
  1121. <feature>
  1122. <rects>
  1123. <_>
  1124. 18 11 2 6 -1.</_>
  1125. <_>
  1126. 19 11 1 6 2.</_></rects>
  1127. <tilted>0</tilted></feature>
  1128. <threshold>1.8170489929616451e-03</threshold>
  1129. <left_val>-0.3804352879524231</left_val>
  1130. <right_node>1</right_node></_>
  1131. <_>
  1132. <!-- node 1 -->
  1133. <feature>
  1134. <rects>
  1135. <_>
  1136. 0 0 1 10 -1.</_>
  1137. <_>
  1138. 0 5 1 5 2.</_></rects>
  1139. <tilted>0</tilted></feature>
  1140. <threshold>-3.6162370815873146e-03</threshold>
  1141. <left_val>0.6045172214508057</left_val>
  1142. <right_val>-0.2258224040269852</right_val></_></_>
  1143. <_>
  1144. <!-- tree 3 -->
  1145. <_>
  1146. <!-- root node -->
  1147. <feature>
  1148. <rects>
  1149. <_>
  1150. 5 4 8 12 -1.</_>
  1151. <_>
  1152. 7 4 4 12 2.</_></rects>
  1153. <tilted>0</tilted></feature>
  1154. <threshold>-0.0157069507986307</threshold>
  1155. <left_node>1</left_node>
  1156. <right_val>-0.3757799863815308</right_val></_>
  1157. <_>
  1158. <!-- node 1 -->
  1159. <feature>
  1160. <rects>
  1161. <_>
  1162. 1 3 9 8 -1.</_>
  1163. <_>
  1164. 4 3 3 8 3.</_></rects>
  1165. <tilted>0</tilted></feature>
  1166. <threshold>4.3929950334131718e-03</threshold>
  1167. <left_val>0.5421422123908997</left_val>
  1168. <right_val>-0.3738824129104614</right_val></_></_>
  1169. <_>
  1170. <!-- tree 4 -->
  1171. <_>
  1172. <!-- root node -->
  1173. <feature>
  1174. <rects>
  1175. <_>
  1176. 0 0 2 2 -1.</_>
  1177. <_>
  1178. 0 1 2 1 2.</_></rects>
  1179. <tilted>0</tilted></feature>
  1180. <threshold>-1.0047219984699041e-04</threshold>
  1181. <left_node>1</left_node>
  1182. <right_val>-0.4743340909481049</right_val></_>
  1183. <_>
  1184. <!-- node 1 -->
  1185. <feature>
  1186. <rects>
  1187. <_>
  1188. 12 8 6 12 -1.</_>
  1189. <_>
  1190. 14 12 2 4 9.</_></rects>
  1191. <tilted>0</tilted></feature>
  1192. <threshold>-0.0864751189947128</threshold>
  1193. <left_val>0.5018631815910339</left_val>
  1194. <right_val>-0.2113623023033142</right_val></_></_>
  1195. <_>
  1196. <!-- tree 5 -->
  1197. <_>
  1198. <!-- root node -->
  1199. <feature>
  1200. <rects>
  1201. <_>
  1202. 4 2 14 6 -1.</_>
  1203. <_>
  1204. 4 4 14 2 3.</_></rects>
  1205. <tilted>0</tilted></feature>
  1206. <threshold>-0.0779607668519020</threshold>
  1207. <left_val>0.5733734965324402</left_val>
  1208. <right_node>1</right_node></_>
  1209. <_>
  1210. <!-- node 1 -->
  1211. <feature>
  1212. <rects>
  1213. <_>
  1214. 3 0 12 8 -1.</_>
  1215. <_>
  1216. 3 4 12 4 2.</_></rects>
  1217. <tilted>0</tilted></feature>
  1218. <threshold>0.0985612869262695</threshold>
  1219. <left_val>-0.3251555860042572</left_val>
  1220. <right_val>0.5303598046302795</right_val></_></_>
  1221. <_>
  1222. <!-- tree 6 -->
  1223. <_>
  1224. <!-- root node -->
  1225. <feature>
  1226. <rects>
  1227. <_>
  1228. 0 0 17 20 -1.</_>
  1229. <_>
  1230. 0 5 17 10 2.</_></rects>
  1231. <tilted>0</tilted></feature>
  1232. <threshold>-0.5435916781425476</threshold>
  1233. <left_val>0.5946429967880249</left_val>
  1234. <right_node>1</right_node></_>
  1235. <_>
  1236. <!-- node 1 -->
  1237. <feature>
  1238. <rects>
  1239. <_>
  1240. 4 0 13 6 -1.</_>
  1241. <_>
  1242. 4 2 13 2 3.</_></rects>
  1243. <tilted>0</tilted></feature>
  1244. <threshold>-0.0441776998341084</threshold>
  1245. <left_val>0.2967107892036438</left_val>
  1246. <right_val>-0.3847483098506927</right_val></_></_>
  1247. <_>
  1248. <!-- tree 7 -->
  1249. <_>
  1250. <!-- root node -->
  1251. <feature>
  1252. <rects>
  1253. <_>
  1254. 2 10 3 6 -1.</_>
  1255. <_>
  1256. 3 10 1 6 3.</_></rects>
  1257. <tilted>0</tilted></feature>
  1258. <threshold>-8.8016409426927567e-04</threshold>
  1259. <left_node>1</left_node>
  1260. <right_val>-0.3200058937072754</right_val></_>
  1261. <_>
  1262. <!-- node 1 -->
  1263. <feature>
  1264. <rects>
  1265. <_>
  1266. 4 14 6 4 -1.</_>
  1267. <_>
  1268. 4 14 3 2 2.</_>
  1269. <_>
  1270. 7 16 3 2 2.</_></rects>
  1271. <tilted>0</tilted></feature>
  1272. <threshold>2.6359390467405319e-03</threshold>
  1273. <left_val>-0.1758614033460617</left_val>
  1274. <right_val>0.4836035072803497</right_val></_></_>
  1275. <_>
  1276. <!-- tree 8 -->
  1277. <_>
  1278. <!-- root node -->
  1279. <feature>
  1280. <rects>
  1281. <_>
  1282. 8 1 6 8 -1.</_>
  1283. <_>
  1284. 10 1 2 8 3.</_></rects>
  1285. <tilted>0</tilted></feature>
  1286. <threshold>-0.0142036899924278</threshold>
  1287. <left_val>-0.7788208723068237</left_val>
  1288. <right_node>1</right_node></_>
  1289. <_>
  1290. <!-- node 1 -->
  1291. <feature>
  1292. <rects>
  1293. <_>
  1294. 0 1 2 6 -1.</_>
  1295. <_>
  1296. 1 1 1 6 2.</_></rects>
  1297. <tilted>0</tilted></feature>
  1298. <threshold>-7.3902818257920444e-05</threshold>
  1299. <left_val>0.3061941862106323</left_val>
  1300. <right_val>-0.3319604992866516</right_val></_></_>
  1301. <_>
  1302. <!-- tree 9 -->
  1303. <_>
  1304. <!-- root node -->
  1305. <feature>
  1306. <rects>
  1307. <_>
  1308. 8 12 1 3 -1.</_>
  1309. <_>
  1310. 7 13 1 1 3.</_></rects>
  1311. <tilted>1</tilted></feature>
  1312. <threshold>4.6157240867614746e-03</threshold>
  1313. <left_node>1</left_node>
  1314. <right_val>0.4968977868556976</right_val></_>
  1315. <_>
  1316. <!-- node 1 -->
  1317. <feature>
  1318. <rects>
  1319. <_>
  1320. 5 4 8 4 -1.</_>
  1321. <_>
  1322. 5 4 8 2 2.</_></rects>
  1323. <tilted>1</tilted></feature>
  1324. <threshold>0.0111523102968931</threshold>
  1325. <left_val>-0.5343589186668396</left_val>
  1326. <right_val>0.0972294434905052</right_val></_></_>
  1327. <_>
  1328. <!-- tree 10 -->
  1329. <_>
  1330. <!-- root node -->
  1331. <feature>
  1332. <rects>
  1333. <_>
  1334. 0 2 4 5 -1.</_>
  1335. <_>
  1336. 1 2 2 5 2.</_></rects>
  1337. <tilted>0</tilted></feature>
  1338. <threshold>-6.0547702014446259e-03</threshold>
  1339. <left_val>-0.8381121754646301</left_val>
  1340. <right_node>1</right_node></_>
  1341. <_>
  1342. <!-- node 1 -->
  1343. <feature>
  1344. <rects>
  1345. <_>
  1346. 5 12 3 2 -1.</_>
  1347. <_>
  1348. 6 12 1 2 3.</_></rects>
  1349. <tilted>0</tilted></feature>
  1350. <threshold>-2.1118740551173687e-03</threshold>
  1351. <left_val>0.6361703276634216</left_val>
  1352. <right_val>-0.0482991896569729</right_val></_></_></trees>
  1353. <stage_threshold>-2.2212049961090088</stage_threshold>
  1354. <parent>4</parent>
  1355. <next>-1</next></_>
  1356. <_>
  1357. <!-- stage 6 -->
  1358. <trees>
  1359. <_>
  1360. <!-- tree 0 -->
  1361. <_>
  1362. <!-- root node -->
  1363. <feature>
  1364. <rects>
  1365. <_>
  1366. 5 13 8 2 -1.</_>
  1367. <_>
  1368. 7 13 4 2 2.</_></rects>
  1369. <tilted>0</tilted></feature>
  1370. <threshold>-0.0129568297415972</threshold>
  1371. <left_node>1</left_node>
  1372. <right_val>-0.6487473249435425</right_val></_>
  1373. <_>
  1374. <!-- node 1 -->
  1375. <feature>
  1376. <rects>
  1377. <_>
  1378. 11 9 9 8 -1.</_>
  1379. <_>
  1380. 11 11 9 4 2.</_></rects>
  1381. <tilted>0</tilted></feature>
  1382. <threshold>-0.0271410197019577</threshold>
  1383. <left_val>0.7629305720329285</left_val>
  1384. <right_val>-0.3394787013530731</right_val></_></_>
  1385. <_>
  1386. <!-- tree 1 -->
  1387. <_>
  1388. <!-- root node -->
  1389. <feature>
  1390. <rects>
  1391. <_>
  1392. 16 12 4 3 -1.</_>
  1393. <_>
  1394. 18 12 2 3 2.</_></rects>
  1395. <tilted>0</tilted></feature>
  1396. <threshold>4.5119998976588249e-03</threshold>
  1397. <left_val>-0.5005983710289001</left_val>
  1398. <right_node>1</right_node></_>
  1399. <_>
  1400. <!-- node 1 -->
  1401. <feature>
  1402. <rects>
  1403. <_>
  1404. 16 14 4 6 -1.</_>
  1405. <_>
  1406. 16 17 4 3 2.</_></rects>
  1407. <tilted>0</tilted></feature>
  1408. <threshold>0.0125166904181242</threshold>
  1409. <left_val>-0.3687332868576050</left_val>
  1410. <right_val>0.5988863110542297</right_val></_></_>
  1411. <_>
  1412. <!-- tree 2 -->
  1413. <_>
  1414. <!-- root node -->
  1415. <feature>
  1416. <rects>
  1417. <_>
  1418. 0 12 6 3 -1.</_>
  1419. <_>
  1420. 2 12 2 3 3.</_></rects>
  1421. <tilted>0</tilted></feature>
  1422. <threshold>-6.0557941906154156e-03</threshold>
  1423. <left_node>1</left_node>
  1424. <right_val>-0.3894093036651611</right_val></_>
  1425. <_>
  1426. <!-- node 1 -->
  1427. <feature>
  1428. <rects>
  1429. <_>
  1430. 8 6 7 6 -1.</_>
  1431. <_>
  1432. 6 8 7 2 3.</_></rects>
  1433. <tilted>1</tilted></feature>
  1434. <threshold>-0.0469237491488457</threshold>
  1435. <left_val>0.6326891183853149</left_val>
  1436. <right_val>-0.2627002894878387</right_val></_></_>
  1437. <_>
  1438. <!-- tree 3 -->
  1439. <_>
  1440. <!-- root node -->
  1441. <feature>
  1442. <rects>
  1443. <_>
  1444. 0 0 1 6 -1.</_>
  1445. <_>
  1446. 0 3 1 3 2.</_></rects>
  1447. <tilted>0</tilted></feature>
  1448. <threshold>-2.4018269032239914e-03</threshold>
  1449. <left_node>1</left_node>
  1450. <right_val>-0.5051792860031128</right_val></_>
  1451. <_>
  1452. <!-- node 1 -->
  1453. <feature>
  1454. <rects>
  1455. <_>
  1456. 0 2 15 5 -1.</_>
  1457. <_>
  1458. 5 2 5 5 3.</_></rects>
  1459. <tilted>0</tilted></feature>
  1460. <threshold>-0.0159360896795988</threshold>
  1461. <left_val>0.6552600264549255</left_val>
  1462. <right_val>-0.1730810999870300</right_val></_></_>
  1463. <_>
  1464. <!-- tree 4 -->
  1465. <_>
  1466. <!-- root node -->
  1467. <feature>
  1468. <rects>
  1469. <_>
  1470. 8 11 10 3 -1.</_>
  1471. <_>
  1472. 13 11 5 3 2.</_></rects>
  1473. <tilted>0</tilted></feature>
  1474. <threshold>0.0140002900734544</threshold>
  1475. <left_val>-0.4165323078632355</left_val>
  1476. <right_node>1</right_node></_>
  1477. <_>
  1478. <!-- node 1 -->
  1479. <feature>
  1480. <rects>
  1481. <_>
  1482. 8 11 2 8 -1.</_>
  1483. <_>
  1484. 8 15 2 4 2.</_></rects>
  1485. <tilted>0</tilted></feature>
  1486. <threshold>0.0132027799263597</threshold>
  1487. <left_val>-0.4912196993827820</left_val>
  1488. <right_val>0.3739793896675110</right_val></_></_>
  1489. <_>
  1490. <!-- tree 5 -->
  1491. <_>
  1492. <!-- root node -->
  1493. <feature>
  1494. <rects>
  1495. <_>
  1496. 0 1 2 6 -1.</_>
  1497. <_>
  1498. 1 1 1 6 2.</_></rects>
  1499. <tilted>0</tilted></feature>
  1500. <threshold>-2.7658580802381039e-04</threshold>
  1501. <left_node>1</left_node>
  1502. <right_val>-0.4538286924362183</right_val></_>
  1503. <_>
  1504. <!-- node 1 -->
  1505. <feature>
  1506. <rects>
  1507. <_>
  1508. 0 1 4 4 -1.</_>
  1509. <_>
  1510. 1 1 2 4 2.</_></rects>
  1511. <tilted>0</tilted></feature>
  1512. <threshold>-4.8634149134159088e-03</threshold>
  1513. <left_val>-0.5979688167572021</left_val>
  1514. <right_val>0.3121772110462189</right_val></_></_>
  1515. <_>
  1516. <!-- tree 6 -->
  1517. <_>
  1518. <!-- root node -->
  1519. <feature>
  1520. <rects>
  1521. <_>
  1522. 5 16 3 1 -1.</_>
  1523. <_>
  1524. 6 17 1 1 3.</_></rects>
  1525. <tilted>1</tilted></feature>
  1526. <threshold>2.7654920704662800e-03</threshold>
  1527. <left_node>1</left_node>
  1528. <right_val>-0.7647656798362732</right_val></_>
  1529. <_>
  1530. <!-- node 1 -->
  1531. <feature>
  1532. <rects>
  1533. <_>
  1534. 5 0 7 15 -1.</_>
  1535. <_>
  1536. 5 5 7 5 3.</_></rects>
  1537. <tilted>0</tilted></feature>
  1538. <threshold>0.2553476989269257</threshold>
  1539. <left_val>-0.0342672206461430</left_val>
  1540. <right_val>0.7078657746315002</right_val></_></_>
  1541. <_>
  1542. <!-- tree 7 -->
  1543. <_>
  1544. <!-- root node -->
  1545. <feature>
  1546. <rects>
  1547. <_>
  1548. 17 0 3 2 -1.</_>
  1549. <_>
  1550. 18 1 1 2 3.</_></rects>
  1551. <tilted>1</tilted></feature>
  1552. <threshold>4.6812961809337139e-03</threshold>
  1553. <left_node>1</left_node>
  1554. <right_val>-0.7879086136817932</right_val></_>
  1555. <_>
  1556. <!-- node 1 -->
  1557. <feature>
  1558. <rects>
  1559. <_>
  1560. 4 18 6 2 -1.</_>
  1561. <_>
  1562. 6 18 2 2 3.</_></rects>
  1563. <tilted>0</tilted></feature>
  1564. <threshold>6.5162130631506443e-03</threshold>
  1565. <left_val>0.1887757927179337</left_val>
  1566. <right_val>-0.7913225889205933</right_val></_></_>
  1567. <_>
  1568. <!-- tree 8 -->
  1569. <_>
  1570. <!-- root node -->
  1571. <feature>
  1572. <rects>
  1573. <_>
  1574. 7 1 4 5 -1.</_>
  1575. <_>
  1576. 7 1 2 5 2.</_></rects>
  1577. <tilted>1</tilted></feature>
  1578. <threshold>0.0573253296315670</threshold>
  1579. <left_node>1</left_node>
  1580. <right_val>0.6234918832778931</right_val></_>
  1581. <_>
  1582. <!-- node 1 -->
  1583. <feature>
  1584. <rects>
  1585. <_>
  1586. 14 0 6 8 -1.</_>
  1587. <_>
  1588. 14 0 3 4 2.</_>
  1589. <_>
  1590. 17 4 3 4 2.</_></rects>
  1591. <tilted>0</tilted></feature>
  1592. <threshold>-0.0127183301374316</threshold>
  1593. <left_val>0.3086060881614685</left_val>
  1594. <right_val>-0.3278433084487915</right_val></_></_>
  1595. <_>
  1596. <!-- tree 9 -->
  1597. <_>
  1598. <!-- root node -->
  1599. <feature>
  1600. <rects>
  1601. <_>
  1602. 5 2 4 18 -1.</_>
  1603. <_>
  1604. 5 2 2 9 2.</_>
  1605. <_>
  1606. 7 11 2 9 2.</_></rects>
  1607. <tilted>0</tilted></feature>
  1608. <threshold>-6.7374261561781168e-04</threshold>
  1609. <left_node>1</left_node>
  1610. <right_val>-0.4545154869556427</right_val></_>
  1611. <_>
  1612. <!-- node 1 -->
  1613. <feature>
  1614. <rects>
  1615. <_>
  1616. 7 18 6 2 -1.</_>
  1617. <_>
  1618. 9 18 2 2 3.</_></rects>
  1619. <tilted>0</tilted></feature>
  1620. <threshold>5.6564649567008018e-03</threshold>
  1621. <left_val>0.2743133902549744</left_val>
  1622. <right_val>-0.7844793796539307</right_val></_></_>
  1623. <_>
  1624. <!-- tree 10 -->
  1625. <_>
  1626. <!-- root node -->
  1627. <feature>
  1628. <rects>
  1629. <_>
  1630. 10 8 2 3 -1.</_>
  1631. <_>
  1632. 10 9 2 1 3.</_></rects>
  1633. <tilted>0</tilted></feature>
  1634. <threshold>3.1134090386331081e-03</threshold>
  1635. <left_node>1</left_node>
  1636. <right_val>0.3973877131938934</right_val></_>
  1637. <_>
  1638. <!-- node 1 -->
  1639. <feature>
  1640. <rects>
  1641. <_>
  1642. 10 10 4 2 -1.</_>
  1643. <_>
  1644. 10 10 2 1 2.</_>
  1645. <_>
  1646. 12 11 2 1 2.</_></rects>
  1647. <tilted>0</tilted></feature>
  1648. <threshold>2.4249779526144266e-03</threshold>
  1649. <left_val>-0.3519827127456665</left_val>
  1650. <right_val>0.3049009144306183</right_val></_></_>
  1651. <_>
  1652. <!-- tree 11 -->
  1653. <_>
  1654. <!-- root node -->
  1655. <feature>
  1656. <rects>
  1657. <_>
  1658. 4 2 12 6 -1.</_>
  1659. <_>
  1660. 4 4 12 2 3.</_></rects>
  1661. <tilted>0</tilted></feature>
  1662. <threshold>-0.0556414611637592</threshold>
  1663. <left_val>0.4557549059391022</left_val>
  1664. <right_node>1</right_node></_>
  1665. <_>
  1666. <!-- node 1 -->
  1667. <feature>
  1668. <rects>
  1669. <_>
  1670. 5 1 12 8 -1.</_>
  1671. <_>
  1672. 5 3 12 4 2.</_></rects>
  1673. <tilted>0</tilted></feature>
  1674. <threshold>0.0435481294989586</threshold>
  1675. <left_val>-0.3337092995643616</left_val>
  1676. <right_val>0.2950142920017242</right_val></_></_>
  1677. <_>
  1678. <!-- tree 12 -->
  1679. <_>
  1680. <!-- root node -->
  1681. <feature>
  1682. <rects>
  1683. <_>
  1684. 2 18 4 2 -1.</_>
  1685. <_>
  1686. 2 19 4 1 2.</_></rects>
  1687. <tilted>0</tilted></feature>
  1688. <threshold>8.0783379962667823e-04</threshold>
  1689. <left_node>1</left_node>
  1690. <right_val>0.2246004045009613</right_val></_>
  1691. <_>
  1692. <!-- node 1 -->
  1693. <feature>
  1694. <rects>
  1695. <_>
  1696. 0 18 8 1 -1.</_>
  1697. <_>
  1698. 4 18 4 1 2.</_></rects>
  1699. <tilted>0</tilted></feature>
  1700. <threshold>1.8713270546868443e-03</threshold>
  1701. <left_val>-0.6604840755462646</left_val>
  1702. <right_val>0.1503167003393173</right_val></_></_></trees>
  1703. <stage_threshold>-2.1328830718994141</stage_threshold>
  1704. <parent>5</parent>
  1705. <next>-1</next></_>
  1706. <_>
  1707. <!-- stage 7 -->
  1708. <trees>
  1709. <_>
  1710. <!-- tree 0 -->
  1711. <_>
  1712. <!-- root node -->
  1713. <feature>
  1714. <rects>
  1715. <_>
  1716. 4 7 12 12 -1.</_>
  1717. <_>
  1718. 8 11 4 4 9.</_></rects>
  1719. <tilted>0</tilted></feature>
  1720. <threshold>-0.4351662993431091</threshold>
  1721. <left_node>1</left_node>
  1722. <right_val>-0.4995929002761841</right_val></_>
  1723. <_>
  1724. <!-- node 1 -->
  1725. <feature>
  1726. <rects>
  1727. <_>
  1728. 16 11 4 6 -1.</_>
  1729. <_>
  1730. 18 11 2 6 2.</_></rects>
  1731. <tilted>0</tilted></feature>
  1732. <threshold>6.2595037743449211e-03</threshold>
  1733. <left_val>-0.2363958954811096</left_val>
  1734. <right_val>0.7997537851333618</right_val></_></_>
  1735. <_>
  1736. <!-- tree 1 -->
  1737. <_>
  1738. <!-- root node -->
  1739. <feature>
  1740. <rects>
  1741. <_>
  1742. 6 13 6 7 -1.</_>
  1743. <_>
  1744. 8 13 2 7 3.</_></rects>
  1745. <tilted>0</tilted></feature>
  1746. <threshold>-6.6518150269985199e-03</threshold>
  1747. <left_node>1</left_node>
  1748. <right_val>-0.5475280880928040</right_val></_>
  1749. <_>
  1750. <!-- node 1 -->
  1751. <feature>
  1752. <rects>
  1753. <_>
  1754. 0 0 1 8 -1.</_>
  1755. <_>
  1756. 0 4 1 4 2.</_></rects>
  1757. <tilted>0</tilted></feature>
  1758. <threshold>-5.7092090137302876e-03</threshold>
  1759. <left_val>0.6427332758903503</left_val>
  1760. <right_val>-0.2151180952787399</right_val></_></_>
  1761. <_>
  1762. <!-- tree 2 -->
  1763. <_>
  1764. <!-- root node -->
  1765. <feature>
  1766. <rects>
  1767. <_>
  1768. 15 14 5 6 -1.</_>
  1769. <_>
  1770. 15 17 5 3 2.</_></rects>
  1771. <tilted>0</tilted></feature>
  1772. <threshold>0.0194501802325249</threshold>
  1773. <left_val>-0.5360500216484070</left_val>
  1774. <right_node>1</right_node></_>
  1775. <_>
  1776. <!-- node 1 -->
  1777. <feature>
  1778. <rects>
  1779. <_>
  1780. 0 7 6 9 -1.</_>
  1781. <_>
  1782. 2 7 2 9 3.</_></rects>
  1783. <tilted>0</tilted></feature>
  1784. <threshold>-5.4476498626172543e-03</threshold>
  1785. <left_val>0.5579450130462646</left_val>
  1786. <right_val>-0.2147496044635773</right_val></_></_>
  1787. <_>
  1788. <!-- tree 3 -->
  1789. <_>
  1790. <!-- root node -->
  1791. <feature>
  1792. <rects>
  1793. <_>
  1794. 15 11 4 1 -1.</_>
  1795. <_>
  1796. 16 12 2 1 2.</_></rects>
  1797. <tilted>1</tilted></feature>
  1798. <threshold>-1.6347589553333819e-04</threshold>
  1799. <left_node>1</left_node>
  1800. <right_val>-0.5596284270286560</right_val></_>
  1801. <_>
  1802. <!-- node 1 -->
  1803. <feature>
  1804. <rects>
  1805. <_>
  1806. 11 11 8 2 -1.</_>
  1807. <_>
  1808. 15 11 4 2 2.</_></rects>
  1809. <tilted>0</tilted></feature>
  1810. <threshold>7.1614650078117847e-03</threshold>
  1811. <left_val>-0.1660436987876892</left_val>
  1812. <right_val>0.4680525958538055</right_val></_></_>
  1813. <_>
  1814. <!-- tree 4 -->
  1815. <_>
  1816. <!-- root node -->
  1817. <feature>
  1818. <rects>
  1819. <_>
  1820. 0 1 12 11 -1.</_>
  1821. <_>
  1822. 3 1 6 11 2.</_></rects>
  1823. <tilted>0</tilted></feature>
  1824. <threshold>-0.0131451701745391</threshold>
  1825. <left_node>1</left_node>
  1826. <right_val>-0.4127990901470184</right_val></_>
  1827. <_>
  1828. <!-- node 1 -->
  1829. <feature>
  1830. <rects>
  1831. <_>
  1832. 8 8 6 4 -1.</_>
  1833. <_>
  1834. 7 9 6 2 2.</_></rects>
  1835. <tilted>1</tilted></feature>
  1836. <threshold>-0.0114368097856641</threshold>
  1837. <left_val>0.3790180087089539</left_val>
  1838. <right_val>-0.4179157912731171</right_val></_></_>
  1839. <_>
  1840. <!-- tree 5 -->
  1841. <_>
  1842. <!-- root node -->
  1843. <feature>
  1844. <rects>
  1845. <_>
  1846. 6 17 6 3 -1.</_>
  1847. <_>
  1848. 8 17 2 3 3.</_></rects>
  1849. <tilted>0</tilted></feature>
  1850. <threshold>-7.2912001051008701e-03</threshold>
  1851. <left_val>-0.7608966827392578</left_val>
  1852. <right_node>1</right_node></_>
  1853. <_>
  1854. <!-- node 1 -->
  1855. <feature>
  1856. <rects>
  1857. <_>
  1858. 0 0 1 4 -1.</_>
  1859. <_>
  1860. 0 2 1 2 2.</_></rects>
  1861. <tilted>0</tilted></feature>
  1862. <threshold>-5.2170921117067337e-04</threshold>
  1863. <left_val>0.3252761960029602</left_val>
  1864. <right_val>-0.3011097013950348</right_val></_></_>
  1865. <_>
  1866. <!-- tree 6 -->
  1867. <_>
  1868. <!-- root node -->
  1869. <feature>
  1870. <rects>
  1871. <_>
  1872. 3 1 1 3 -1.</_>
  1873. <_>
  1874. 2 2 1 1 3.</_></rects>
  1875. <tilted>1</tilted></feature>
  1876. <threshold>3.3754010219126940e-03</threshold>
  1877. <left_node>1</left_node>
  1878. <right_val>-0.7837396264076233</right_val></_>
  1879. <_>
  1880. <!-- node 1 -->
  1881. <feature>
  1882. <rects>
  1883. <_>
  1884. 18 11 2 3 -1.</_>
  1885. <_>
  1886. 18 12 2 1 3.</_></rects>
  1887. <tilted>0</tilted></feature>
  1888. <threshold>2.5100160855799913e-03</threshold>
  1889. <left_val>0.1852544993162155</left_val>
  1890. <right_val>-0.5808495879173279</right_val></_></_>
  1891. <_>
  1892. <!-- tree 7 -->
  1893. <_>
  1894. <!-- root node -->
  1895. <feature>
  1896. <rects>
  1897. <_>
  1898. 3 12 2 8 -1.</_>
  1899. <_>
  1900. 3 12 1 4 2.</_>
  1901. <_>
  1902. 4 16 1 4 2.</_></rects>
  1903. <tilted>0</tilted></feature>
  1904. <threshold>-1.2884209863841534e-03</threshold>
  1905. <left_val>0.2733950018882751</left_val>
  1906. <right_node>1</right_node></_>
  1907. <_>
  1908. <!-- node 1 -->
  1909. <feature>
  1910. <rects>
  1911. <_>
  1912. 3 12 3 3 -1.</_>
  1913. <_>
  1914. 4 12 1 3 3.</_></rects>
  1915. <tilted>0</tilted></feature>
  1916. <threshold>-1.8726480193436146e-03</threshold>
  1917. <left_val>0.1681987941265106</left_val>
  1918. <right_val>-0.5198690295219421</right_val></_></_>
  1919. <_>
  1920. <!-- tree 8 -->
  1921. <_>
  1922. <!-- root node -->
  1923. <feature>
  1924. <rects>
  1925. <_>
  1926. 11 18 4 2 -1.</_>
  1927. <_>
  1928. 12 18 2 2 2.</_></rects>
  1929. <tilted>0</tilted></feature>
  1930. <threshold>2.4010189808905125e-03</threshold>
  1931. <left_node>1</left_node>
  1932. <right_val>-0.8296467065811157</right_val></_>
  1933. <_>
  1934. <!-- node 1 -->
  1935. <feature>
  1936. <rects>
  1937. <_>
  1938. 17 10 3 3 -1.</_>
  1939. <_>
  1940. 17 11 3 1 3.</_></rects>
  1941. <tilted>0</tilted></feature>
  1942. <threshold>4.8938081599771976e-03</threshold>
  1943. <left_val>0.1679659932851791</left_val>
  1944. <right_val>-0.6553087234497070</right_val></_></_>
  1945. <_>
  1946. <!-- tree 9 -->
  1947. <_>
  1948. <!-- root node -->
  1949. <feature>
  1950. <rects>
  1951. <_>
  1952. 7 14 5 2 -1.</_>
  1953. <_>
  1954. 7 15 5 1 2.</_></rects>
  1955. <tilted>0</tilted></feature>
  1956. <threshold>3.1223020050674677e-03</threshold>
  1957. <left_val>-0.4352130889892578</left_val>
  1958. <right_node>1</right_node></_>
  1959. <_>
  1960. <!-- node 1 -->
  1961. <feature>
  1962. <rects>
  1963. <_>
  1964. 6 0 4 5 -1.</_>
  1965. <_>
  1966. 6 0 2 5 2.</_></rects>
  1967. <tilted>1</tilted></feature>
  1968. <threshold>0.0503664910793304</threshold>
  1969. <left_val>-5.8327801525592804e-03</left_val>
  1970. <right_val>0.7087830901145935</right_val></_></_>
  1971. <_>
  1972. <!-- tree 10 -->
  1973. <_>
  1974. <!-- root node -->
  1975. <feature>
  1976. <rects>
  1977. <_>
  1978. 6 1 5 8 -1.</_>
  1979. <_>
  1980. 6 5 5 4 2.</_></rects>
  1981. <tilted>0</tilted></feature>
  1982. <threshold>0.0361518003046513</threshold>
  1983. <left_node>1</left_node>
  1984. <right_val>0.4497916102409363</right_val></_>
  1985. <_>
  1986. <!-- node 1 -->
  1987. <feature>
  1988. <rects>
  1989. <_>
  1990. 3 1 9 8 -1.</_>
  1991. <_>
  1992. 3 5 9 4 2.</_></rects>
  1993. <tilted>0</tilted></feature>
  1994. <threshold>-0.1342658996582031</threshold>
  1995. <left_val>0.3947243094444275</left_val>
  1996. <right_val>-0.3758862912654877</right_val></_></_>
  1997. <_>
  1998. <!-- tree 11 -->
  1999. <_>
  2000. <!-- root node -->
  2001. <feature>
  2002. <rects>
  2003. <_>
  2004. 2 14 15 6 -1.</_>
  2005. <_>
  2006. 7 14 5 6 3.</_></rects>
  2007. <tilted>0</tilted></feature>
  2008. <threshold>-0.0277913697063923</threshold>
  2009. <left_node>1</left_node>
  2010. <right_val>-0.2948872148990631</right_val></_>
  2011. <_>
  2012. <!-- node 1 -->
  2013. <feature>
  2014. <rects>
  2015. <_>
  2016. 12 3 6 5 -1.</_>
  2017. <_>
  2018. 14 3 2 5 3.</_></rects>
  2019. <tilted>0</tilted></feature>
  2020. <threshold>-0.0127121703699231</threshold>
  2021. <left_val>-0.7201173901557922</left_val>
  2022. <right_val>0.3659502863883972</right_val></_></_>
  2023. <_>
  2024. <!-- tree 12 -->
  2025. <_>
  2026. <!-- root node -->
  2027. <feature>
  2028. <rects>
  2029. <_>
  2030. 5 16 2 2 -1.</_>
  2031. <_>
  2032. 5 16 1 2 2.</_></rects>
  2033. <tilted>1</tilted></feature>
  2034. <threshold>-3.8276749546639621e-04</threshold>
  2035. <left_node>1</left_node>
  2036. <right_val>-0.4058133959770203</right_val></_>
  2037. <_>
  2038. <!-- node 1 -->
  2039. <feature>
  2040. <rects>
  2041. <_>
  2042. 5 16 2 2 -1.</_>
  2043. <_>
  2044. 5 16 1 2 2.</_></rects>
  2045. <tilted>1</tilted></feature>
  2046. <threshold>-6.1330529861152172e-03</threshold>
  2047. <left_val>-0.5272595882415771</left_val>
  2048. <right_val>0.3604049980640411</right_val></_></_></trees>
  2049. <stage_threshold>-1.9884539842605591</stage_threshold>
  2050. <parent>6</parent>
  2051. <next>-1</next></_>
  2052. <_>
  2053. <!-- stage 8 -->
  2054. <trees>
  2055. <_>
  2056. <!-- tree 0 -->
  2057. <_>
  2058. <!-- root node -->
  2059. <feature>
  2060. <rects>
  2061. <_>
  2062. 9 8 6 4 -1.</_>
  2063. <_>
  2064. 11 10 2 4 3.</_></rects>
  2065. <tilted>1</tilted></feature>
  2066. <threshold>-0.0477486699819565</threshold>
  2067. <left_node>1</left_node>
  2068. <right_val>-0.5990238785743713</right_val></_>
  2069. <_>
  2070. <!-- node 1 -->
  2071. <feature>
  2072. <rects>
  2073. <_>
  2074. 4 11 3 4 -1.</_>
  2075. <_>
  2076. 4 13 3 2 2.</_></rects>
  2077. <tilted>0</tilted></feature>
  2078. <threshold>4.6201851218938828e-03</threshold>
  2079. <left_val>-0.2488749027252197</left_val>
  2080. <right_val>0.6920158267021179</right_val></_></_>
  2081. <_>
  2082. <!-- tree 1 -->
  2083. <_>
  2084. <!-- root node -->
  2085. <feature>
  2086. <rects>
  2087. <_>
  2088. 13 8 6 12 -1.</_>
  2089. <_>
  2090. 15 12 2 4 9.</_></rects>
  2091. <tilted>0</tilted></feature>
  2092. <threshold>-0.0853534564375877</threshold>
  2093. <left_node>1</left_node>
  2094. <right_val>-0.5171583294868469</right_val></_>
  2095. <_>
  2096. <!-- node 1 -->
  2097. <feature>
  2098. <rects>
  2099. <_>
  2100. 0 0 1 10 -1.</_>
  2101. <_>
  2102. 0 5 1 5 2.</_></rects>
  2103. <tilted>0</tilted></feature>
  2104. <threshold>-7.0110969245433807e-03</threshold>
  2105. <left_val>0.5695065259933472</left_val>
  2106. <right_val>-0.2474942058324814</right_val></_></_>
  2107. <_>
  2108. <!-- tree 2 -->
  2109. <_>
  2110. <!-- root node -->
  2111. <feature>
  2112. <rects>
  2113. <_>
  2114. 0 12 6 4 -1.</_>
  2115. <_>
  2116. 2 12 2 4 3.</_></rects>
  2117. <tilted>0</tilted></feature>
  2118. <threshold>-7.6567470096051693e-03</threshold>
  2119. <left_node>1</left_node>
  2120. <right_val>-0.3731651902198792</right_val></_>
  2121. <_>
  2122. <!-- node 1 -->
  2123. <feature>
  2124. <rects>
  2125. <_>
  2126. 7 5 8 6 -1.</_>
  2127. <_>
  2128. 5 7 8 2 3.</_></rects>
  2129. <tilted>1</tilted></feature>
  2130. <threshold>-0.0359194912016392</threshold>
  2131. <left_val>0.4943858087062836</left_val>
  2132. <right_val>-0.3958668112754822</right_val></_></_>
  2133. <_>
  2134. <!-- tree 3 -->
  2135. <_>
  2136. <!-- root node -->
  2137. <feature>
  2138. <rects>
  2139. <_>
  2140. 3 1 16 4 -1.</_>
  2141. <_>
  2142. 3 3 16 2 2.</_></rects>
  2143. <tilted>0</tilted></feature>
  2144. <threshold>-0.0743266269564629</threshold>
  2145. <left_val>0.5675597786903381</left_val>
  2146. <right_node>1</right_node></_>
  2147. <_>
  2148. <!-- node 1 -->
  2149. <feature>
  2150. <rects>
  2151. <_>
  2152. 6 2 10 9 -1.</_>
  2153. <_>
  2154. 6 5 10 3 3.</_></rects>
  2155. <tilted>0</tilted></feature>
  2156. <threshold>0.0901185870170593</threshold>
  2157. <left_val>-0.3892117142677307</left_val>
  2158. <right_val>0.3107909858226776</right_val></_></_>
  2159. <_>
  2160. <!-- tree 4 -->
  2161. <_>
  2162. <!-- root node -->
  2163. <feature>
  2164. <rects>
  2165. <_>
  2166. 14 10 6 10 -1.</_>
  2167. <_>
  2168. 17 10 3 10 2.</_></rects>
  2169. <tilted>0</tilted></feature>
  2170. <threshold>0.0167364608496428</threshold>
  2171. <left_val>-0.3667413890361786</left_val>
  2172. <right_node>1</right_node></_>
  2173. <_>
  2174. <!-- node 1 -->
  2175. <feature>
  2176. <rects>
  2177. <_>
  2178. 5 17 4 3 -1.</_>
  2179. <_>
  2180. 6 17 2 3 2.</_></rects>
  2181. <tilted>0</tilted></feature>
  2182. <threshold>1.8592580454424024e-03</threshold>
  2183. <left_val>0.3487572073936462</left_val>
  2184. <right_val>-0.5748311281204224</right_val></_></_>
  2185. <_>
  2186. <!-- tree 5 -->
  2187. <_>
  2188. <!-- root node -->
  2189. <feature>
  2190. <rects>
  2191. <_>
  2192. 5 12 3 2 -1.</_>
  2193. <_>
  2194. 6 12 1 2 3.</_></rects>
  2195. <tilted>0</tilted></feature>
  2196. <threshold>7.5264140032231808e-03</threshold>
  2197. <left_node>1</left_node>
  2198. <right_val>0.6787899136543274</right_val></_>
  2199. <_>
  2200. <!-- node 1 -->
  2201. <feature>
  2202. <rects>
  2203. <_>
  2204. 5 12 3 2 -1.</_>
  2205. <_>
  2206. 6 12 1 2 3.</_></rects>
  2207. <tilted>0</tilted></feature>
  2208. <threshold>-3.5309391096234322e-03</threshold>
  2209. <left_val>0.4861792027950287</left_val>
  2210. <right_val>-0.2566064000129700</right_val></_></_>
  2211. <_>
  2212. <!-- tree 6 -->
  2213. <_>
  2214. <!-- root node -->
  2215. <feature>
  2216. <rects>
  2217. <_>
  2218. 0 0 2 9 -1.</_>
  2219. <_>
  2220. 1 0 1 9 2.</_></rects>
  2221. <tilted>0</tilted></feature>
  2222. <threshold>-4.9510748795000836e-05</threshold>
  2223. <left_node>1</left_node>
  2224. <right_val>-0.4566124081611633</right_val></_>
  2225. <_>
  2226. <!-- node 1 -->
  2227. <feature>
  2228. <rects>
  2229. <_>
  2230. 2 6 3 2 -1.</_>
  2231. <_>
  2232. 2 6 3 1 2.</_></rects>
  2233. <tilted>1</tilted></feature>
  2234. <threshold>-6.8923248909413815e-03</threshold>
  2235. <left_val>-0.5713472962379456</left_val>
  2236. <right_val>0.3292104899883270</right_val></_></_>
  2237. <_>
  2238. <!-- tree 7 -->
  2239. <_>
  2240. <!-- root node -->
  2241. <feature>
  2242. <rects>
  2243. <_>
  2244. 7 16 6 3 -1.</_>
  2245. <_>
  2246. 9 16 2 3 3.</_></rects>
  2247. <tilted>0</tilted></feature>
  2248. <threshold>6.1156069859862328e-03</threshold>
  2249. <left_node>1</left_node>
  2250. <right_val>-0.7131536006927490</right_val></_>
  2251. <_>
  2252. <!-- node 1 -->
  2253. <feature>
  2254. <rects>
  2255. <_>
  2256. 7 17 6 2 -1.</_>
  2257. <_>
  2258. 9 17 2 2 3.</_></rects>
  2259. <tilted>0</tilted></feature>
  2260. <threshold>-5.5014882236719131e-03</threshold>
  2261. <left_val>-0.5913907885551453</left_val>
  2262. <right_val>0.1980594992637634</right_val></_></_>
  2263. <_>
  2264. <!-- tree 8 -->
  2265. <_>
  2266. <!-- root node -->
  2267. <feature>
  2268. <rects>
  2269. <_>
  2270. 6 3 9 6 -1.</_>
  2271. <_>
  2272. 4 5 9 2 3.</_></rects>
  2273. <tilted>1</tilted></feature>
  2274. <threshold>-0.0423780605196953</threshold>
  2275. <left_node>1</left_node>
  2276. <right_val>-0.3823930025100708</right_val></_>
  2277. <_>
  2278. <!-- node 1 -->
  2279. <feature>
  2280. <rects>
  2281. <_>
  2282. 6 15 3 2 -1.</_>
  2283. <_>
  2284. 7 16 1 2 3.</_></rects>
  2285. <tilted>1</tilted></feature>
  2286. <threshold>2.2011259570717812e-03</threshold>
  2287. <left_val>0.3345701098442078</left_val>
  2288. <right_val>-0.4303233921527863</right_val></_></_>
  2289. <_>
  2290. <!-- tree 9 -->
  2291. <_>
  2292. <!-- root node -->
  2293. <feature>
  2294. <rects>
  2295. <_>
  2296. 6 2 3 3 -1.</_>
  2297. <_>
  2298. 7 2 1 3 3.</_></rects>
  2299. <tilted>0</tilted></feature>
  2300. <threshold>2.1217379253357649e-03</threshold>
  2301. <left_node>1</left_node>
  2302. <right_val>-0.6831002235412598</right_val></_>
  2303. <_>
  2304. <!-- node 1 -->
  2305. <feature>
  2306. <rects>
  2307. <_>
  2308. 2 1 6 4 -1.</_>
  2309. <_>
  2310. 4 1 2 4 3.</_></rects>
  2311. <tilted>0</tilted></feature>
  2312. <threshold>6.4385468140244484e-03</threshold>
  2313. <left_val>0.2047861069440842</left_val>
  2314. <right_val>-0.6179394125938416</right_val></_></_>
  2315. <_>
  2316. <!-- tree 10 -->
  2317. <_>
  2318. <!-- root node -->
  2319. <feature>
  2320. <rects>
  2321. <_>
  2322. 13 11 4 2 -1.</_>
  2323. <_>
  2324. 13 11 2 1 2.</_>
  2325. <_>
  2326. 15 12 2 1 2.</_></rects>
  2327. <tilted>0</tilted></feature>
  2328. <threshold>3.1177410855889320e-03</threshold>
  2329. <left_node>1</left_node>
  2330. <right_val>0.5113716125488281</right_val></_>
  2331. <_>
  2332. <!-- node 1 -->
  2333. <feature>
  2334. <rects>
  2335. <_>
  2336. 14 10 2 2 -1.</_>
  2337. <_>
  2338. 14 10 1 1 2.</_>
  2339. <_>
  2340. 15 11 1 1 2.</_></rects>
  2341. <tilted>0</tilted></feature>
  2342. <threshold>4.2230269173160195e-04</threshold>
  2343. <left_val>-0.3644020855426788</left_val>
  2344. <right_val>0.2107304930686951</right_val></_></_>
  2345. <_>
  2346. <!-- tree 11 -->
  2347. <_>
  2348. <!-- root node -->
  2349. <feature>
  2350. <rects>
  2351. <_>
  2352. 17 7 3 3 -1.</_>
  2353. <_>
  2354. 18 8 1 3 3.</_></rects>
  2355. <tilted>1</tilted></feature>
  2356. <threshold>-6.5657291561365128e-03</threshold>
  2357. <left_val>-0.6458150148391724</left_val>
  2358. <right_node>1</right_node></_>
  2359. <_>
  2360. <!-- node 1 -->
  2361. <feature>
  2362. <rects>
  2363. <_>
  2364. 17 7 3 2 -1.</_>
  2365. <_>
  2366. 18 8 1 2 3.</_></rects>
  2367. <tilted>1</tilted></feature>
  2368. <threshold>2.5686610024422407e-03</threshold>
  2369. <left_val>0.2764356136322021</left_val>
  2370. <right_val>-0.3419849872589111</right_val></_></_>
  2371. <_>
  2372. <!-- tree 12 -->
  2373. <_>
  2374. <!-- root node -->
  2375. <feature>
  2376. <rects>
  2377. <_>
  2378. 0 3 1 2 -1.</_>
  2379. <_>
  2380. 0 4 1 1 2.</_></rects>
  2381. <tilted>0</tilted></feature>
  2382. <threshold>-6.2437567976303399e-05</threshold>
  2383. <left_node>1</left_node>
  2384. <right_val>-0.3175807893276215</right_val></_>
  2385. <_>
  2386. <!-- node 1 -->
  2387. <feature>
  2388. <rects>
  2389. <_>
  2390. 10 1 2 5 -1.</_>
  2391. <_>
  2392. 11 1 1 5 2.</_></rects>
  2393. <tilted>0</tilted></feature>
  2394. <threshold>-3.6269261036068201e-03</threshold>
  2395. <left_val>-0.8105195760726929</left_val>
  2396. <right_val>0.2721863090991974</right_val></_></_>
  2397. <_>
  2398. <!-- tree 13 -->
  2399. <_>
  2400. <!-- root node -->
  2401. <feature>
  2402. <rects>
  2403. <_>
  2404. 1 8 3 12 -1.</_>
  2405. <_>
  2406. 1 11 3 6 2.</_></rects>
  2407. <tilted>0</tilted></feature>
  2408. <threshold>-3.4638389479368925e-03</threshold>
  2409. <left_node>1</left_node>
  2410. <right_val>-0.3951576948165894</right_val></_>
  2411. <_>
  2412. <!-- node 1 -->
  2413. <feature>
  2414. <rects>
  2415. <_>
  2416. 2 10 8 2 -1.</_>
  2417. <_>
  2418. 2 10 4 2 2.</_></rects>
  2419. <tilted>1</tilted></feature>
  2420. <threshold>-0.0749301910400391</threshold>
  2421. <left_val>-0.5435386896133423</left_val>
  2422. <right_val>0.2610611915588379</right_val></_></_>
  2423. <_>
  2424. <!-- tree 14 -->
  2425. <_>
  2426. <!-- root node -->
  2427. <feature>
  2428. <rects>
  2429. <_>
  2430. 6 12 3 3 -1.</_>
  2431. <_>
  2432. 7 13 1 1 9.</_></rects>
  2433. <tilted>0</tilted></feature>
  2434. <threshold>-9.7247250378131866e-03</threshold>
  2435. <left_val>0.4112487137317657</left_val>
  2436. <right_node>1</right_node></_>
  2437. <_>
  2438. <!-- node 1 -->
  2439. <feature>
  2440. <rects>
  2441. <_>
  2442. 6 11 3 4 -1.</_>
  2443. <_>
  2444. 7 11 1 4 3.</_></rects>
  2445. <tilted>0</tilted></feature>
  2446. <threshold>4.5450199395418167e-03</threshold>
  2447. <left_val>-0.3157655000686646</left_val>
  2448. <right_val>0.3904697000980377</right_val></_></_>
  2449. <_>
  2450. <!-- tree 15 -->
  2451. <_>
  2452. <!-- root node -->
  2453. <feature>
  2454. <rects>
  2455. <_>
  2456. 5 17 4 2 -1.</_>
  2457. <_>
  2458. 6 17 2 2 2.</_></rects>
  2459. <tilted>0</tilted></feature>
  2460. <threshold>-2.7354240883141756e-03</threshold>
  2461. <left_val>-0.7490674853324890</left_val>
  2462. <right_node>1</right_node></_>
  2463. <_>
  2464. <!-- node 1 -->
  2465. <feature>
  2466. <rects>
  2467. <_>
  2468. 0 19 20 1 -1.</_>
  2469. <_>
  2470. 10 19 10 1 2.</_></rects>
  2471. <tilted>0</tilted></feature>
  2472. <threshold>-0.0169694703072309</threshold>
  2473. <left_val>-0.6243721842765808</left_val>
  2474. <right_val>0.1838738024234772</right_val></_></_></trees>
  2475. <stage_threshold>-2.0902318954467773</stage_threshold>
  2476. <parent>7</parent>
  2477. <next>-1</next></_>
  2478. <_>
  2479. <!-- stage 9 -->
  2480. <trees>
  2481. <_>
  2482. <!-- tree 0 -->
  2483. <_>
  2484. <!-- root node -->
  2485. <feature>
  2486. <rects>
  2487. <_>
  2488. 5 11 8 5 -1.</_>
  2489. <_>
  2490. 7 11 4 5 2.</_></rects>
  2491. <tilted>0</tilted></feature>
  2492. <threshold>-0.0249786991626024</threshold>
  2493. <left_node>1</left_node>
  2494. <right_val>-0.6069788932800293</right_val></_>
  2495. <_>
  2496. <!-- node 1 -->
  2497. <feature>
  2498. <rects>
  2499. <_>
  2500. 10 8 8 9 -1.</_>
  2501. <_>
  2502. 10 11 8 3 3.</_></rects>
  2503. <tilted>0</tilted></feature>
  2504. <threshold>-0.0580078698694706</threshold>
  2505. <left_val>0.7147802114486694</left_val>
  2506. <right_val>-0.2994323968887329</right_val></_></_>
  2507. <_>
  2508. <!-- tree 1 -->
  2509. <_>
  2510. <!-- root node -->
  2511. <feature>
  2512. <rects>
  2513. <_>
  2514. 0 13 6 2 -1.</_>
  2515. <_>
  2516. 2 13 2 2 3.</_></rects>
  2517. <tilted>0</tilted></feature>
  2518. <threshold>-5.1753749139606953e-03</threshold>
  2519. <left_node>1</left_node>
  2520. <right_val>-0.3529798984527588</right_val></_>
  2521. <_>
  2522. <!-- node 1 -->
  2523. <feature>
  2524. <rects>
  2525. <_>
  2526. 18 14 2 1 -1.</_>
  2527. <_>
  2528. 18 14 1 1 2.</_></rects>
  2529. <tilted>1</tilted></feature>
  2530. <threshold>-8.9618662605062127e-04</threshold>
  2531. <left_val>0.5441746115684509</left_val>
  2532. <right_val>-0.3978995084762573</right_val></_></_>
  2533. <_>
  2534. <!-- tree 2 -->
  2535. <_>
  2536. <!-- root node -->
  2537. <feature>
  2538. <rects>
  2539. <_>
  2540. 1 2 2 4 -1.</_>
  2541. <_>
  2542. 2 2 1 4 2.</_></rects>
  2543. <tilted>0</tilted></feature>
  2544. <threshold>-2.8718139219563454e-05</threshold>
  2545. <left_node>1</left_node>
  2546. <right_val>-0.4889818131923676</right_val></_>
  2547. <_>
  2548. <!-- node 1 -->
  2549. <feature>
  2550. <rects>
  2551. <_>
  2552. 5 5 8 5 -1.</_>
  2553. <_>
  2554. 9 5 4 5 2.</_></rects>
  2555. <tilted>0</tilted></feature>
  2556. <threshold>4.7620530240237713e-03</threshold>
  2557. <left_val>-0.3114455938339233</left_val>
  2558. <right_val>0.4678679108619690</right_val></_></_>
  2559. <_>
  2560. <!-- tree 3 -->
  2561. <_>
  2562. <!-- root node -->
  2563. <feature>
  2564. <rects>
  2565. <_>
  2566. 7 13 5 4 -1.</_>
  2567. <_>
  2568. 7 15 5 2 2.</_></rects>
  2569. <tilted>0</tilted></feature>
  2570. <threshold>0.0197512805461884</threshold>
  2571. <left_val>-0.4302048981189728</left_val>
  2572. <right_node>1</right_node></_>
  2573. <_>
  2574. <!-- node 1 -->
  2575. <feature>
  2576. <rects>
  2577. <_>
  2578. 17 18 3 2 -1.</_>
  2579. <_>
  2580. 17 19 3 1 2.</_></rects>
  2581. <tilted>0</tilted></feature>
  2582. <threshold>-1.2683609966188669e-03</threshold>
  2583. <left_val>-0.5409085154533386</left_val>
  2584. <right_val>0.3979752063751221</right_val></_></_>
  2585. <_>
  2586. <!-- tree 4 -->
  2587. <_>
  2588. <!-- root node -->
  2589. <feature>
  2590. <rects>
  2591. <_>
  2592. 0 2 1 2 -1.</_>
  2593. <_>
  2594. 0 3 1 1 2.</_></rects>
  2595. <tilted>0</tilted></feature>
  2596. <threshold>-4.5749718992738053e-05</threshold>
  2597. <left_node>1</left_node>
  2598. <right_val>-0.4451893866062164</right_val></_>
  2599. <_>
  2600. <!-- node 1 -->
  2601. <feature>
  2602. <rects>
  2603. <_>
  2604. 3 0 1 3 -1.</_>
  2605. <_>
  2606. 2 1 1 1 3.</_></rects>
  2607. <tilted>1</tilted></feature>
  2608. <threshold>2.4090509396046400e-03</threshold>
  2609. <left_val>0.2882230877876282</left_val>
  2610. <right_val>-0.5451431274414062</right_val></_></_>
  2611. <_>
  2612. <!-- tree 5 -->
  2613. <_>
  2614. <!-- root node -->
  2615. <feature>
  2616. <rects>
  2617. <_>
  2618. 10 11 3 4 -1.</_>
  2619. <_>
  2620. 11 11 1 4 3.</_></rects>
  2621. <tilted>0</tilted></feature>
  2622. <threshold>-4.5728669501841068e-03</threshold>
  2623. <left_val>0.5503987073898315</left_val>
  2624. <right_node>1</right_node></_>
  2625. <_>
  2626. <!-- node 1 -->
  2627. <feature>
  2628. <rects>
  2629. <_>
  2630. 14 11 4 8 -1.</_>
  2631. <_>
  2632. 16 11 2 8 2.</_></rects>
  2633. <tilted>0</tilted></feature>
  2634. <threshold>8.9018214493989944e-03</threshold>
  2635. <left_val>-0.4159888923168182</left_val>
  2636. <right_val>0.1746889948844910</right_val></_></_>
  2637. <_>
  2638. <!-- tree 6 -->
  2639. <_>
  2640. <!-- root node -->
  2641. <feature>
  2642. <rects>
  2643. <_>
  2644. 2 2 9 6 -1.</_>
  2645. <_>
  2646. 2 5 9 3 2.</_></rects>
  2647. <tilted>0</tilted></feature>
  2648. <threshold>-0.1205644980072975</threshold>
  2649. <left_val>0.6889057755470276</left_val>
  2650. <right_node>1</right_node></_>
  2651. <_>
  2652. <!-- node 1 -->
  2653. <feature>
  2654. <rects>
  2655. <_>
  2656. 0 4 17 8 -1.</_>
  2657. <_>
  2658. 0 6 17 4 2.</_></rects>
  2659. <tilted>0</tilted></feature>
  2660. <threshold>0.0469199307262897</threshold>
  2661. <left_val>-0.4226630926132202</left_val>
  2662. <right_val>0.1701094061136246</right_val></_></_>
  2663. <_>
  2664. <!-- tree 7 -->
  2665. <_>
  2666. <!-- root node -->
  2667. <feature>
  2668. <rects>
  2669. <_>
  2670. 15 17 5 3 -1.</_>
  2671. <_>
  2672. 15 18 5 1 3.</_></rects>
  2673. <tilted>0</tilted></feature>
  2674. <threshold>-4.2390259914100170e-03</threshold>
  2675. <left_val>-0.6304534077644348</left_val>
  2676. <right_node>1</right_node></_>
  2677. <_>
  2678. <!-- node 1 -->
  2679. <feature>
  2680. <rects>
  2681. <_>
  2682. 2 11 2 8 -1.</_>
  2683. <_>
  2684. 2 15 2 4 2.</_></rects>
  2685. <tilted>0</tilted></feature>
  2686. <threshold>3.2174249645322561e-03</threshold>
  2687. <left_val>-0.3609794974327087</left_val>
  2688. <right_val>0.2493373006582260</right_val></_></_>
  2689. <_>
  2690. <!-- tree 8 -->
  2691. <_>
  2692. <!-- root node -->
  2693. <feature>
  2694. <rects>
  2695. <_>
  2696. 3 12 3 3 -1.</_>
  2697. <_>
  2698. 4 12 1 3 3.</_></rects>
  2699. <tilted>0</tilted></feature>
  2700. <threshold>-8.5738790221512318e-04</threshold>
  2701. <left_val>0.3099347949028015</left_val>
  2702. <right_node>1</right_node></_>
  2703. <_>
  2704. <!-- node 1 -->
  2705. <feature>
  2706. <rects>
  2707. <_>
  2708. 3 12 9 7 -1.</_>
  2709. <_>
  2710. 6 12 3 7 3.</_></rects>
  2711. <tilted>0</tilted></feature>
  2712. <threshold>-0.0184324495494366</threshold>
  2713. <left_val>0.0977584496140480</left_val>
  2714. <right_val>-0.5074235200881958</right_val></_></_>
  2715. <_>
  2716. <!-- tree 9 -->
  2717. <_>
  2718. <!-- root node -->
  2719. <feature>
  2720. <rects>
  2721. <_>
  2722. 13 1 4 7 -1.</_>
  2723. <_>
  2724. 14 1 2 7 2.</_></rects>
  2725. <tilted>0</tilted></feature>
  2726. <threshold>5.8692828752100468e-03</threshold>
  2727. <left_node>1</left_node>
  2728. <right_val>-0.7455605864524841</right_val></_>
  2729. <_>
  2730. <!-- node 1 -->
  2731. <feature>
  2732. <rects>
  2733. <_>
  2734. 3 16 2 2 -1.</_>
  2735. <_>
  2736. 3 16 1 2 2.</_></rects>
  2737. <tilted>1</tilted></feature>
  2738. <threshold>-6.8751699291169643e-03</threshold>
  2739. <left_val>-0.6745839118957520</left_val>
  2740. <right_val>0.1591881066560745</right_val></_></_>
  2741. <_>
  2742. <!-- tree 10 -->
  2743. <_>
  2744. <!-- root node -->
  2745. <feature>
  2746. <rects>
  2747. <_>
  2748. 3 17 2 1 -1.</_>
  2749. <_>
  2750. 3 17 1 1 2.</_></rects>
  2751. <tilted>1</tilted></feature>
  2752. <threshold>-6.8542227381840348e-05</threshold>
  2753. <left_node>1</left_node>
  2754. <right_val>-0.4127942025661469</right_val></_>
  2755. <_>
  2756. <!-- node 1 -->
  2757. <feature>
  2758. <rects>
  2759. <_>
  2760. 4 9 6 6 -1.</_>
  2761. <_>
  2762. 4 9 3 3 2.</_>
  2763. <_>
  2764. 7 12 3 3 2.</_></rects>
  2765. <tilted>0</tilted></feature>
  2766. <threshold>-0.0106585798785090</threshold>
  2767. <left_val>0.3700270950794220</left_val>
  2768. <right_val>-0.2173172980546951</right_val></_></_>
  2769. <_>
  2770. <!-- tree 11 -->
  2771. <_>
  2772. <!-- root node -->
  2773. <feature>
  2774. <rects>
  2775. <_>
  2776. 11 13 3 1 -1.</_>
  2777. <_>
  2778. 12 13 1 1 3.</_></rects>
  2779. <tilted>0</tilted></feature>
  2780. <threshold>-1.8811509944498539e-03</threshold>
  2781. <left_val>0.5790283083915710</left_val>
  2782. <right_node>1</right_node></_>
  2783. <_>
  2784. <!-- node 1 -->
  2785. <feature>
  2786. <rects>
  2787. <_>
  2788. 0 0 20 3 -1.</_>
  2789. <_>
  2790. 5 0 10 3 2.</_></rects>
  2791. <tilted>0</tilted></feature>
  2792. <threshold>-0.0223091300576925</threshold>
  2793. <left_val>0.1972568035125732</left_val>
  2794. <right_val>-0.3247519135475159</right_val></_></_>
  2795. <_>
  2796. <!-- tree 12 -->
  2797. <_>
  2798. <!-- root node -->
  2799. <feature>
  2800. <rects>
  2801. <_>
  2802. 0 0 1 2 -1.</_>
  2803. <_>
  2804. 0 1 1 1 2.</_></rects>
  2805. <tilted>0</tilted></feature>
  2806. <threshold>6.5826578065752983e-04</threshold>
  2807. <left_node>1</left_node>
  2808. <right_val>-0.6063023805618286</right_val></_>
  2809. <_>
  2810. <!-- node 1 -->
  2811. <feature>
  2812. <rects>
  2813. <_>
  2814. 17 0 3 1 -1.</_>
  2815. <_>
  2816. 18 1 1 1 3.</_></rects>
  2817. <tilted>1</tilted></feature>
  2818. <threshold>-5.0781588070094585e-03</threshold>
  2819. <left_val>-0.7712330222129822</left_val>
  2820. <right_val>0.1818612962961197</right_val></_></_>
  2821. <_>
  2822. <!-- tree 13 -->
  2823. <_>
  2824. <!-- root node -->
  2825. <feature>
  2826. <rects>
  2827. <_>
  2828. 4 0 8 9 -1.</_>
  2829. <_>
  2830. 4 3 8 3 3.</_></rects>
  2831. <tilted>0</tilted></feature>
  2832. <threshold>0.0562150813639164</threshold>
  2833. <left_node>1</left_node>
  2834. <right_val>0.5056139826774597</right_val></_>
  2835. <_>
  2836. <!-- node 1 -->
  2837. <feature>
  2838. <rects>
  2839. <_>
  2840. 6 0 6 4 -1.</_>
  2841. <_>
  2842. 6 2 6 2 2.</_></rects>
  2843. <tilted>0</tilted></feature>
  2844. <threshold>-0.0377205908298492</threshold>
  2845. <left_val>0.3605211079120636</left_val>
  2846. <right_val>-0.3274376094341278</right_val></_></_>
  2847. <_>
  2848. <!-- tree 14 -->
  2849. <_>
  2850. <!-- root node -->
  2851. <feature>
  2852. <rects>
  2853. <_>
  2854. 18 0 2 1 -1.</_>
  2855. <_>
  2856. 18 0 1 1 2.</_></rects>
  2857. <tilted>1</tilted></feature>
  2858. <threshold>3.9480631239712238e-03</threshold>
  2859. <left_node>1</left_node>
  2860. <right_val>-0.7578818202018738</right_val></_>
  2861. <_>
  2862. <!-- node 1 -->
  2863. <feature>
  2864. <rects>
  2865. <_>
  2866. 14 2 6 1 -1.</_>
  2867. <_>
  2868. 17 2 3 1 2.</_></rects>
  2869. <tilted>0</tilted></feature>
  2870. <threshold>-2.4269670248031616e-03</threshold>
  2871. <left_val>0.5207610130310059</left_val>
  2872. <right_val>-0.0610213615000248</right_val></_></_></trees>
  2873. <stage_threshold>-1.9407310485839844</stage_threshold>
  2874. <parent>8</parent>
  2875. <next>-1</next></_>
  2876. <_>
  2877. <!-- stage 10 -->
  2878. <trees>
  2879. <_>
  2880. <!-- tree 0 -->
  2881. <_>
  2882. <!-- root node -->
  2883. <feature>
  2884. <rects>
  2885. <_>
  2886. 5 13 8 2 -1.</_>
  2887. <_>
  2888. 7 13 4 2 2.</_></rects>
  2889. <tilted>0</tilted></feature>
  2890. <threshold>-0.0169066991657019</threshold>
  2891. <left_node>1</left_node>
  2892. <right_val>-0.4750126898288727</right_val></_>
  2893. <_>
  2894. <!-- node 1 -->
  2895. <feature>
  2896. <rects>
  2897. <_>
  2898. 15 12 3 8 -1.</_>
  2899. <_>
  2900. 15 16 3 4 2.</_></rects>
  2901. <tilted>0</tilted></feature>
  2902. <threshold>0.0253278408199549</threshold>
  2903. <left_val>-0.4401676058769226</left_val>
  2904. <right_val>0.6088535189628601</right_val></_></_>
  2905. <_>
  2906. <!-- tree 1 -->
  2907. <_>
  2908. <!-- root node -->
  2909. <feature>
  2910. <rects>
  2911. <_>
  2912. 5 10 8 3 -1.</_>
  2913. <_>
  2914. 5 11 8 1 3.</_></rects>
  2915. <tilted>0</tilted></feature>
  2916. <threshold>-0.0156633201986551</threshold>
  2917. <left_val>0.5710005164146423</left_val>
  2918. <right_node>1</right_node></_>
  2919. <_>
  2920. <!-- node 1 -->
  2921. <feature>
  2922. <rects>
  2923. <_>
  2924. 5 0 11 9 -1.</_>
  2925. <_>
  2926. 5 3 11 3 3.</_></rects>
  2927. <tilted>0</tilted></feature>
  2928. <threshold>-0.1610189974308014</threshold>
  2929. <left_val>0.4098914861679077</left_val>
  2930. <right_val>-0.3814237117767334</right_val></_></_>
  2931. <_>
  2932. <!-- tree 2 -->
  2933. <_>
  2934. <!-- root node -->
  2935. <feature>
  2936. <rects>
  2937. <_>
  2938. 18 14 2 2 -1.</_>
  2939. <_>
  2940. 19 14 1 2 2.</_></rects>
  2941. <tilted>0</tilted></feature>
  2942. <threshold>1.6885380318854004e-04</threshold>
  2943. <left_val>-0.4795849025249481</left_val>
  2944. <right_node>1</right_node></_>
  2945. <_>
  2946. <!-- node 1 -->
  2947. <feature>
  2948. <rects>
  2949. <_>
  2950. 1 3 9 8 -1.</_>
  2951. <_>
  2952. 4 3 3 8 3.</_></rects>
  2953. <tilted>0</tilted></feature>
  2954. <threshold>-3.0552360694855452e-03</threshold>
  2955. <left_val>0.4285230040550232</left_val>
  2956. <right_val>-0.2825263142585754</right_val></_></_>
  2957. <_>
  2958. <!-- tree 3 -->
  2959. <_>
  2960. <!-- root node -->
  2961. <feature>
  2962. <rects>
  2963. <_>
  2964. 3 6 2 3 -1.</_>
  2965. <_>
  2966. 2 7 2 1 3.</_></rects>
  2967. <tilted>1</tilted></feature>
  2968. <threshold>4.8042940907180309e-03</threshold>
  2969. <left_node>1</left_node>
  2970. <right_val>-0.6865913867950439</right_val></_>
  2971. <_>
  2972. <!-- node 1 -->
  2973. <feature>
  2974. <rects>
  2975. <_>
  2976. 3 6 2 3 -1.</_>
  2977. <_>
  2978. 2 7 2 1 3.</_></rects>
  2979. <tilted>1</tilted></feature>
  2980. <threshold>-5.0092511810362339e-03</threshold>
  2981. <left_val>-0.5903354287147522</left_val>
  2982. <right_val>0.1973250061273575</right_val></_></_>
  2983. <_>
  2984. <!-- tree 4 -->
  2985. <_>
  2986. <!-- root node -->
  2987. <feature>
  2988. <rects>
  2989. <_>
  2990. 17 7 1 12 -1.</_>
  2991. <_>
  2992. 13 11 1 4 3.</_></rects>
  2993. <tilted>1</tilted></feature>
  2994. <threshold>-0.0371195189654827</threshold>
  2995. <left_node>1</left_node>
  2996. <right_val>-0.4313096106052399</right_val></_>
  2997. <_>
  2998. <!-- node 1 -->
  2999. <feature>
  3000. <rects>
  3001. <_>
  3002. 0 0 1 15 -1.</_>
  3003. <_>
  3004. 0 5 1 5 3.</_></rects>
  3005. <tilted>0</tilted></feature>
  3006. <threshold>3.7857799325138330e-03</threshold>
  3007. <left_val>0.3359619081020355</left_val>
  3008. <right_val>-0.3740172088146210</right_val></_></_>
  3009. <_>
  3010. <!-- tree 5 -->
  3011. <_>
  3012. <!-- root node -->
  3013. <feature>
  3014. <rects>
  3015. <_>
  3016. 6 9 6 3 -1.</_>
  3017. <_>
  3018. 6 10 6 1 3.</_></rects>
  3019. <tilted>0</tilted></feature>
  3020. <threshold>-0.0108698504045606</threshold>
  3021. <left_val>0.5484120845794678</left_val>
  3022. <right_node>1</right_node></_>
  3023. <_>
  3024. <!-- node 1 -->
  3025. <feature>
  3026. <rects>
  3027. <_>
  3028. 3 18 3 2 -1.</_>
  3029. <_>
  3030. 3 19 3 1 2.</_></rects>
  3031. <tilted>0</tilted></feature>
  3032. <threshold>4.0577541221864522e-04</threshold>
  3033. <left_val>-0.5002269744873047</left_val>
  3034. <right_val>0.0514238588511944</right_val></_></_>
  3035. <_>
  3036. <!-- tree 6 -->
  3037. <_>
  3038. <!-- root node -->
  3039. <feature>
  3040. <rects>
  3041. <_>
  3042. 16 17 4 3 -1.</_>
  3043. <_>
  3044. 16 18 4 1 3.</_></rects>
  3045. <tilted>0</tilted></feature>
  3046. <threshold>5.0201490521430969e-03</threshold>
  3047. <left_node>1</left_node>
  3048. <right_val>-0.5901622772216797</right_val></_>
  3049. <_>
  3050. <!-- node 1 -->
  3051. <feature>
  3052. <rects>
  3053. <_>
  3054. 10 17 4 3 -1.</_>
  3055. <_>
  3056. 11 17 2 3 2.</_></rects>
  3057. <tilted>0</tilted></feature>
  3058. <threshold>2.5601210072636604e-03</threshold>
  3059. <left_val>0.1946980059146881</left_val>
  3060. <right_val>-0.6464836001396179</right_val></_></_>
  3061. <_>
  3062. <!-- tree 7 -->
  3063. <_>
  3064. <!-- root node -->
  3065. <feature>
  3066. <rects>
  3067. <_>
  3068. 13 13 4 3 -1.</_>
  3069. <_>
  3070. 14 13 2 3 2.</_></rects>
  3071. <tilted>0</tilted></feature>
  3072. <threshold>-1.2395749799907207e-03</threshold>
  3073. <left_node>1</left_node>
  3074. <right_val>-0.2776215970516205</right_val></_>
  3075. <_>
  3076. <!-- node 1 -->
  3077. <feature>
  3078. <rects>
  3079. <_>
  3080. 4 15 3 2 -1.</_>
  3081. <_>
  3082. 5 16 1 2 3.</_></rects>
  3083. <tilted>1</tilted></feature>
  3084. <threshold>-5.1075750961899757e-03</threshold>
  3085. <left_val>-0.6114916205406189</left_val>
  3086. <right_val>0.3525038957595825</right_val></_></_>
  3087. <_>
  3088. <!-- tree 8 -->
  3089. <_>
  3090. <!-- root node -->
  3091. <feature>
  3092. <rects>
  3093. <_>
  3094. 0 4 2 2 -1.</_>
  3095. <_>
  3096. 1 4 1 2 2.</_></rects>
  3097. <tilted>0</tilted></feature>
  3098. <threshold>-6.4853738876990974e-05</threshold>
  3099. <left_node>1</left_node>
  3100. <right_val>-0.3400886058807373</right_val></_>
  3101. <_>
  3102. <!-- node 1 -->
  3103. <feature>
  3104. <rects>
  3105. <_>
  3106. 4 0 2 5 -1.</_>
  3107. <_>
  3108. 5 0 1 5 2.</_></rects>
  3109. <tilted>0</tilted></feature>
  3110. <threshold>2.3282810579985380e-03</threshold>
  3111. <left_val>0.2713474929332733</left_val>
  3112. <right_val>-0.6691539883613586</right_val></_></_>
  3113. <_>
  3114. <!-- tree 9 -->
  3115. <_>
  3116. <!-- root node -->
  3117. <feature>
  3118. <rects>
  3119. <_>
  3120. 1 9 3 8 -1.</_>
  3121. <_>
  3122. 1 11 3 4 2.</_></rects>
  3123. <tilted>0</tilted></feature>
  3124. <threshold>-1.5571110416203737e-03</threshold>
  3125. <left_node>1</left_node>
  3126. <right_val>-0.4114424884319305</right_val></_>
  3127. <_>
  3128. <!-- node 1 -->
  3129. <feature>
  3130. <rects>
  3131. <_>
  3132. 5 8 1 3 -1.</_>
  3133. <_>
  3134. 4 9 1 1 3.</_></rects>
  3135. <tilted>1</tilted></feature>
  3136. <threshold>2.3992219939827919e-03</threshold>
  3137. <left_val>0.2593970000743866</left_val>
  3138. <right_val>-0.4038029909133911</right_val></_></_>
  3139. <_>
  3140. <!-- tree 10 -->
  3141. <_>
  3142. <!-- root node -->
  3143. <feature>
  3144. <rects>
  3145. <_>
  3146. 4 13 2 1 -1.</_>
  3147. <_>
  3148. 5 13 1 1 2.</_></rects>
  3149. <tilted>0</tilted></feature>
  3150. <threshold>7.7784422319382429e-04</threshold>
  3151. <left_node>1</left_node>
  3152. <right_val>0.2952392101287842</right_val></_>
  3153. <_>
  3154. <!-- node 1 -->
  3155. <feature>
  3156. <rects>
  3157. <_>
  3158. 9 11 4 9 -1.</_>
  3159. <_>
  3160. 11 11 2 9 2.</_></rects>
  3161. <tilted>0</tilted></feature>
  3162. <threshold>3.2334199640899897e-03</threshold>
  3163. <left_val>-0.5843685269355774</left_val>
  3164. <right_val>-0.0179366394877434</right_val></_></_>
  3165. <_>
  3166. <!-- tree 11 -->
  3167. <_>
  3168. <!-- root node -->
  3169. <feature>
  3170. <rects>
  3171. <_>
  3172. 0 1 1 2 -1.</_>
  3173. <_>
  3174. 0 2 1 1 2.</_></rects>
  3175. <tilted>0</tilted></feature>
  3176. <threshold>-5.6113858590833843e-05</threshold>
  3177. <left_node>1</left_node>
  3178. <right_val>-0.3502165079116821</right_val></_>
  3179. <_>
  3180. <!-- node 1 -->
  3181. <feature>
  3182. <rects>
  3183. <_>
  3184. 0 0 1 3 -1.</_>
  3185. <_>
  3186. 0 1 1 1 3.</_></rects>
  3187. <tilted>0</tilted></feature>
  3188. <threshold>1.9111000001430511e-03</threshold>
  3189. <left_val>0.2631261050701141</left_val>
  3190. <right_val>-0.6154934763908386</right_val></_></_>
  3191. <_>
  3192. <!-- tree 12 -->
  3193. <_>
  3194. <!-- root node -->
  3195. <feature>
  3196. <rects>
  3197. <_>
  3198. 12 11 1 4 -1.</_>
  3199. <_>
  3200. 12 12 1 2 2.</_></rects>
  3201. <tilted>0</tilted></feature>
  3202. <threshold>-3.4321150742471218e-03</threshold>
  3203. <left_val>0.3749330043792725</left_val>
  3204. <right_node>1</right_node></_>
  3205. <_>
  3206. <!-- node 1 -->
  3207. <feature>
  3208. <rects>
  3209. <_>
  3210. 16 10 3 3 -1.</_>
  3211. <_>
  3212. 15 11 3 1 3.</_></rects>
  3213. <tilted>1</tilted></feature>
  3214. <threshold>-0.0145419696345925</threshold>
  3215. <left_val>0.4378893077373505</left_val>
  3216. <right_val>-0.3013161122798920</right_val></_></_>
  3217. <_>
  3218. <!-- tree 13 -->
  3219. <_>
  3220. <!-- root node -->
  3221. <feature>
  3222. <rects>
  3223. <_>
  3224. 18 12 1 6 -1.</_>
  3225. <_>
  3226. 18 12 1 3 2.</_></rects>
  3227. <tilted>1</tilted></feature>
  3228. <threshold>-0.0250270701944828</threshold>
  3229. <left_val>-0.5282974839210510</left_val>
  3230. <right_node>1</right_node></_>
  3231. <_>
  3232. <!-- node 1 -->
  3233. <feature>
  3234. <rects>
  3235. <_>
  3236. 4 17 3 2 -1.</_>
  3237. <_>
  3238. 5 17 1 2 3.</_></rects>
  3239. <tilted>0</tilted></feature>
  3240. <threshold>-3.1183639075607061e-03</threshold>
  3241. <left_val>-0.8133684992790222</left_val>
  3242. <right_val>0.1792842000722885</right_val></_></_>
  3243. <_>
  3244. <!-- tree 14 -->
  3245. <_>
  3246. <!-- root node -->
  3247. <feature>
  3248. <rects>
  3249. <_>
  3250. 17 7 3 2 -1.</_>
  3251. <_>
  3252. 18 8 1 2 3.</_></rects>
  3253. <tilted>1</tilted></feature>
  3254. <threshold>2.9415208846330643e-03</threshold>
  3255. <left_node>1</left_node>
  3256. <right_val>-0.4724305868148804</right_val></_>
  3257. <_>
  3258. <!-- node 1 -->
  3259. <feature>
  3260. <rects>
  3261. <_>
  3262. 18 9 2 1 -1.</_>
  3263. <_>
  3264. 18 9 1 1 2.</_></rects>
  3265. <tilted>1</tilted></feature>
  3266. <threshold>-2.4807679001241922e-03</threshold>
  3267. <left_val>-0.6005833148956299</left_val>
  3268. <right_val>0.2149710953235626</right_val></_></_>
  3269. <_>
  3270. <!-- tree 15 -->
  3271. <_>
  3272. <!-- root node -->
  3273. <feature>
  3274. <rects>
  3275. <_>
  3276. 8 11 4 5 -1.</_>
  3277. <_>
  3278. 9 12 2 5 2.</_></rects>
  3279. <tilted>1</tilted></feature>
  3280. <threshold>-4.2498838156461716e-03</threshold>
  3281. <left_node>1</left_node>
  3282. <right_val>-0.3323060870170593</right_val></_>
  3283. <_>
  3284. <!-- node 1 -->
  3285. <feature>
  3286. <rects>
  3287. <_>
  3288. 7 1 2 7 -1.</_>
  3289. <_>
  3290. 8 1 1 7 2.</_></rects>
  3291. <tilted>0</tilted></feature>
  3292. <threshold>7.6959328725934029e-03</threshold>
  3293. <left_val>0.2124706953763962</left_val>
  3294. <right_val>-0.8196725249290466</right_val></_></_>
  3295. <_>
  3296. <!-- tree 16 -->
  3297. <_>
  3298. <!-- root node -->
  3299. <feature>
  3300. <rects>
  3301. <_>
  3302. 4 4 14 6 -1.</_>
  3303. <_>
  3304. 4 6 14 2 3.</_></rects>
  3305. <tilted>0</tilted></feature>
  3306. <threshold>-0.0614260397851467</threshold>
  3307. <left_val>0.5220044851303101</left_val>
  3308. <right_node>1</right_node></_>
  3309. <_>
  3310. <!-- node 1 -->
  3311. <feature>
  3312. <rects>
  3313. <_>
  3314. 2 2 11 6 -1.</_>
  3315. <_>
  3316. 2 5 11 3 2.</_></rects>
  3317. <tilted>0</tilted></feature>
  3318. <threshold>0.0531767904758453</threshold>
  3319. <left_val>-0.2985176146030426</left_val>
  3320. <right_val>0.2865419089794159</right_val></_></_>
  3321. <_>
  3322. <!-- tree 17 -->
  3323. <_>
  3324. <!-- root node -->
  3325. <feature>
  3326. <rects>
  3327. <_>
  3328. 18 16 2 2 -1.</_>
  3329. <_>
  3330. 18 17 2 1 2.</_></rects>
  3331. <tilted>0</tilted></feature>
  3332. <threshold>2.5695779186207801e-05</threshold>
  3333. <left_val>-0.3471929132938385</left_val>
  3334. <right_node>1</right_node></_>
  3335. <_>
  3336. <!-- node 1 -->
  3337. <feature>
  3338. <rects>
  3339. <_>
  3340. 17 11 2 6 -1.</_>
  3341. <_>
  3342. 18 11 1 6 2.</_></rects>
  3343. <tilted>0</tilted></feature>
  3344. <threshold>2.4311970919370651e-03</threshold>
  3345. <left_val>-0.1213349029421806</left_val>
  3346. <right_val>0.3896535038948059</right_val></_></_>
  3347. <_>
  3348. <!-- tree 18 -->
  3349. <_>
  3350. <!-- root node -->
  3351. <feature>
  3352. <rects>
  3353. <_>
  3354. 17 0 3 3 -1.</_>
  3355. <_>
  3356. 18 1 1 3 3.</_></rects>
  3357. <tilted>1</tilted></feature>
  3358. <threshold>5.6956289336085320e-03</threshold>
  3359. <left_node>1</left_node>
  3360. <right_val>-0.6636403203010559</right_val></_>
  3361. <_>
  3362. <!-- node 1 -->
  3363. <feature>
  3364. <rects>
  3365. <_>
  3366. 18 0 2 6 -1.</_>
  3367. <_>
  3368. 18 3 2 3 2.</_></rects>
  3369. <tilted>0</tilted></feature>
  3370. <threshold>-6.6630227956920862e-04</threshold>
  3371. <left_val>0.2792190909385681</left_val>
  3372. <right_val>-0.2162484973669052</right_val></_></_></trees>
  3373. <stage_threshold>-2.1061589717864990</stage_threshold>
  3374. <parent>9</parent>
  3375. <next>-1</next></_>
  3376. <_>
  3377. <!-- stage 11 -->
  3378. <trees>
  3379. <_>
  3380. <!-- tree 0 -->
  3381. <_>
  3382. <!-- root node -->
  3383. <feature>
  3384. <rects>
  3385. <_>
  3386. 4 7 6 8 -1.</_>
  3387. <_>
  3388. 4 7 3 4 2.</_>
  3389. <_>
  3390. 7 11 3 4 2.</_></rects>
  3391. <tilted>0</tilted></feature>
  3392. <threshold>-0.0285095497965813</threshold>
  3393. <left_node>1</left_node>
  3394. <right_val>-0.5513324141502380</right_val></_>
  3395. <_>
  3396. <!-- node 1 -->
  3397. <feature>
  3398. <rects>
  3399. <_>
  3400. 11 11 4 2 -1.</_>
  3401. <_>
  3402. 11 11 2 2 2.</_></rects>
  3403. <tilted>1</tilted></feature>
  3404. <threshold>-0.0164291094988585</threshold>
  3405. <left_val>0.6032876968383789</left_val>
  3406. <right_val>-0.3000960052013397</right_val></_></_>
  3407. <_>
  3408. <!-- tree 1 -->
  3409. <_>
  3410. <!-- root node -->
  3411. <feature>
  3412. <rects>
  3413. <_>
  3414. 0 0 6 7 -1.</_>
  3415. <_>
  3416. 3 0 3 7 2.</_></rects>
  3417. <tilted>0</tilted></feature>
  3418. <threshold>-5.8078952133655548e-03</threshold>
  3419. <left_node>1</left_node>
  3420. <right_val>-0.4864051938056946</right_val></_>
  3421. <_>
  3422. <!-- node 1 -->
  3423. <feature>
  3424. <rects>
  3425. <_>
  3426. 15 10 5 8 -1.</_>
  3427. <_>
  3428. 15 12 5 4 2.</_></rects>
  3429. <tilted>0</tilted></feature>
  3430. <threshold>-0.0146703496575356</threshold>
  3431. <left_val>0.4478665888309479</left_val>
  3432. <right_val>-0.3544836044311523</right_val></_></_>
  3433. <_>
  3434. <!-- tree 2 -->
  3435. <_>
  3436. <!-- root node -->
  3437. <feature>
  3438. <rects>
  3439. <_>
  3440. 2 10 3 8 -1.</_>
  3441. <_>
  3442. 3 10 1 8 3.</_></rects>
  3443. <tilted>0</tilted></feature>
  3444. <threshold>-1.0694459779188037e-03</threshold>
  3445. <left_node>1</left_node>
  3446. <right_val>-0.3859311938285828</right_val></_>
  3447. <_>
  3448. <!-- node 1 -->
  3449. <feature>
  3450. <rects>
  3451. <_>
  3452. 9 7 6 6 -1.</_>
  3453. <_>
  3454. 7 9 6 2 3.</_></rects>
  3455. <tilted>1</tilted></feature>
  3456. <threshold>-0.0506975390017033</threshold>
  3457. <left_val>0.4386560022830963</left_val>
  3458. <right_val>-0.3113405108451843</right_val></_></_>
  3459. <_>
  3460. <!-- tree 3 -->
  3461. <_>
  3462. <!-- root node -->
  3463. <feature>
  3464. <rects>
  3465. <_>
  3466. 4 1 6 6 -1.</_>
  3467. <_>
  3468. 4 4 6 3 2.</_></rects>
  3469. <tilted>0</tilted></feature>
  3470. <threshold>-0.0723180174827576</threshold>
  3471. <left_val>0.5569549202919006</left_val>
  3472. <right_node>1</right_node></_>
  3473. <_>
  3474. <!-- node 1 -->
  3475. <feature>
  3476. <rects>
  3477. <_>
  3478. 4 0 16 2 -1.</_>
  3479. <_>
  3480. 4 1 16 1 2.</_></rects>
  3481. <tilted>0</tilted></feature>
  3482. <threshold>-0.0167407598346472</threshold>
  3483. <left_val>0.3403693139553070</left_val>
  3484. <right_val>-0.3771306872367859</right_val></_></_>
  3485. <_>
  3486. <!-- tree 4 -->
  3487. <_>
  3488. <!-- root node -->
  3489. <feature>
  3490. <rects>
  3491. <_>
  3492. 14 8 6 6 -1.</_>
  3493. <_>
  3494. 14 8 3 3 2.</_>
  3495. <_>
  3496. 17 11 3 3 2.</_></rects>
  3497. <tilted>0</tilted></feature>
  3498. <threshold>0.0129232602193952</threshold>
  3499. <left_node>1</left_node>
  3500. <right_val>0.2698718011379242</right_val></_>
  3501. <_>
  3502. <!-- node 1 -->
  3503. <feature>
  3504. <rects>
  3505. <_>
  3506. 4 12 2 8 -1.</_>
  3507. <_>
  3508. 4 12 1 4 2.</_>
  3509. <_>
  3510. 5 16 1 4 2.</_></rects>
  3511. <tilted>0</tilted></feature>
  3512. <threshold>-2.0832989830523729e-03</threshold>
  3513. <left_val>0.0722172632813454</left_val>
  3514. <right_val>-0.5061725974082947</right_val></_></_>
  3515. <_>
  3516. <!-- tree 5 -->
  3517. <_>
  3518. <!-- root node -->
  3519. <feature>
  3520. <rects>
  3521. <_>
  3522. 0 18 7 2 -1.</_>
  3523. <_>
  3524. 0 19 7 1 2.</_></rects>
  3525. <tilted>0</tilted></feature>
  3526. <threshold>2.9217539122328162e-04</threshold>
  3527. <left_val>-0.4719946980476379</left_val>
  3528. <right_node>1</right_node></_>
  3529. <_>
  3530. <!-- node 1 -->
  3531. <feature>
  3532. <rects>
  3533. <_>
  3534. 9 13 1 4 -1.</_>
  3535. <_>
  3536. 9 15 1 2 2.</_></rects>
  3537. <tilted>0</tilted></feature>
  3538. <threshold>4.6477448195219040e-03</threshold>
  3539. <left_val>-0.2023364007472992</left_val>
  3540. <right_val>0.3668462038040161</right_val></_></_>
  3541. <_>
  3542. <!-- tree 6 -->
  3543. <_>
  3544. <!-- root node -->
  3545. <feature>
  3546. <rects>
  3547. <_>
  3548. 18 10 2 8 -1.</_>
  3549. <_>
  3550. 19 10 1 8 2.</_></rects>
  3551. <tilted>0</tilted></feature>
  3552. <threshold>1.6355320112779737e-03</threshold>
  3553. <left_val>-0.3336915075778961</left_val>
  3554. <right_node>1</right_node></_>
  3555. <_>
  3556. <!-- node 1 -->
  3557. <feature>
  3558. <rects>
  3559. <_>
  3560. 6 0 4 8 -1.</_>
  3561. <_>
  3562. 7 0 2 8 2.</_></rects>
  3563. <tilted>0</tilted></feature>
  3564. <threshold>6.0143060982227325e-03</threshold>
  3565. <left_val>0.2633537054061890</left_val>
  3566. <right_val>-0.7531512975692749</right_val></_></_>
  3567. <_>
  3568. <!-- tree 7 -->
  3569. <_>
  3570. <!-- root node -->
  3571. <feature>
  3572. <rects>
  3573. <_>
  3574. 1 2 6 6 -1.</_>
  3575. <_>
  3576. 3 2 2 6 3.</_></rects>
  3577. <tilted>0</tilted></feature>
  3578. <threshold>-0.0197680406272411</threshold>
  3579. <left_val>-0.7339664101600647</left_val>
  3580. <right_node>1</right_node></_>
  3581. <_>
  3582. <!-- node 1 -->
  3583. <feature>
  3584. <rects>
  3585. <_>
  3586. 10 10 8 2 -1.</_>
  3587. <_>
  3588. 10 10 4 1 2.</_>
  3589. <_>
  3590. 14 11 4 1 2.</_></rects>
  3591. <tilted>0</tilted></feature>
  3592. <threshold>5.0995801575481892e-03</threshold>
  3593. <left_val>-0.1062633022665977</left_val>
  3594. <right_val>0.3787747919559479</right_val></_></_>
  3595. <_>
  3596. <!-- tree 8 -->
  3597. <_>
  3598. <!-- root node -->
  3599. <feature>
  3600. <rects>
  3601. <_>
  3602. 3 9 2 3 -1.</_>
  3603. <_>
  3604. 2 10 2 1 3.</_></rects>
  3605. <tilted>1</tilted></feature>
  3606. <threshold>2.1737320348620415e-03</threshold>
  3607. <left_node>1</left_node>
  3608. <right_val>-0.4587362110614777</right_val></_>
  3609. <_>
  3610. <!-- node 1 -->
  3611. <feature>
  3612. <rects>
  3613. <_>
  3614. 5 1 13 6 -1.</_>
  3615. <_>
  3616. 5 3 13 2 3.</_></rects>
  3617. <tilted>0</tilted></feature>
  3618. <threshold>0.0236210599541664</threshold>
  3619. <left_val>-0.0373419895768166</left_val>
  3620. <right_val>0.5031296014785767</right_val></_></_>
  3621. <_>
  3622. <!-- tree 9 -->
  3623. <_>
  3624. <!-- root node -->
  3625. <feature>
  3626. <rects>
  3627. <_>
  3628. 4 4 13 6 -1.</_>
  3629. <_>
  3630. 4 6 13 2 3.</_></rects>
  3631. <tilted>0</tilted></feature>
  3632. <threshold>0.0470704399049282</threshold>
  3633. <left_node>1</left_node>
  3634. <right_val>0.3915967047214508</right_val></_>
  3635. <_>
  3636. <!-- node 1 -->
  3637. <feature>
  3638. <rects>
  3639. <_>
  3640. 8 1 4 5 -1.</_>
  3641. <_>
  3642. 8 1 2 5 2.</_></rects>
  3643. <tilted>1</tilted></feature>
  3644. <threshold>0.0484291613101959</threshold>
  3645. <left_val>-0.2750763893127441</left_val>
  3646. <right_val>0.3692345023155212</right_val></_></_>
  3647. <_>
  3648. <!-- tree 10 -->
  3649. <_>
  3650. <!-- root node -->
  3651. <feature>
  3652. <rects>
  3653. <_>
  3654. 7 7 2 1 -1.</_>
  3655. <_>
  3656. 8 7 1 1 2.</_></rects>
  3657. <tilted>0</tilted></feature>
  3658. <threshold>7.1763257437851280e-05</threshold>
  3659. <left_val>-0.2613370120525360</left_val>
  3660. <right_node>1</right_node></_>
  3661. <_>
  3662. <!-- node 1 -->
  3663. <feature>
  3664. <rects>
  3665. <_>
  3666. 5 5 4 4 -1.</_>
  3667. <_>
  3668. 6 5 2 4 2.</_></rects>
  3669. <tilted>0</tilted></feature>
  3670. <threshold>-4.0031517855823040e-03</threshold>
  3671. <left_val>-0.4611847996711731</left_val>
  3672. <right_val>0.3410157859325409</right_val></_></_>
  3673. <_>
  3674. <!-- tree 11 -->
  3675. <_>
  3676. <!-- root node -->
  3677. <feature>
  3678. <rects>
  3679. <_>
  3680. 14 12 4 2 -1.</_>
  3681. <_>
  3682. 14 12 2 1 2.</_>
  3683. <_>
  3684. 16 13 2 1 2.</_></rects>
  3685. <tilted>0</tilted></feature>
  3686. <threshold>2.5536299217492342e-03</threshold>
  3687. <left_node>1</left_node>
  3688. <right_val>0.4423784911632538</right_val></_>
  3689. <_>
  3690. <!-- node 1 -->
  3691. <feature>
  3692. <rects>
  3693. <_>
  3694. 13 11 4 2 -1.</_>
  3695. <_>
  3696. 13 11 2 1 2.</_>
  3697. <_>
  3698. 15 12 2 1 2.</_></rects>
  3699. <tilted>0</tilted></feature>
  3700. <threshold>-2.5720898993313313e-03</threshold>
  3701. <left_val>0.4306653141975403</left_val>
  3702. <right_val>-0.2836068868637085</right_val></_></_>
  3703. <_>
  3704. <!-- tree 12 -->
  3705. <_>
  3706. <!-- root node -->
  3707. <feature>
  3708. <rects>
  3709. <_>
  3710. 16 10 4 3 -1.</_>
  3711. <_>
  3712. 16 11 4 1 3.</_></rects>
  3713. <tilted>0</tilted></feature>
  3714. <threshold>8.7512210011482239e-03</threshold>
  3715. <left_node>1</left_node>
  3716. <right_val>-0.7764763236045837</right_val></_>
  3717. <_>
  3718. <!-- node 1 -->
  3719. <feature>
  3720. <rects>
  3721. <_>
  3722. 10 0 4 5 -1.</_>
  3723. <_>
  3724. 11 0 2 5 2.</_></rects>
  3725. <tilted>0</tilted></feature>
  3726. <threshold>5.7346918620169163e-03</threshold>
  3727. <left_val>0.1455115973949432</left_val>
  3728. <right_val>-0.7507416009902954</right_val></_></_>
  3729. <_>
  3730. <!-- tree 13 -->
  3731. <_>
  3732. <!-- root node -->
  3733. <feature>
  3734. <rects>
  3735. <_>
  3736. 8 11 1 3 -1.</_>
  3737. <_>
  3738. 7 12 1 1 3.</_></rects>
  3739. <tilted>1</tilted></feature>
  3740. <threshold>-6.6438838839530945e-03</threshold>
  3741. <left_val>0.4035055041313171</left_val>
  3742. <right_node>1</right_node></_>
  3743. <_>
  3744. <!-- node 1 -->
  3745. <feature>
  3746. <rects>
  3747. <_>
  3748. 6 12 3 2 -1.</_>
  3749. <_>
  3750. 7 12 1 2 3.</_></rects>
  3751. <tilted>0</tilted></feature>
  3752. <threshold>-3.4590701106935740e-03</threshold>
  3753. <left_val>0.2876971960067749</left_val>
  3754. <right_val>-0.2802160084247589</right_val></_></_>
  3755. <_>
  3756. <!-- tree 14 -->
  3757. <_>
  3758. <!-- root node -->
  3759. <feature>
  3760. <rects>
  3761. <_>
  3762. 17 8 2 3 -1.</_>
  3763. <_>
  3764. 17 8 1 3 2.</_></rects>
  3765. <tilted>1</tilted></feature>
  3766. <threshold>9.9742468446493149e-03</threshold>
  3767. <left_node>1</left_node>
  3768. <right_val>-0.6067702174186707</right_val></_>
  3769. <_>
  3770. <!-- node 1 -->
  3771. <feature>
  3772. <rects>
  3773. <_>
  3774. 11 0 6 5 -1.</_>
  3775. <_>
  3776. 13 0 2 5 3.</_></rects>
  3777. <tilted>0</tilted></feature>
  3778. <threshold>0.0132336597889662</threshold>
  3779. <left_val>0.1547808051109314</left_val>
  3780. <right_val>-0.7075914740562439</right_val></_></_>
  3781. <_>
  3782. <!-- tree 15 -->
  3783. <_>
  3784. <!-- root node -->
  3785. <feature>
  3786. <rects>
  3787. <_>
  3788. 0 0 3 3 -1.</_>
  3789. <_>
  3790. 0 1 3 1 3.</_></rects>
  3791. <tilted>0</tilted></feature>
  3792. <threshold>-5.0271311774849892e-03</threshold>
  3793. <left_val>-0.7389777898788452</left_val>
  3794. <right_node>1</right_node></_>
  3795. <_>
  3796. <!-- node 1 -->
  3797. <feature>
  3798. <rects>
  3799. <_>
  3800. 2 0 1 2 -1.</_>
  3801. <_>
  3802. 2 1 1 1 2.</_></rects>
  3803. <tilted>0</tilted></feature>
  3804. <threshold>-1.2092100223526359e-04</threshold>
  3805. <left_val>0.2347300052642822</left_val>
  3806. <right_val>-0.2440057992935181</right_val></_></_>
  3807. <_>
  3808. <!-- tree 16 -->
  3809. <_>
  3810. <!-- root node -->
  3811. <feature>
  3812. <rects>
  3813. <_>
  3814. 13 11 7 2 -1.</_>
  3815. <_>
  3816. 13 12 7 1 2.</_></rects>
  3817. <tilted>0</tilted></feature>
  3818. <threshold>-1.2881499715149403e-03</threshold>
  3819. <left_node>1</left_node>
  3820. <right_val>-0.2890166938304901</right_val></_>
  3821. <_>
  3822. <!-- node 1 -->
  3823. <feature>
  3824. <rects>
  3825. <_>
  3826. 17 8 3 3 -1.</_>
  3827. <_>
  3828. 18 9 1 3 3.</_></rects>
  3829. <tilted>1</tilted></feature>
  3830. <threshold>6.2854858115315437e-03</threshold>
  3831. <left_val>0.2810086905956268</left_val>
  3832. <right_val>-0.5693385004997253</right_val></_></_>
  3833. <_>
  3834. <!-- tree 17 -->
  3835. <_>
  3836. <!-- root node -->
  3837. <feature>
  3838. <rects>
  3839. <_>
  3840. 15 15 1 3 -1.</_>
  3841. <_>
  3842. 14 16 1 1 3.</_></rects>
  3843. <tilted>1</tilted></feature>
  3844. <threshold>5.6929360143840313e-03</threshold>
  3845. <left_node>1</left_node>
  3846. <right_val>-0.7845693230628967</right_val></_>
  3847. <_>
  3848. <!-- node 1 -->
  3849. <feature>
  3850. <rects>
  3851. <_>
  3852. 6 13 6 2 -1.</_>
  3853. <_>
  3854. 8 13 2 2 3.</_></rects>
  3855. <tilted>0</tilted></feature>
  3856. <threshold>-5.3880861960351467e-03</threshold>
  3857. <left_val>0.2620132863521576</left_val>
  3858. <right_val>-0.2223203033208847</right_val></_></_>
  3859. <_>
  3860. <!-- tree 18 -->
  3861. <_>
  3862. <!-- root node -->
  3863. <feature>
  3864. <rects>
  3865. <_>
  3866. 8 10 3 4 -1.</_>
  3867. <_>
  3868. 9 10 1 4 3.</_></rects>
  3869. <tilted>0</tilted></feature>
  3870. <threshold>4.8205819912254810e-03</threshold>
  3871. <left_node>1</left_node>
  3872. <right_val>0.5679597258567810</right_val></_>
  3873. <_>
  3874. <!-- node 1 -->
  3875. <feature>
  3876. <rects>
  3877. <_>
  3878. 7 0 12 19 -1.</_>
  3879. <_>
  3880. 13 0 6 19 2.</_></rects>
  3881. <tilted>0</tilted></feature>
  3882. <threshold>0.3427918851375580</threshold>
  3883. <left_val>-0.1831423044204712</left_val>
  3884. <right_val>0.5410807132720947</right_val></_></_>
  3885. <_>
  3886. <!-- tree 19 -->
  3887. <_>
  3888. <!-- root node -->
  3889. <feature>
  3890. <rects>
  3891. <_>
  3892. 12 16 8 4 -1.</_>
  3893. <_>
  3894. 12 18 8 2 2.</_></rects>
  3895. <tilted>0</tilted></feature>
  3896. <threshold>5.1370919682085514e-03</threshold>
  3897. <left_val>-0.3911676108837128</left_val>
  3898. <right_node>1</right_node></_>
  3899. <_>
  3900. <!-- node 1 -->
  3901. <feature>
  3902. <rects>
  3903. <_>
  3904. 8 5 12 2 -1.</_>
  3905. <_>
  3906. 14 5 6 2 2.</_></rects>
  3907. <tilted>0</tilted></feature>
  3908. <threshold>-9.1285221278667450e-03</threshold>
  3909. <left_val>0.5307633876800537</left_val>
  3910. <right_val>-0.0300193093717098</right_val></_></_></trees>
  3911. <stage_threshold>-2.0051579475402832</stage_threshold>
  3912. <parent>10</parent>
  3913. <next>-1</next></_>
  3914. <_>
  3915. <!-- stage 12 -->
  3916. <trees>
  3917. <_>
  3918. <!-- tree 0 -->
  3919. <_>
  3920. <!-- root node -->
  3921. <feature>
  3922. <rects>
  3923. <_>
  3924. 10 8 6 4 -1.</_>
  3925. <_>
  3926. 12 10 2 4 3.</_></rects>
  3927. <tilted>1</tilted></feature>
  3928. <threshold>-0.0513861291110516</threshold>
  3929. <left_node>1</left_node>
  3930. <right_val>-0.5314878225326538</right_val></_>
  3931. <_>
  3932. <!-- node 1 -->
  3933. <feature>
  3934. <rects>
  3935. <_>
  3936. 4 11 3 4 -1.</_>
  3937. <_>
  3938. 4 13 3 2 2.</_></rects>
  3939. <tilted>0</tilted></feature>
  3940. <threshold>5.1850839518010616e-03</threshold>
  3941. <left_val>-0.2474454045295715</left_val>
  3942. <right_val>0.6118162274360657</right_val></_></_>
  3943. <_>
  3944. <!-- tree 1 -->
  3945. <_>
  3946. <!-- root node -->
  3947. <feature>
  3948. <rects>
  3949. <_>
  3950. 0 2 12 7 -1.</_>
  3951. <_>
  3952. 3 2 6 7 2.</_></rects>
  3953. <tilted>0</tilted></feature>
  3954. <threshold>-0.0152594000101089</threshold>
  3955. <left_node>1</left_node>
  3956. <right_val>-0.4330362975597382</right_val></_>
  3957. <_>
  3958. <!-- node 1 -->
  3959. <feature>
  3960. <rects>
  3961. <_>
  3962. 8 0 4 2 -1.</_>
  3963. <_>
  3964. 8 0 2 2 2.</_></rects>
  3965. <tilted>1</tilted></feature>
  3966. <threshold>0.0259951502084732</threshold>
  3967. <left_val>0.0439799018204212</left_val>
  3968. <right_val>0.7382913827896118</right_val></_></_>
  3969. <_>
  3970. <!-- tree 2 -->
  3971. <_>
  3972. <!-- root node -->
  3973. <feature>
  3974. <rects>
  3975. <_>
  3976. 13 11 6 6 -1.</_>
  3977. <_>
  3978. 15 13 2 2 9.</_></rects>
  3979. <tilted>0</tilted></feature>
  3980. <threshold>-0.0323123708367348</threshold>
  3981. <left_node>1</left_node>
  3982. <right_val>-0.3960975110530853</right_val></_>
  3983. <_>
  3984. <!-- node 1 -->
  3985. <feature>
  3986. <rects>
  3987. <_>
  3988. 7 11 10 4 -1.</_>
  3989. <_>
  3990. 12 11 5 4 2.</_></rects>
  3991. <tilted>0</tilted></feature>
  3992. <threshold>0.0137007003650069</threshold>
  3993. <left_val>-0.2764388024806976</left_val>
  3994. <right_val>0.4253535866737366</right_val></_></_>
  3995. <_>
  3996. <!-- tree 3 -->
  3997. <_>
  3998. <!-- root node -->
  3999. <feature>
  4000. <rects>
  4001. <_>
  4002. 1 11 4 5 -1.</_>
  4003. <_>
  4004. 2 11 2 5 2.</_></rects>
  4005. <tilted>0</tilted></feature>
  4006. <threshold>-2.2647869773209095e-03</threshold>
  4007. <left_node>1</left_node>
  4008. <right_val>-0.3200556933879852</right_val></_>
  4009. <_>
  4010. <!-- node 1 -->
  4011. <feature>
  4012. <rects>
  4013. <_>
  4014. 2 14 4 2 -1.</_>
  4015. <_>
  4016. 3 15 2 2 2.</_></rects>
  4017. <tilted>1</tilted></feature>
  4018. <threshold>-6.8290620110929012e-03</threshold>
  4019. <left_val>-0.5168297290802002</left_val>
  4020. <right_val>0.3697570860385895</right_val></_></_>
  4021. <_>
  4022. <!-- tree 4 -->
  4023. <_>
  4024. <!-- root node -->
  4025. <feature>
  4026. <rects>
  4027. <_>
  4028. 0 0 1 6 -1.</_>
  4029. <_>
  4030. 0 3 1 3 2.</_></rects>
  4031. <tilted>0</tilted></feature>
  4032. <threshold>-2.2481549531221390e-03</threshold>
  4033. <left_node>1</left_node>
  4034. <right_val>-0.3624435067176819</right_val></_>
  4035. <_>
  4036. <!-- node 1 -->
  4037. <feature>
  4038. <rects>
  4039. <_>
  4040. 6 2 6 6 -1.</_>
  4041. <_>
  4042. 6 5 6 3 2.</_></rects>
  4043. <tilted>0</tilted></feature>
  4044. <threshold>0.0459445491433144</threshold>
  4045. <left_val>-1.3187309959903359e-03</left_val>
  4046. <right_val>0.6321768164634705</right_val></_></_>
  4047. <_>
  4048. <!-- tree 5 -->
  4049. <_>
  4050. <!-- root node -->
  4051. <feature>
  4052. <rects>
  4053. <_>
  4054. 6 18 4 2 -1.</_>
  4055. <_>
  4056. 7 18 2 2 2.</_></rects>
  4057. <tilted>0</tilted></feature>
  4058. <threshold>1.8755620112642646e-03</threshold>
  4059. <left_node>1</left_node>
  4060. <right_val>-0.7140339016914368</right_val></_>
  4061. <_>
  4062. <!-- node 1 -->
  4063. <feature>
  4064. <rects>
  4065. <_>
  4066. 6 18 4 2 -1.</_>
  4067. <_>
  4068. 7 18 2 2 2.</_></rects>
  4069. <tilted>0</tilted></feature>
  4070. <threshold>-1.9700559787452221e-03</threshold>
  4071. <left_val>-0.5873066186904907</left_val>
  4072. <right_val>0.1759281009435654</right_val></_></_>
  4073. <_>
  4074. <!-- tree 6 -->
  4075. <_>
  4076. <!-- root node -->
  4077. <feature>
  4078. <rects>
  4079. <_>
  4080. 4 4 7 4 -1.</_>
  4081. <_>
  4082. 3 5 7 2 2.</_></rects>
  4083. <tilted>1</tilted></feature>
  4084. <threshold>-6.5721389837563038e-03</threshold>
  4085. <left_node>1</left_node>
  4086. <right_val>-0.3634751141071320</right_val></_>
  4087. <_>
  4088. <!-- node 1 -->
  4089. <feature>
  4090. <rects>
  4091. <_>
  4092. 5 8 8 12 -1.</_>
  4093. <_>
  4094. 7 8 4 12 2.</_></rects>
  4095. <tilted>0</tilted></feature>
  4096. <threshold>-0.0117461802437901</threshold>
  4097. <left_val>0.3144079148769379</left_val>
  4098. <right_val>-0.4011111855506897</right_val></_></_>
  4099. <_>
  4100. <!-- tree 7 -->
  4101. <_>
  4102. <!-- root node -->
  4103. <feature>
  4104. <rects>
  4105. <_>
  4106. 5 17 2 1 -1.</_>
  4107. <_>
  4108. 5 17 1 1 2.</_></rects>
  4109. <tilted>1</tilted></feature>
  4110. <threshold>-1.6494120063725859e-04</threshold>
  4111. <left_node>1</left_node>
  4112. <right_val>-0.3779259026050568</right_val></_>
  4113. <_>
  4114. <!-- node 1 -->
  4115. <feature>
  4116. <rects>
  4117. <_>
  4118. 4 18 2 1 -1.</_>
  4119. <_>
  4120. 5 18 1 1 2.</_></rects>
  4121. <tilted>0</tilted></feature>
  4122. <threshold>-7.2169408667832613e-05</threshold>
  4123. <left_val>0.5279111266136169</left_val>
  4124. <right_val>-0.1079031974077225</right_val></_></_>
  4125. <_>
  4126. <!-- tree 8 -->
  4127. <_>
  4128. <!-- root node -->
  4129. <feature>
  4130. <rects>
  4131. <_>
  4132. 13 16 7 2 -1.</_>
  4133. <_>
  4134. 13 17 7 1 2.</_></rects>
  4135. <tilted>0</tilted></feature>
  4136. <threshold>1.9697639800142497e-04</threshold>
  4137. <left_val>-0.4709764122962952</left_val>
  4138. <right_node>1</right_node></_>
  4139. <_>
  4140. <!-- node 1 -->
  4141. <feature>
  4142. <rects>
  4143. <_>
  4144. 7 15 2 3 -1.</_>
  4145. <_>
  4146. 7 15 1 3 2.</_></rects>
  4147. <tilted>1</tilted></feature>
  4148. <threshold>-0.0114235095679760</threshold>
  4149. <left_val>-0.8520929217338562</left_val>
  4150. <right_val>0.1766286939382553</right_val></_></_>
  4151. <_>
  4152. <!-- tree 9 -->
  4153. <_>
  4154. <!-- root node -->
  4155. <feature>
  4156. <rects>
  4157. <_>
  4158. 9 2 4 5 -1.</_>
  4159. <_>
  4160. 10 2 2 5 2.</_></rects>
  4161. <tilted>0</tilted></feature>
  4162. <threshold>-4.5562228187918663e-03</threshold>
  4163. <left_val>-0.8060116171836853</left_val>
  4164. <right_node>1</right_node></_>
  4165. <_>
  4166. <!-- node 1 -->
  4167. <feature>
  4168. <rects>
  4169. <_>
  4170. 7 2 4 6 -1.</_>
  4171. <_>
  4172. 8 2 2 6 2.</_></rects>
  4173. <tilted>0</tilted></feature>
  4174. <threshold>-4.4720191508531570e-03</threshold>
  4175. <left_val>-0.6150020956993103</left_val>
  4176. <right_val>0.1290830969810486</right_val></_></_>
  4177. <_>
  4178. <!-- tree 10 -->
  4179. <_>
  4180. <!-- root node -->
  4181. <feature>
  4182. <rects>
  4183. <_>
  4184. 3 12 3 3 -1.</_>
  4185. <_>
  4186. 4 12 1 3 3.</_></rects>
  4187. <tilted>0</tilted></feature>
  4188. <threshold>-1.7765410011634231e-03</threshold>
  4189. <left_val>0.3138259947299957</left_val>
  4190. <right_node>1</right_node></_>
  4191. <_>
  4192. <!-- node 1 -->
  4193. <feature>
  4194. <rects>
  4195. <_>
  4196. 5 12 3 3 -1.</_>
  4197. <_>
  4198. 6 13 1 1 9.</_></rects>
  4199. <tilted>0</tilted></feature>
  4200. <threshold>-7.8799277544021606e-03</threshold>
  4201. <left_val>0.3039462864398956</left_val>
  4202. <right_val>-0.3720492124557495</right_val></_></_>
  4203. <_>
  4204. <!-- tree 11 -->
  4205. <_>
  4206. <!-- root node -->
  4207. <feature>
  4208. <rects>
  4209. <_>
  4210. 4 12 3 2 -1.</_>
  4211. <_>
  4212. 5 12 1 2 3.</_></rects>
  4213. <tilted>0</tilted></feature>
  4214. <threshold>-1.4284689677879214e-03</threshold>
  4215. <left_val>0.5041303038597107</left_val>
  4216. <right_node>1</right_node></_>
  4217. <_>
  4218. <!-- node 1 -->
  4219. <feature>
  4220. <rects>
  4221. <_>
  4222. 10 13 3 1 -1.</_>
  4223. <_>
  4224. 11 13 1 1 3.</_></rects>
  4225. <tilted>0</tilted></feature>
  4226. <threshold>-1.8939910223707557e-03</threshold>
  4227. <left_val>0.3482376039028168</left_val>
  4228. <right_val>-0.2367382049560547</right_val></_></_>
  4229. <_>
  4230. <!-- tree 12 -->
  4231. <_>
  4232. <!-- root node -->
  4233. <feature>
  4234. <rects>
  4235. <_>
  4236. 11 5 4 3 -1.</_>
  4237. <_>
  4238. 12 5 2 3 2.</_></rects>
  4239. <tilted>0</tilted></feature>
  4240. <threshold>-3.1496640294790268e-03</threshold>
  4241. <left_val>-0.6681237816810608</left_val>
  4242. <right_node>1</right_node></_>
  4243. <_>
  4244. <!-- node 1 -->
  4245. <feature>
  4246. <rects>
  4247. <_>
  4248. 19 7 1 10 -1.</_>
  4249. <_>
  4250. 19 12 1 5 2.</_></rects>
  4251. <tilted>0</tilted></feature>
  4252. <threshold>-0.0107161197811365</threshold>
  4253. <left_val>-0.4851551949977875</left_val>
  4254. <right_val>0.1903641968965530</right_val></_></_>
  4255. <_>
  4256. <!-- tree 13 -->
  4257. <_>
  4258. <!-- root node -->
  4259. <feature>
  4260. <rects>
  4261. <_>
  4262. 4 8 2 3 -1.</_>
  4263. <_>
  4264. 3 9 2 1 3.</_></rects>
  4265. <tilted>1</tilted></feature>
  4266. <threshold>-6.8033537827432156e-03</threshold>
  4267. <left_val>-0.5697926878929138</left_val>
  4268. <right_node>1</right_node></_>
  4269. <_>
  4270. <!-- node 1 -->
  4271. <feature>
  4272. <rects>
  4273. <_>
  4274. 7 0 6 5 -1.</_>
  4275. <_>
  4276. 9 0 2 5 3.</_></rects>
  4277. <tilted>0</tilted></feature>
  4278. <threshold>0.0149023197591305</threshold>
  4279. <left_val>0.1309825032949448</left_val>
  4280. <right_val>-0.7144827246665955</right_val></_></_>
  4281. <_>
  4282. <!-- tree 14 -->
  4283. <_>
  4284. <!-- root node -->
  4285. <feature>
  4286. <rects>
  4287. <_>
  4288. 5 0 6 2 -1.</_>
  4289. <_>
  4290. 5 0 3 2 2.</_></rects>
  4291. <tilted>1</tilted></feature>
  4292. <threshold>-0.0341702289879322</threshold>
  4293. <left_val>0.5057513117790222</left_val>
  4294. <right_node>1</right_node></_>
  4295. <_>
  4296. <!-- node 1 -->
  4297. <feature>
  4298. <rects>
  4299. <_>
  4300. 5 0 13 9 -1.</_>
  4301. <_>
  4302. 5 3 13 3 3.</_></rects>
  4303. <tilted>0</tilted></feature>
  4304. <threshold>-0.1477925032377243</threshold>
  4305. <left_val>0.2823326885700226</left_val>
  4306. <right_val>-0.2720532119274139</right_val></_></_>
  4307. <_>
  4308. <!-- tree 15 -->
  4309. <_>
  4310. <!-- root node -->
  4311. <feature>
  4312. <rects>
  4313. <_>
  4314. 0 6 1 2 -1.</_>
  4315. <_>
  4316. 0 7 1 1 2.</_></rects>
  4317. <tilted>0</tilted></feature>
  4318. <threshold>-5.5842810979811475e-05</threshold>
  4319. <left_node>1</left_node>
  4320. <right_val>-0.2693673074245453</right_val></_>
  4321. <_>
  4322. <!-- node 1 -->
  4323. <feature>
  4324. <rects>
  4325. <_>
  4326. 1 0 16 6 -1.</_>
  4327. <_>
  4328. 1 2 16 2 3.</_></rects>
  4329. <tilted>0</tilted></feature>
  4330. <threshold>0.0398850813508034</threshold>
  4331. <left_val>5.6696129031479359e-03</left_val>
  4332. <right_val>0.6397516131401062</right_val></_></_>
  4333. <_>
  4334. <!-- tree 16 -->
  4335. <_>
  4336. <!-- root node -->
  4337. <feature>
  4338. <rects>
  4339. <_>
  4340. 18 0 2 4 -1.</_>
  4341. <_>
  4342. 18 0 1 4 2.</_></rects>
  4343. <tilted>1</tilted></feature>
  4344. <threshold>0.0124831302091479</threshold>
  4345. <left_node>1</left_node>
  4346. <right_val>-0.7453374266624451</right_val></_>
  4347. <_>
  4348. <!-- node 1 -->
  4349. <feature>
  4350. <rects>
  4351. <_>
  4352. 4 13 2 2 -1.</_>
  4353. <_>
  4354. 4 13 1 1 2.</_>
  4355. <_>
  4356. 5 14 1 1 2.</_></rects>
  4357. <tilted>0</tilted></feature>
  4358. <threshold>-3.2864511013031006e-04</threshold>
  4359. <left_val>0.3644962012767792</left_val>
  4360. <right_val>-0.0964988172054291</right_val></_></_>
  4361. <_>
  4362. <!-- tree 17 -->
  4363. <_>
  4364. <!-- root node -->
  4365. <feature>
  4366. <rects>
  4367. <_>
  4368. 0 3 4 1 -1.</_>
  4369. <_>
  4370. 2 3 2 1 2.</_></rects>
  4371. <tilted>0</tilted></feature>
  4372. <threshold>-1.4710469986312091e-04</threshold>
  4373. <left_val>0.1406044065952301</left_val>
  4374. <right_node>1</right_node></_>
  4375. <_>
  4376. <!-- node 1 -->
  4377. <feature>
  4378. <rects>
  4379. <_>
  4380. 3 0 8 12 -1.</_>
  4381. <_>
  4382. 3 6 8 6 2.</_></rects>
  4383. <tilted>0</tilted></feature>
  4384. <threshold>-0.2781434059143066</threshold>
  4385. <left_val>0.5700283050537109</left_val>
  4386. <right_val>-0.4875547885894775</right_val></_></_>
  4387. <_>
  4388. <!-- tree 18 -->
  4389. <_>
  4390. <!-- root node -->
  4391. <feature>
  4392. <rects>
  4393. <_>
  4394. 12 13 4 1 -1.</_>
  4395. <_>
  4396. 13 13 2 1 2.</_></rects>
  4397. <tilted>0</tilted></feature>
  4398. <threshold>-1.3452640268951654e-03</threshold>
  4399. <left_val>0.3925583064556122</left_val>
  4400. <right_node>1</right_node></_>
  4401. <_>
  4402. <!-- node 1 -->
  4403. <feature>
  4404. <rects>
  4405. <_>
  4406. 12 12 2 2 -1.</_>
  4407. <_>
  4408. 12 12 1 1 2.</_>
  4409. <_>
  4410. 13 13 1 1 2.</_></rects>
  4411. <tilted>0</tilted></feature>
  4412. <threshold>9.1500842245295644e-04</threshold>
  4413. <left_val>-0.3021517097949982</left_val>
  4414. <right_val>0.3669803142547607</right_val></_></_>
  4415. <_>
  4416. <!-- tree 19 -->
  4417. <_>
  4418. <!-- root node -->
  4419. <feature>
  4420. <rects>
  4421. <_>
  4422. 5 16 3 1 -1.</_>
  4423. <_>
  4424. 6 17 1 1 3.</_></rects>
  4425. <tilted>1</tilted></feature>
  4426. <threshold>-3.4133149310946465e-03</threshold>
  4427. <left_val>-0.6408581733703613</left_val>
  4428. <right_node>1</right_node></_>
  4429. <_>
  4430. <!-- node 1 -->
  4431. <feature>
  4432. <rects>
  4433. <_>
  4434. 3 13 8 4 -1.</_>
  4435. <_>
  4436. 3 13 4 2 2.</_>
  4437. <_>
  4438. 7 15 4 2 2.</_></rects>
  4439. <tilted>0</tilted></feature>
  4440. <threshold>5.1169008947908878e-03</threshold>
  4441. <left_val>-0.2305258065462112</left_val>
  4442. <right_val>0.2428591996431351</right_val></_></_>
  4443. <_>
  4444. <!-- tree 20 -->
  4445. <_>
  4446. <!-- root node -->
  4447. <feature>
  4448. <rects>
  4449. <_>
  4450. 0 8 18 3 -1.</_>
  4451. <_>
  4452. 6 9 6 1 9.</_></rects>
  4453. <tilted>0</tilted></feature>
  4454. <threshold>0.0888466984033585</threshold>
  4455. <left_node>1</left_node>
  4456. <right_val>0.4538188874721527</right_val></_>
  4457. <_>
  4458. <!-- node 1 -->
  4459. <feature>
  4460. <rects>
  4461. <_>
  4462. 8 4 6 5 -1.</_>
  4463. <_>
  4464. 11 4 3 5 2.</_></rects>
  4465. <tilted>0</tilted></feature>
  4466. <threshold>6.1080828309059143e-03</threshold>
  4467. <left_val>-0.3588008880615234</left_val>
  4468. <right_val>0.1320938020944595</right_val></_></_></trees>
  4469. <stage_threshold>-2.1121981143951416</stage_threshold>
  4470. <parent>11</parent>
  4471. <next>-1</next></_>
  4472. <_>
  4473. <!-- stage 13 -->
  4474. <trees>
  4475. <_>
  4476. <!-- tree 0 -->
  4477. <_>
  4478. <!-- root node -->
  4479. <feature>
  4480. <rects>
  4481. <_>
  4482. 5 14 9 1 -1.</_>
  4483. <_>
  4484. 8 14 3 1 3.</_></rects>
  4485. <tilted>0</tilted></feature>
  4486. <threshold>-0.0159300006926060</threshold>
  4487. <left_node>1</left_node>
  4488. <right_val>-0.3524534106254578</right_val></_>
  4489. <_>
  4490. <!-- node 1 -->
  4491. <feature>
  4492. <rects>
  4493. <_>
  4494. 4 0 4 4 -1.</_>
  4495. <_>
  4496. 4 0 2 4 2.</_></rects>
  4497. <tilted>1</tilted></feature>
  4498. <threshold>0.0274074506014585</threshold>
  4499. <left_val>-0.0602367892861366</left_val>
  4500. <right_val>0.7271584868431091</right_val></_></_>
  4501. <_>
  4502. <!-- tree 1 -->
  4503. <_>
  4504. <!-- root node -->
  4505. <feature>
  4506. <rects>
  4507. <_>
  4508. 7 9 12 8 -1.</_>
  4509. <_>
  4510. 7 11 12 4 2.</_></rects>
  4511. <tilted>0</tilted></feature>
  4512. <threshold>-0.0850376784801483</threshold>
  4513. <left_node>1</left_node>
  4514. <right_val>-0.4357671141624451</right_val></_>
  4515. <_>
  4516. <!-- node 1 -->
  4517. <feature>
  4518. <rects>
  4519. <_>
  4520. 18 15 2 1 -1.</_>
  4521. <_>
  4522. 18 15 1 1 2.</_></rects>
  4523. <tilted>1</tilted></feature>
  4524. <threshold>-1.1508919997140765e-03</threshold>
  4525. <left_val>0.4647167921066284</left_val>
  4526. <right_val>-0.3589689135551453</right_val></_></_>
  4527. <_>
  4528. <!-- tree 2 -->
  4529. <_>
  4530. <!-- root node -->
  4531. <feature>
  4532. <rects>
  4533. <_>
  4534. 3 13 2 4 -1.</_>
  4535. <_>
  4536. 3 13 1 2 2.</_>
  4537. <_>
  4538. 4 15 1 2 2.</_></rects>
  4539. <tilted>0</tilted></feature>
  4540. <threshold>-6.4599298639222980e-04</threshold>
  4541. <left_node>1</left_node>
  4542. <right_val>-0.3137106001377106</right_val></_>
  4543. <_>
  4544. <!-- node 1 -->
  4545. <feature>
  4546. <rects>
  4547. <_>
  4548. 4 7 3 3 -1.</_>
  4549. <_>
  4550. 3 8 3 1 3.</_></rects>
  4551. <tilted>1</tilted></feature>
  4552. <threshold>5.5495807901024818e-03</threshold>
  4553. <left_val>0.4122591912746429</left_val>
  4554. <right_val>-0.4940044879913330</right_val></_></_>
  4555. <_>
  4556. <!-- tree 3 -->
  4557. <_>
  4558. <!-- root node -->
  4559. <feature>
  4560. <rects>
  4561. <_>
  4562. 0 1 2 7 -1.</_>
  4563. <_>
  4564. 1 1 1 7 2.</_></rects>
  4565. <tilted>0</tilted></feature>
  4566. <threshold>-1.1472150217741728e-03</threshold>
  4567. <left_node>1</left_node>
  4568. <right_val>-0.3919258117675781</right_val></_>
  4569. <_>
  4570. <!-- node 1 -->
  4571. <feature>
  4572. <rects>
  4573. <_>
  4574. 4 0 3 9 -1.</_>
  4575. <_>
  4576. 5 0 1 9 3.</_></rects>
  4577. <tilted>0</tilted></feature>
  4578. <threshold>-6.4546810463070869e-03</threshold>
  4579. <left_val>-0.6919782757759094</left_val>
  4580. <right_val>0.2610394060611725</right_val></_></_>
  4581. <_>
  4582. <!-- tree 4 -->
  4583. <_>
  4584. <!-- root node -->
  4585. <feature>
  4586. <rects>
  4587. <_>
  4588. 15 10 3 3 -1.</_>
  4589. <_>
  4590. 14 11 3 1 3.</_></rects>
  4591. <tilted>1</tilted></feature>
  4592. <threshold>-0.0114142503589392</threshold>
  4593. <left_val>0.3236142098903656</left_val>
  4594. <right_node>1</right_node></_>
  4595. <_>
  4596. <!-- node 1 -->
  4597. <feature>
  4598. <rects>
  4599. <_>
  4600. 12 11 2 2 -1.</_>
  4601. <_>
  4602. 12 11 1 1 2.</_>
  4603. <_>
  4604. 13 12 1 1 2.</_></rects>
  4605. <tilted>0</tilted></feature>
  4606. <threshold>1.1582579463720322e-03</threshold>
  4607. <left_val>-0.3830499947071075</left_val>
  4608. <right_val>0.2801598012447357</right_val></_></_>
  4609. <_>
  4610. <!-- tree 5 -->
  4611. <_>
  4612. <!-- root node -->
  4613. <feature>
  4614. <rects>
  4615. <_>
  4616. 0 0 1 4 -1.</_>
  4617. <_>
  4618. 0 2 1 2 2.</_></rects>
  4619. <tilted>0</tilted></feature>
  4620. <threshold>-6.1077292775735259e-04</threshold>
  4621. <left_node>1</left_node>
  4622. <right_val>-0.3747107982635498</right_val></_>
  4623. <_>
  4624. <!-- node 1 -->
  4625. <feature>
  4626. <rects>
  4627. <_>
  4628. 12 18 8 2 -1.</_>
  4629. <_>
  4630. 12 19 8 1 2.</_></rects>
  4631. <tilted>0</tilted></feature>
  4632. <threshold>1.1812780285254121e-03</threshold>
  4633. <left_val>-0.1768521964550018</left_val>
  4634. <right_val>0.3549810945987701</right_val></_></_>
  4635. <_>
  4636. <!-- tree 6 -->
  4637. <_>
  4638. <!-- root node -->
  4639. <feature>
  4640. <rects>
  4641. <_>
  4642. 17 9 2 2 -1.</_>
  4643. <_>
  4644. 17 9 1 2 2.</_></rects>
  4645. <tilted>1</tilted></feature>
  4646. <threshold>7.9117231070995331e-03</threshold>
  4647. <left_node>1</left_node>
  4648. <right_val>-0.6968191862106323</right_val></_>
  4649. <_>
  4650. <!-- node 1 -->
  4651. <feature>
  4652. <rects>
  4653. <_>
  4654. 16 10 4 2 -1.</_>
  4655. <_>
  4656. 17 11 2 2 2.</_></rects>
  4657. <tilted>1</tilted></feature>
  4658. <threshold>-9.0904926764778793e-05</threshold>
  4659. <left_val>0.2075673937797546</left_val>
  4660. <right_val>-0.4428209066390991</right_val></_></_>
  4661. <_>
  4662. <!-- tree 7 -->
  4663. <_>
  4664. <!-- root node -->
  4665. <feature>
  4666. <rects>
  4667. <_>
  4668. 7 13 10 1 -1.</_>
  4669. <_>
  4670. 12 13 5 1 2.</_></rects>
  4671. <tilted>0</tilted></feature>
  4672. <threshold>2.8638960793614388e-03</threshold>
  4673. <left_val>-0.4136478900909424</left_val>
  4674. <right_node>1</right_node></_>
  4675. <_>
  4676. <!-- node 1 -->
  4677. <feature>
  4678. <rects>
  4679. <_>
  4680. 7 7 4 3 -1.</_>
  4681. <_>
  4682. 9 7 2 3 2.</_></rects>
  4683. <tilted>0</tilted></feature>
  4684. <threshold>1.2769990134984255e-03</threshold>
  4685. <left_val>-0.2115702033042908</left_val>
  4686. <right_val>0.3191956877708435</right_val></_></_>
  4687. <_>
  4688. <!-- tree 8 -->
  4689. <_>
  4690. <!-- root node -->
  4691. <feature>
  4692. <rects>
  4693. <_>
  4694. 9 18 6 2 -1.</_>
  4695. <_>
  4696. 11 18 2 2 3.</_></rects>
  4697. <tilted>0</tilted></feature>
  4698. <threshold>-7.5440858490765095e-03</threshold>
  4699. <left_val>-0.7549569010734558</left_val>
  4700. <right_node>1</right_node></_>
  4701. <_>
  4702. <!-- node 1 -->
  4703. <feature>
  4704. <rects>
  4705. <_>
  4706. 8 18 6 2 -1.</_>
  4707. <_>
  4708. 10 18 2 2 3.</_></rects>
  4709. <tilted>0</tilted></feature>
  4710. <threshold>5.4467269219458103e-03</threshold>
  4711. <left_val>0.1322987973690033</left_val>
  4712. <right_val>-0.6769589185714722</right_val></_></_>
  4713. <_>
  4714. <!-- tree 9 -->
  4715. <_>
  4716. <!-- root node -->
  4717. <feature>
  4718. <rects>
  4719. <_>
  4720. 17 9 3 1 -1.</_>
  4721. <_>
  4722. 18 10 1 1 3.</_></rects>
  4723. <tilted>1</tilted></feature>
  4724. <threshold>1.3641830300912261e-03</threshold>
  4725. <left_node>1</left_node>
  4726. <right_val>-0.4216814935207367</right_val></_>
  4727. <_>
  4728. <!-- node 1 -->
  4729. <feature>
  4730. <rects>
  4731. <_>
  4732. 17 7 2 11 -1.</_>
  4733. <_>
  4734. 18 7 1 11 2.</_></rects>
  4735. <tilted>0</tilted></feature>
  4736. <threshold>0.0138107798993587</threshold>
  4737. <left_val>0.1571936011314392</left_val>
  4738. <right_val>-0.6796516776084900</right_val></_></_>
  4739. <_>
  4740. <!-- tree 10 -->
  4741. <_>
  4742. <!-- root node -->
  4743. <feature>
  4744. <rects>
  4745. <_>
  4746. 8 2 4 4 -1.</_>
  4747. <_>
  4748. 8 2 2 4 2.</_></rects>
  4749. <tilted>1</tilted></feature>
  4750. <threshold>0.0502656400203705</threshold>
  4751. <left_node>1</left_node>
  4752. <right_val>0.7436913847923279</right_val></_>
  4753. <_>
  4754. <!-- node 1 -->
  4755. <feature>
  4756. <rects>
  4757. <_>
  4758. 6 6 2 3 -1.</_>
  4759. <_>
  4760. 7 6 1 3 2.</_></rects>
  4761. <tilted>0</tilted></feature>
  4762. <threshold>4.7765119234099984e-05</threshold>
  4763. <left_val>-0.3810234963893890</left_val>
  4764. <right_val>0.1060535013675690</right_val></_></_>
  4765. <_>
  4766. <!-- tree 11 -->
  4767. <_>
  4768. <!-- root node -->
  4769. <feature>
  4770. <rects>
  4771. <_>
  4772. 7 0 9 5 -1.</_>
  4773. <_>
  4774. 10 3 3 5 3.</_></rects>
  4775. <tilted>1</tilted></feature>
  4776. <threshold>0.1466668993234634</threshold>
  4777. <left_node>1</left_node>
  4778. <right_val>0.5340983271598816</right_val></_>
  4779. <_>
  4780. <!-- node 1 -->
  4781. <feature>
  4782. <rects>
  4783. <_>
  4784. 1 0 15 9 -1.</_>
  4785. <_>
  4786. 6 3 5 3 9.</_></rects>
  4787. <tilted>0</tilted></feature>
  4788. <threshold>-0.3042683005332947</threshold>
  4789. <left_val>0.3778361082077026</left_val>
  4790. <right_val>-0.2153462022542953</right_val></_></_>
  4791. <_>
  4792. <!-- tree 12 -->
  4793. <_>
  4794. <!-- root node -->
  4795. <feature>
  4796. <rects>
  4797. <_>
  4798. 2 12 4 3 -1.</_>
  4799. <_>
  4800. 3 12 2 3 2.</_></rects>
  4801. <tilted>0</tilted></feature>
  4802. <threshold>-3.2244708854705095e-03</threshold>
  4803. <left_val>0.2827424108982086</left_val>
  4804. <right_node>1</right_node></_>
  4805. <_>
  4806. <!-- node 1 -->
  4807. <feature>
  4808. <rects>
  4809. <_>
  4810. 0 12 4 5 -1.</_>
  4811. <_>
  4812. 1 12 2 5 2.</_></rects>
  4813. <tilted>0</tilted></feature>
  4814. <threshold>-1.7187190242111683e-03</threshold>
  4815. <left_val>0.1067710965871811</left_val>
  4816. <right_val>-0.4420411884784698</right_val></_></_>
  4817. <_>
  4818. <!-- tree 13 -->
  4819. <_>
  4820. <!-- root node -->
  4821. <feature>
  4822. <rects>
  4823. <_>
  4824. 3 2 2 3 -1.</_>
  4825. <_>
  4826. 2 3 2 1 3.</_></rects>
  4827. <tilted>1</tilted></feature>
  4828. <threshold>-8.4115704521536827e-03</threshold>
  4829. <left_val>-0.8355705142021179</left_val>
  4830. <right_node>1</right_node></_>
  4831. <_>
  4832. <!-- node 1 -->
  4833. <feature>
  4834. <rects>
  4835. <_>
  4836. 4 13 6 1 -1.</_>
  4837. <_>
  4838. 4 13 3 1 2.</_></rects>
  4839. <tilted>1</tilted></feature>
  4840. <threshold>-0.0232209190726280</threshold>
  4841. <left_val>-0.5193390846252441</left_val>
  4842. <right_val>0.1318164020776749</right_val></_></_>
  4843. <_>
  4844. <!-- tree 14 -->
  4845. <_>
  4846. <!-- root node -->
  4847. <feature>
  4848. <rects>
  4849. <_>
  4850. 5 0 4 6 -1.</_>
  4851. <_>
  4852. 6 0 2 6 2.</_></rects>
  4853. <tilted>0</tilted></feature>
  4854. <threshold>-6.3912221230566502e-03</threshold>
  4855. <left_val>-0.6855232119560242</left_val>
  4856. <right_node>1</right_node></_>
  4857. <_>
  4858. <!-- node 1 -->
  4859. <feature>
  4860. <rects>
  4861. <_>
  4862. 2 17 2 1 -1.</_>
  4863. <_>
  4864. 2 17 1 1 2.</_></rects>
  4865. <tilted>1</tilted></feature>
  4866. <threshold>-3.0661540222354233e-04</threshold>
  4867. <left_val>0.2219285070896149</left_val>
  4868. <right_val>-0.2394503057003021</right_val></_></_>
  4869. <_>
  4870. <!-- tree 15 -->
  4871. <_>
  4872. <!-- root node -->
  4873. <feature>
  4874. <rects>
  4875. <_>
  4876. 4 9 1 3 -1.</_>
  4877. <_>
  4878. 3 10 1 1 3.</_></rects>
  4879. <tilted>1</tilted></feature>
  4880. <threshold>1.8742750398814678e-03</threshold>
  4881. <left_node>1</left_node>
  4882. <right_val>-0.4721843898296356</right_val></_>
  4883. <_>
  4884. <!-- node 1 -->
  4885. <feature>
  4886. <rects>
  4887. <_>
  4888. 0 2 6 9 -1.</_>
  4889. <_>
  4890. 2 2 2 9 3.</_></rects>
  4891. <tilted>0</tilted></feature>
  4892. <threshold>-0.0282995402812958</threshold>
  4893. <left_val>-0.6818671822547913</left_val>
  4894. <right_val>0.1592379063367844</right_val></_></_>
  4895. <_>
  4896. <!-- tree 16 -->
  4897. <_>
  4898. <!-- root node -->
  4899. <feature>
  4900. <rects>
  4901. <_>
  4902. 16 7 2 2 -1.</_>
  4903. <_>
  4904. 16 7 1 2 2.</_></rects>
  4905. <tilted>1</tilted></feature>
  4906. <threshold>7.9352483153343201e-03</threshold>
  4907. <left_node>1</left_node>
  4908. <right_val>-0.7313578128814697</right_val></_>
  4909. <_>
  4910. <!-- node 1 -->
  4911. <feature>
  4912. <rects>
  4913. <_>
  4914. 7 2 6 4 -1.</_>
  4915. <_>
  4916. 9 2 2 4 3.</_></rects>
  4917. <tilted>0</tilted></feature>
  4918. <threshold>-8.7599940598011017e-03</threshold>
  4919. <left_val>-0.6001471877098083</left_val>
  4920. <right_val>0.1035033017396927</right_val></_></_>
  4921. <_>
  4922. <!-- tree 17 -->
  4923. <_>
  4924. <!-- root node -->
  4925. <feature>
  4926. <rects>
  4927. <_>
  4928. 7 18 6 2 -1.</_>
  4929. <_>
  4930. 9 18 2 2 3.</_></rects>
  4931. <tilted>0</tilted></feature>
  4932. <threshold>-5.5426149629056454e-03</threshold>
  4933. <left_val>-0.5936040878295898</left_val>
  4934. <right_node>1</right_node></_>
  4935. <_>
  4936. <!-- node 1 -->
  4937. <feature>
  4938. <rects>
  4939. <_>
  4940. 1 14 6 4 -1.</_>
  4941. <_>
  4942. 3 14 2 4 3.</_></rects>
  4943. <tilted>0</tilted></feature>
  4944. <threshold>-1.8066290067508817e-03</threshold>
  4945. <left_val>0.2553352117538452</left_val>
  4946. <right_val>-0.1703643947839737</right_val></_></_>
  4947. <_>
  4948. <!-- tree 18 -->
  4949. <_>
  4950. <!-- root node -->
  4951. <feature>
  4952. <rects>
  4953. <_>
  4954. 6 8 7 3 -1.</_>
  4955. <_>
  4956. 5 9 7 1 3.</_></rects>
  4957. <tilted>1</tilted></feature>
  4958. <threshold>-8.3993803709745407e-03</threshold>
  4959. <left_node>1</left_node>
  4960. <right_val>-0.2395361065864563</right_val></_>
  4961. <_>
  4962. <!-- node 1 -->
  4963. <feature>
  4964. <rects>
  4965. <_>
  4966. 14 12 4 1 -1.</_>
  4967. <_>
  4968. 15 13 2 1 2.</_></rects>
  4969. <tilted>1</tilted></feature>
  4970. <threshold>-1.9515500171110034e-03</threshold>
  4971. <left_val>0.3725241124629974</left_val>
  4972. <right_val>-0.1298290044069290</right_val></_></_>
  4973. <_>
  4974. <!-- tree 19 -->
  4975. <_>
  4976. <!-- root node -->
  4977. <feature>
  4978. <rects>
  4979. <_>
  4980. 4 12 3 2 -1.</_>
  4981. <_>
  4982. 5 12 1 2 3.</_></rects>
  4983. <tilted>0</tilted></feature>
  4984. <threshold>-2.2850139066576958e-03</threshold>
  4985. <left_val>0.5022721290588379</left_val>
  4986. <right_node>1</right_node></_>
  4987. <_>
  4988. <!-- node 1 -->
  4989. <feature>
  4990. <rects>
  4991. <_>
  4992. 5 12 3 3 -1.</_>
  4993. <_>
  4994. 6 12 1 3 3.</_></rects>
  4995. <tilted>0</tilted></feature>
  4996. <threshold>-6.1910818330943584e-03</threshold>
  4997. <left_val>0.4455165863037109</left_val>
  4998. <right_val>-0.1630778014659882</right_val></_></_>
  4999. <_>
  5000. <!-- tree 20 -->
  5001. <_>
  5002. <!-- root node -->
  5003. <feature>
  5004. <rects>
  5005. <_>
  5006. 18 2 2 2 -1.</_>
  5007. <_>
  5008. 19 2 1 2 2.</_></rects>
  5009. <tilted>0</tilted></feature>
  5010. <threshold>1.1659320443868637e-03</threshold>
  5011. <left_node>1</left_node>
  5012. <right_val>0.3480907976627350</right_val></_>
  5013. <_>
  5014. <!-- node 1 -->
  5015. <feature>
  5016. <rects>
  5017. <_>
  5018. 14 0 6 1 -1.</_>
  5019. <_>
  5020. 17 0 3 1 2.</_></rects>
  5021. <tilted>0</tilted></feature>
  5022. <threshold>-2.1016779355704784e-03</threshold>
  5023. <left_val>0.3153137862682343</left_val>
  5024. <right_val>-0.3471026122570038</right_val></_></_>
  5025. <_>
  5026. <!-- tree 21 -->
  5027. <_>
  5028. <!-- root node -->
  5029. <feature>
  5030. <rects>
  5031. <_>
  5032. 17 0 3 3 -1.</_>
  5033. <_>
  5034. 18 1 1 3 3.</_></rects>
  5035. <tilted>1</tilted></feature>
  5036. <threshold>-9.1615924611687660e-03</threshold>
  5037. <left_val>-0.6862319707870483</left_val>
  5038. <right_node>1</right_node></_>
  5039. <_>
  5040. <!-- node 1 -->
  5041. <feature>
  5042. <rects>
  5043. <_>
  5044. 11 4 6 8 -1.</_>
  5045. <_>
  5046. 13 4 2 8 3.</_></rects>
  5047. <tilted>0</tilted></feature>
  5048. <threshold>-0.0200365409255028</threshold>
  5049. <left_val>-0.6899188160896301</left_val>
  5050. <right_val>0.1296222060918808</right_val></_></_>
  5051. <_>
  5052. <!-- tree 22 -->
  5053. <_>
  5054. <!-- root node -->
  5055. <feature>
  5056. <rects>
  5057. <_>
  5058. 7 12 3 2 -1.</_>
  5059. <_>
  5060. 8 12 1 2 3.</_></rects>
  5061. <tilted>0</tilted></feature>
  5062. <threshold>2.7148448862135410e-03</threshold>
  5063. <left_node>1</left_node>
  5064. <right_val>0.4774574041366577</right_val></_>
  5065. <_>
  5066. <!-- node 1 -->
  5067. <feature>
  5068. <rects>
  5069. <_>
  5070. 16 0 3 2 -1.</_>
  5071. <_>
  5072. 16 1 3 1 2.</_></rects>
  5073. <tilted>0</tilted></feature>
  5074. <threshold>2.2834159899502993e-03</threshold>
  5075. <left_val>-0.0133445700630546</left_val>
  5076. <right_val>-0.6179587841033936</right_val></_></_></trees>
  5077. <stage_threshold>-1.8701590299606323</stage_threshold>
  5078. <parent>12</parent>
  5079. <next>-1</next></_>
  5080. <_>
  5081. <!-- stage 14 -->
  5082. <trees>
  5083. <_>
  5084. <!-- tree 0 -->
  5085. <_>
  5086. <!-- root node -->
  5087. <feature>
  5088. <rects>
  5089. <_>
  5090. 5 11 9 4 -1.</_>
  5091. <_>
  5092. 8 11 3 4 3.</_></rects>
  5093. <tilted>0</tilted></feature>
  5094. <threshold>-0.0328384712338448</threshold>
  5095. <left_node>1</left_node>
  5096. <right_val>-0.5198407173156738</right_val></_>
  5097. <_>
  5098. <!-- node 1 -->
  5099. <feature>
  5100. <rects>
  5101. <_>
  5102. 12 9 1 6 -1.</_>
  5103. <_>
  5104. 12 11 1 2 3.</_></rects>
  5105. <tilted>0</tilted></feature>
  5106. <threshold>-7.5696408748626709e-03</threshold>
  5107. <left_val>0.6369025111198425</left_val>
  5108. <right_val>-0.1156217008829117</right_val></_></_>
  5109. <_>
  5110. <!-- tree 1 -->
  5111. <_>
  5112. <!-- root node -->
  5113. <feature>
  5114. <rects>
  5115. <_>
  5116. 4 0 4 4 -1.</_>
  5117. <_>
  5118. 4 0 2 4 2.</_></rects>
  5119. <tilted>1</tilted></feature>
  5120. <threshold>0.0541258715093136</threshold>
  5121. <left_node>1</left_node>
  5122. <right_val>0.5034024715423584</right_val></_>
  5123. <_>
  5124. <!-- node 1 -->
  5125. <feature>
  5126. <rects>
  5127. <_>
  5128. 5 1 11 12 -1.</_>
  5129. <_>
  5130. 5 5 11 4 3.</_></rects>
  5131. <tilted>0</tilted></feature>
  5132. <threshold>0.2700459957122803</threshold>
  5133. <left_val>-0.3464067876338959</left_val>
  5134. <right_val>0.3765150904655457</right_val></_></_>
  5135. <_>
  5136. <!-- tree 2 -->
  5137. <_>
  5138. <!-- root node -->
  5139. <feature>
  5140. <rects>
  5141. <_>
  5142. 16 12 4 8 -1.</_>
  5143. <_>
  5144. 18 12 2 8 2.</_></rects>
  5145. <tilted>0</tilted></feature>
  5146. <threshold>7.0261410437524319e-03</threshold>
  5147. <left_val>-0.4104644060134888</left_val>
  5148. <right_node>1</right_node></_>
  5149. <_>
  5150. <!-- node 1 -->
  5151. <feature>
  5152. <rects>
  5153. <_>
  5154. 18 14 2 6 -1.</_>
  5155. <_>
  5156. 18 17 2 3 2.</_></rects>
  5157. <tilted>0</tilted></feature>
  5158. <threshold>3.1245660502463579e-03</threshold>
  5159. <left_val>-0.4138219058513641</left_val>
  5160. <right_val>0.3755074143409729</right_val></_></_>
  5161. <_>
  5162. <!-- tree 3 -->
  5163. <_>
  5164. <!-- root node -->
  5165. <feature>
  5166. <rects>
  5167. <_>
  5168. 1 12 4 4 -1.</_>
  5169. <_>
  5170. 2 12 2 4 2.</_></rects>
  5171. <tilted>0</tilted></feature>
  5172. <threshold>-1.8708549905568361e-03</threshold>
  5173. <left_node>1</left_node>
  5174. <right_val>-0.3782733082771301</right_val></_>
  5175. <_>
  5176. <!-- node 1 -->
  5177. <feature>
  5178. <rects>
  5179. <_>
  5180. 6 7 6 4 -1.</_>
  5181. <_>
  5182. 5 8 6 2 2.</_></rects>
  5183. <tilted>1</tilted></feature>
  5184. <threshold>-0.0149690099060535</threshold>
  5185. <left_val>0.3994168043136597</left_val>
  5186. <right_val>-0.2225451022386551</right_val></_></_>
  5187. <_>
  5188. <!-- tree 4 -->
  5189. <_>
  5190. <!-- root node -->
  5191. <feature>
  5192. <rects>
  5193. <_>
  5194. 5 15 3 2 -1.</_>
  5195. <_>
  5196. 6 16 1 2 3.</_></rects>
  5197. <tilted>1</tilted></feature>
  5198. <threshold>3.4136420581489801e-03</threshold>
  5199. <left_node>1</left_node>
  5200. <right_val>-0.5466756820678711</right_val></_>
  5201. <_>
  5202. <!-- node 1 -->
  5203. <feature>
  5204. <rects>
  5205. <_>
  5206. 6 16 3 1 -1.</_>
  5207. <_>
  5208. 7 17 1 1 3.</_></rects>
  5209. <tilted>1</tilted></feature>
  5210. <threshold>2.3454260081052780e-03</threshold>
  5211. <left_val>0.1661884039640427</left_val>
  5212. <right_val>-0.6320394277572632</right_val></_></_>
  5213. <_>
  5214. <!-- tree 5 -->
  5215. <_>
  5216. <!-- root node -->
  5217. <feature>
  5218. <rects>
  5219. <_>
  5220. 10 14 1 2 -1.</_>
  5221. <_>
  5222. 10 14 1 1 2.</_></rects>
  5223. <tilted>1</tilted></feature>
  5224. <threshold>-1.1689099483191967e-03</threshold>
  5225. <left_node>1</left_node>
  5226. <right_val>-0.4497218132019043</right_val></_>
  5227. <_>
  5228. <!-- node 1 -->
  5229. <feature>
  5230. <rects>
  5231. <_>
  5232. 4 7 3 3 -1.</_>
  5233. <_>
  5234. 3 8 3 1 3.</_></rects>
  5235. <tilted>1</tilted></feature>
  5236. <threshold>-7.8206984326243401e-03</threshold>
  5237. <left_val>-0.5716611742973328</left_val>
  5238. <right_val>0.1859999001026154</right_val></_></_>
  5239. <_>
  5240. <!-- tree 6 -->
  5241. <_>
  5242. <!-- root node -->
  5243. <feature>
  5244. <rects>
  5245. <_>
  5246. 2 0 6 8 -1.</_>
  5247. <_>
  5248. 4 0 2 8 3.</_></rects>
  5249. <tilted>0</tilted></feature>
  5250. <threshold>-0.0263242591172457</threshold>
  5251. <left_val>-0.7804111242294312</left_val>
  5252. <right_node>1</right_node></_>
  5253. <_>
  5254. <!-- node 1 -->
  5255. <feature>
  5256. <rects>
  5257. <_>
  5258. 2 5 6 3 -1.</_>
  5259. <_>
  5260. 4 5 2 3 3.</_></rects>
  5261. <tilted>0</tilted></feature>
  5262. <threshold>-9.1647548833861947e-04</threshold>
  5263. <left_val>0.2310009002685547</left_val>
  5264. <right_val>-0.2122412025928497</right_val></_></_>
  5265. <_>
  5266. <!-- tree 7 -->
  5267. <_>
  5268. <!-- root node -->
  5269. <feature>
  5270. <rects>
  5271. <_>
  5272. 3 11 3 6 -1.</_>
  5273. <_>
  5274. 4 11 1 6 3.</_></rects>
  5275. <tilted>0</tilted></feature>
  5276. <threshold>-2.3702960461378098e-03</threshold>
  5277. <left_val>0.2730421125888824</left_val>
  5278. <right_node>1</right_node></_>
  5279. <_>
  5280. <!-- node 1 -->
  5281. <feature>
  5282. <rects>
  5283. <_>
  5284. 15 11 2 3 -1.</_>
  5285. <_>
  5286. 14 12 2 1 3.</_></rects>
  5287. <tilted>1</tilted></feature>
  5288. <threshold>-9.2874821275472641e-03</threshold>
  5289. <left_val>0.2320079952478409</left_val>
  5290. <right_val>-0.3460255861282349</right_val></_></_>
  5291. <_>
  5292. <!-- tree 8 -->
  5293. <_>
  5294. <!-- root node -->
  5295. <feature>
  5296. <rects>
  5297. <_>
  5298. 11 17 4 3 -1.</_>
  5299. <_>
  5300. 12 17 2 3 2.</_></rects>
  5301. <tilted>0</tilted></feature>
  5302. <threshold>2.9221060685813427e-03</threshold>
  5303. <left_node>1</left_node>
  5304. <right_val>-0.6997262835502625</right_val></_>
  5305. <_>
  5306. <!-- node 1 -->
  5307. <feature>
  5308. <rects>
  5309. <_>
  5310. 13 11 2 2 -1.</_>
  5311. <_>
  5312. 13 11 1 1 2.</_>
  5313. <_>
  5314. 14 12 1 1 2.</_></rects>
  5315. <tilted>0</tilted></feature>
  5316. <threshold>-1.4097889652475715e-03</threshold>
  5317. <left_val>0.4801935851573944</left_val>
  5318. <right_val>-0.0426502004265785</right_val></_></_>
  5319. <_>
  5320. <!-- tree 9 -->
  5321. <_>
  5322. <!-- root node -->
  5323. <feature>
  5324. <rects>
  5325. <_>
  5326. 13 11 2 2 -1.</_>
  5327. <_>
  5328. 13 11 1 1 2.</_>
  5329. <_>
  5330. 14 12 1 1 2.</_></rects>
  5331. <tilted>0</tilted></feature>
  5332. <threshold>9.3326548812910914e-04</threshold>
  5333. <left_node>1</left_node>
  5334. <right_val>0.3770847916603088</right_val></_>
  5335. <_>
  5336. <!-- node 1 -->
  5337. <feature>
  5338. <rects>
  5339. <_>
  5340. 8 2 5 6 -1.</_>
  5341. <_>
  5342. 8 5 5 3 2.</_></rects>
  5343. <tilted>0</tilted></feature>
  5344. <threshold>-0.0568373091518879</threshold>
  5345. <left_val>0.4637516140937805</left_val>
  5346. <right_val>-0.2044157981872559</right_val></_></_>
  5347. <_>
  5348. <!-- tree 10 -->
  5349. <_>
  5350. <!-- root node -->
  5351. <feature>
  5352. <rects>
  5353. <_>
  5354. 0 0 1 2 -1.</_>
  5355. <_>
  5356. 0 1 1 1 2.</_></rects>
  5357. <tilted>0</tilted></feature>
  5358. <threshold>-9.1405760031193495e-05</threshold>
  5359. <left_node>1</left_node>
  5360. <right_val>-0.2944777011871338</right_val></_>
  5361. <_>
  5362. <!-- node 1 -->
  5363. <feature>
  5364. <rects>
  5365. <_>
  5366. 0 8 10 4 -1.</_>
  5367. <_>
  5368. 0 10 10 2 2.</_></rects>
  5369. <tilted>0</tilted></feature>
  5370. <threshold>-0.0111477700993419</threshold>
  5371. <left_val>0.3657920062541962</left_val>
  5372. <right_val>-0.1610623002052307</right_val></_></_>
  5373. <_>
  5374. <!-- tree 11 -->
  5375. <_>
  5376. <!-- root node -->
  5377. <feature>
  5378. <rects>
  5379. <_>
  5380. 17 11 3 1 -1.</_>
  5381. <_>
  5382. 18 12 1 1 3.</_></rects>
  5383. <tilted>1</tilted></feature>
  5384. <threshold>8.0759642878547311e-04</threshold>
  5385. <left_node>1</left_node>
  5386. <right_val>-0.3876996934413910</right_val></_>
  5387. <_>
  5388. <!-- node 1 -->
  5389. <feature>
  5390. <rects>
  5391. <_>
  5392. 7 18 2 2 -1.</_>
  5393. <_>
  5394. 8 18 1 2 2.</_></rects>
  5395. <tilted>0</tilted></feature>
  5396. <threshold>1.7215589759871364e-03</threshold>
  5397. <left_val>0.1779005974531174</left_val>
  5398. <right_val>-0.5967379212379456</right_val></_></_>
  5399. <_>
  5400. <!-- tree 12 -->
  5401. <_>
  5402. <!-- root node -->
  5403. <feature>
  5404. <rects>
  5405. <_>
  5406. 0 6 18 4 -1.</_>
  5407. <_>
  5408. 9 6 9 4 2.</_></rects>
  5409. <tilted>0</tilted></feature>
  5410. <threshold>0.0143056400120258</threshold>
  5411. <left_val>-0.2888791859149933</left_val>
  5412. <right_node>1</right_node></_>
  5413. <_>
  5414. <!-- node 1 -->
  5415. <feature>
  5416. <rects>
  5417. <_>
  5418. 2 12 12 8 -1.</_>
  5419. <_>
  5420. 6 12 4 8 3.</_></rects>
  5421. <tilted>0</tilted></feature>
  5422. <threshold>-0.0388850085437298</threshold>
  5423. <left_val>0.3649722933769226</left_val>
  5424. <right_val>-0.1376271992921829</right_val></_></_>
  5425. <_>
  5426. <!-- tree 13 -->
  5427. <_>
  5428. <!-- root node -->
  5429. <feature>
  5430. <rects>
  5431. <_>
  5432. 1 0 14 1 -1.</_>
  5433. <_>
  5434. 8 0 7 1 2.</_></rects>
  5435. <tilted>0</tilted></feature>
  5436. <threshold>-3.4479280002415180e-03</threshold>
  5437. <left_val>0.1811084002256393</left_val>
  5438. <right_node>1</right_node></_>
  5439. <_>
  5440. <!-- node 1 -->
  5441. <feature>
  5442. <rects>
  5443. <_>
  5444. 8 0 12 19 -1.</_>
  5445. <_>
  5446. 14 0 6 19 2.</_></rects>
  5447. <tilted>0</tilted></feature>
  5448. <threshold>0.3016817867755890</threshold>
  5449. <left_val>-0.3542549014091492</left_val>
  5450. <right_val>0.4295836091041565</right_val></_></_>
  5451. <_>
  5452. <!-- tree 14 -->
  5453. <_>
  5454. <!-- root node -->
  5455. <feature>
  5456. <rects>
  5457. <_>
  5458. 7 12 3 2 -1.</_>
  5459. <_>
  5460. 8 12 1 2 3.</_></rects>
  5461. <tilted>0</tilted></feature>
  5462. <threshold>2.8582389932125807e-03</threshold>
  5463. <left_node>1</left_node>
  5464. <right_val>0.5295780897140503</right_val></_>
  5465. <_>
  5466. <!-- node 1 -->
  5467. <feature>
  5468. <rects>
  5469. <_>
  5470. 8 11 3 5 -1.</_>
  5471. <_>
  5472. 9 11 1 5 3.</_></rects>
  5473. <tilted>0</tilted></feature>
  5474. <threshold>1.4091320335865021e-03</threshold>
  5475. <left_val>-0.2123443037271500</left_val>
  5476. <right_val>0.3142850995063782</right_val></_></_>
  5477. <_>
  5478. <!-- tree 15 -->
  5479. <_>
  5480. <!-- root node -->
  5481. <feature>
  5482. <rects>
  5483. <_>
  5484. 7 18 3 2 -1.</_>
  5485. <_>
  5486. 8 18 1 2 3.</_></rects>
  5487. <tilted>0</tilted></feature>
  5488. <threshold>-1.6597079811617732e-03</threshold>
  5489. <left_val>-0.6334841847419739</left_val>
  5490. <right_node>1</right_node></_>
  5491. <_>
  5492. <!-- node 1 -->
  5493. <feature>
  5494. <rects>
  5495. <_>
  5496. 5 13 2 2 -1.</_>
  5497. <_>
  5498. 5 13 1 1 2.</_>
  5499. <_>
  5500. 6 14 1 1 2.</_></rects>
  5501. <tilted>0</tilted></feature>
  5502. <threshold>8.7804382201284170e-04</threshold>
  5503. <left_val>-0.0553153008222580</left_val>
  5504. <right_val>0.3938995897769928</right_val></_></_>
  5505. <_>
  5506. <!-- tree 16 -->
  5507. <_>
  5508. <!-- root node -->
  5509. <feature>
  5510. <rects>
  5511. <_>
  5512. 16 9 3 1 -1.</_>
  5513. <_>
  5514. 17 10 1 1 3.</_></rects>
  5515. <tilted>1</tilted></feature>
  5516. <threshold>2.0211800001561642e-03</threshold>
  5517. <left_node>1</left_node>
  5518. <right_val>-0.4712730944156647</right_val></_>
  5519. <_>
  5520. <!-- node 1 -->
  5521. <feature>
  5522. <rects>
  5523. <_>
  5524. 18 0 2 3 -1.</_>
  5525. <_>
  5526. 18 0 1 3 2.</_></rects>
  5527. <tilted>1</tilted></feature>
  5528. <threshold>-6.8409871309995651e-03</threshold>
  5529. <left_val>-0.6406552791595459</left_val>
  5530. <right_val>0.1486144065856934</right_val></_></_>
  5531. <_>
  5532. <!-- tree 17 -->
  5533. <_>
  5534. <!-- root node -->
  5535. <feature>
  5536. <rects>
  5537. <_>
  5538. 4 2 15 6 -1.</_>
  5539. <_>
  5540. 4 4 15 2 3.</_></rects>
  5541. <tilted>0</tilted></feature>
  5542. <threshold>0.0472007617354393</threshold>
  5543. <left_node>1</left_node>
  5544. <right_val>0.4121640920639038</right_val></_>
  5545. <_>
  5546. <!-- node 1 -->
  5547. <feature>
  5548. <rects>
  5549. <_>
  5550. 10 0 10 4 -1.</_>
  5551. <_>
  5552. 10 0 5 2 2.</_>
  5553. <_>
  5554. 15 2 5 2 2.</_></rects>
  5555. <tilted>0</tilted></feature>
  5556. <threshold>4.9684080295264721e-03</threshold>
  5557. <left_val>-0.3240430057048798</left_val>
  5558. <right_val>0.1575596034526825</right_val></_></_>
  5559. <_>
  5560. <!-- tree 18 -->
  5561. <_>
  5562. <!-- root node -->
  5563. <feature>
  5564. <rects>
  5565. <_>
  5566. 5 0 12 6 -1.</_>
  5567. <_>
  5568. 5 2 12 2 3.</_></rects>
  5569. <tilted>0</tilted></feature>
  5570. <threshold>0.0375299118459225</threshold>
  5571. <left_node>1</left_node>
  5572. <right_val>0.4132845997810364</right_val></_>
  5573. <_>
  5574. <!-- node 1 -->
  5575. <feature>
  5576. <rects>
  5577. <_>
  5578. 12 1 8 6 -1.</_>
  5579. <_>
  5580. 12 1 4 3 2.</_>
  5581. <_>
  5582. 16 4 4 3 2.</_></rects>
  5583. <tilted>0</tilted></feature>
  5584. <threshold>-0.0116650899872184</threshold>
  5585. <left_val>0.2546750009059906</left_val>
  5586. <right_val>-0.3130356073379517</right_val></_></_>
  5587. <_>
  5588. <!-- tree 19 -->
  5589. <_>
  5590. <!-- root node -->
  5591. <feature>
  5592. <rects>
  5593. <_>
  5594. 0 3 2 1 -1.</_>
  5595. <_>
  5596. 1 3 1 1 2.</_></rects>
  5597. <tilted>0</tilted></feature>
  5598. <threshold>-6.8298257247079164e-05</threshold>
  5599. <left_node>1</left_node>
  5600. <right_val>-0.2721207141876221</right_val></_>
  5601. <_>
  5602. <!-- node 1 -->
  5603. <feature>
  5604. <rects>
  5605. <_>
  5606. 16 7 2 4 -1.</_>
  5607. <_>
  5608. 16 7 1 4 2.</_></rects>
  5609. <tilted>1</tilted></feature>
  5610. <threshold>0.0153254298493266</threshold>
  5611. <left_val>0.2294660955667496</left_val>
  5612. <right_val>-0.6734570860862732</right_val></_></_>
  5613. <_>
  5614. <!-- tree 20 -->
  5615. <_>
  5616. <!-- root node -->
  5617. <feature>
  5618. <rects>
  5619. <_>
  5620. 15 17 5 3 -1.</_>
  5621. <_>
  5622. 15 18 5 1 3.</_></rects>
  5623. <tilted>0</tilted></feature>
  5624. <threshold>8.5185896605253220e-03</threshold>
  5625. <left_node>1</left_node>
  5626. <right_val>-0.7111467123031616</right_val></_>
  5627. <_>
  5628. <!-- node 1 -->
  5629. <feature>
  5630. <rects>
  5631. <_>
  5632. 6 12 6 8 -1.</_>
  5633. <_>
  5634. 8 12 2 8 3.</_></rects>
  5635. <tilted>0</tilted></feature>
  5636. <threshold>-2.6828479021787643e-03</threshold>
  5637. <left_val>0.1551170051097870</left_val>
  5638. <right_val>-0.3544489145278931</right_val></_></_>
  5639. <_>
  5640. <!-- tree 21 -->
  5641. <_>
  5642. <!-- root node -->
  5643. <feature>
  5644. <rects>
  5645. <_>
  5646. 5 12 2 2 -1.</_>
  5647. <_>
  5648. 6 12 1 2 2.</_></rects>
  5649. <tilted>0</tilted></feature>
  5650. <threshold>1.3791749952360988e-03</threshold>
  5651. <left_node>1</left_node>
  5652. <right_val>0.3691627085208893</right_val></_>
  5653. <_>
  5654. <!-- node 1 -->
  5655. <feature>
  5656. <rects>
  5657. <_>
  5658. 13 12 4 6 -1.</_>
  5659. <_>
  5660. 14 12 2 6 2.</_></rects>
  5661. <tilted>0</tilted></feature>
  5662. <threshold>-3.3968368370551616e-05</threshold>
  5663. <left_val>0.0591509304940701</left_val>
  5664. <right_val>-0.4600771963596344</right_val></_></_>
  5665. <_>
  5666. <!-- tree 22 -->
  5667. <_>
  5668. <!-- root node -->
  5669. <feature>
  5670. <rects>
  5671. <_>
  5672. 17 0 3 4 -1.</_>
  5673. <_>
  5674. 18 1 1 4 3.</_></rects>
  5675. <tilted>1</tilted></feature>
  5676. <threshold>5.8259358629584312e-03</threshold>
  5677. <left_node>1</left_node>
  5678. <right_val>-0.5498669743537903</right_val></_>
  5679. <_>
  5680. <!-- node 1 -->
  5681. <feature>
  5682. <rects>
  5683. <_>
  5684. 4 0 4 10 -1.</_>
  5685. <_>
  5686. 5 0 2 10 2.</_></rects>
  5687. <tilted>0</tilted></feature>
  5688. <threshold>-8.1688696518540382e-03</threshold>
  5689. <left_val>-0.5056741237640381</left_val>
  5690. <right_val>0.1518967002630234</right_val></_></_>
  5691. <_>
  5692. <!-- tree 23 -->
  5693. <_>
  5694. <!-- root node -->
  5695. <feature>
  5696. <rects>
  5697. <_>
  5698. 5 12 3 3 -1.</_>
  5699. <_>
  5700. 6 12 1 3 3.</_></rects>
  5701. <tilted>0</tilted></feature>
  5702. <threshold>-2.3251199163496494e-03</threshold>
  5703. <left_val>0.3490481078624725</left_val>
  5704. <right_node>1</right_node></_>
  5705. <_>
  5706. <!-- node 1 -->
  5707. <feature>
  5708. <rects>
  5709. <_>
  5710. 11 12 3 3 -1.</_>
  5711. <_>
  5712. 12 12 1 3 3.</_></rects>
  5713. <tilted>0</tilted></feature>
  5714. <threshold>-4.8669208772480488e-03</threshold>
  5715. <left_val>0.5313856005668640</left_val>
  5716. <right_val>-0.2141346931457520</right_val></_></_>
  5717. <_>
  5718. <!-- tree 24 -->
  5719. <_>
  5720. <!-- root node -->
  5721. <feature>
  5722. <rects>
  5723. <_>
  5724. 3 2 1 3 -1.</_>
  5725. <_>
  5726. 2 3 1 1 3.</_></rects>
  5727. <tilted>1</tilted></feature>
  5728. <threshold>4.3380381539463997e-03</threshold>
  5729. <left_node>1</left_node>
  5730. <right_val>-0.7824826240539551</right_val></_>
  5731. <_>
  5732. <!-- node 1 -->
  5733. <feature>
  5734. <rects>
  5735. <_>
  5736. 2 1 8 1 -1.</_>
  5737. <_>
  5738. 4 1 4 1 2.</_></rects>
  5739. <tilted>0</tilted></feature>
  5740. <threshold>3.4176679328083992e-03</threshold>
  5741. <left_val>0.1246078982949257</left_val>
  5742. <right_val>-0.5529775023460388</right_val></_></_>
  5743. <_>
  5744. <!-- tree 25 -->
  5745. <_>
  5746. <!-- root node -->
  5747. <feature>
  5748. <rects>
  5749. <_>
  5750. 0 3 18 12 -1.</_>
  5751. <_>
  5752. 6 7 6 4 9.</_></rects>
  5753. <tilted>0</tilted></feature>
  5754. <threshold>0.5530973076820374</threshold>
  5755. <left_node>1</left_node>
  5756. <right_val>0.4657307863235474</right_val></_>
  5757. <_>
  5758. <!-- node 1 -->
  5759. <feature>
  5760. <rects>
  5761. <_>
  5762. 12 18 6 2 -1.</_>
  5763. <_>
  5764. 15 18 3 2 2.</_></rects>
  5765. <tilted>0</tilted></feature>
  5766. <threshold>2.3636389523744583e-03</threshold>
  5767. <left_val>-0.3330905139446259</left_val>
  5768. <right_val>0.0943800508975983</right_val></_></_></trees>
  5769. <stage_threshold>-1.9807859659194946</stage_threshold>
  5770. <parent>13</parent>
  5771. <next>-1</next></_>
  5772. <_>
  5773. <!-- stage 15 -->
  5774. <trees>
  5775. <_>
  5776. <!-- tree 0 -->
  5777. <_>
  5778. <!-- root node -->
  5779. <feature>
  5780. <rects>
  5781. <_>
  5782. 11 9 4 7 -1.</_>
  5783. <_>
  5784. 12 10 2 7 2.</_></rects>
  5785. <tilted>1</tilted></feature>
  5786. <threshold>-0.0229342803359032</threshold>
  5787. <left_node>1</left_node>
  5788. <right_val>-0.4471629858016968</right_val></_>
  5789. <_>
  5790. <!-- node 1 -->
  5791. <feature>
  5792. <rects>
  5793. <_>
  5794. 15 8 3 12 -1.</_>
  5795. <_>
  5796. 16 12 1 4 9.</_></rects>
  5797. <tilted>0</tilted></feature>
  5798. <threshold>-0.0426658503711224</threshold>
  5799. <left_val>0.5408589839935303</left_val>
  5800. <right_val>-0.3358927965164185</right_val></_></_>
  5801. <_>
  5802. <!-- tree 1 -->
  5803. <_>
  5804. <!-- root node -->
  5805. <feature>
  5806. <rects>
  5807. <_>
  5808. 6 10 7 3 -1.</_>
  5809. <_>
  5810. 6 11 7 1 3.</_></rects>
  5811. <tilted>0</tilted></feature>
  5812. <threshold>-9.8418388515710831e-03</threshold>
  5813. <left_val>0.3995800018310547</left_val>
  5814. <right_node>1</right_node></_>
  5815. <_>
  5816. <!-- node 1 -->
  5817. <feature>
  5818. <rects>
  5819. <_>
  5820. 4 9 10 3 -1.</_>
  5821. <_>
  5822. 4 10 10 1 3.</_></rects>
  5823. <tilted>0</tilted></feature>
  5824. <threshold>-0.0119323497638106</threshold>
  5825. <left_val>0.3421911895275116</left_val>
  5826. <right_val>-0.4241695106029510</right_val></_></_>
  5827. <_>
  5828. <!-- tree 2 -->
  5829. <_>
  5830. <!-- root node -->
  5831. <feature>
  5832. <rects>
  5833. <_>
  5834. 0 1 15 7 -1.</_>
  5835. <_>
  5836. 5 1 5 7 3.</_></rects>
  5837. <tilted>0</tilted></feature>
  5838. <threshold>-0.0244370102882385</threshold>
  5839. <left_node>1</left_node>
  5840. <right_val>-0.3733735978603363</right_val></_>
  5841. <_>
  5842. <!-- node 1 -->
  5843. <feature>
  5844. <rects>
  5845. <_>
  5846. 0 0 1 18 -1.</_>
  5847. <_>
  5848. 0 6 1 6 3.</_></rects>
  5849. <tilted>0</tilted></feature>
  5850. <threshold>-4.9987169913947582e-03</threshold>
  5851. <left_val>0.4035832881927490</left_val>
  5852. <right_val>-0.3519937098026276</right_val></_></_>
  5853. <_>
  5854. <!-- tree 3 -->
  5855. <_>
  5856. <!-- root node -->
  5857. <feature>
  5858. <rects>
  5859. <_>
  5860. 9 13 2 4 -1.</_>
  5861. <_>
  5862. 8 14 2 2 2.</_></rects>
  5863. <tilted>1</tilted></feature>
  5864. <threshold>1.8582950579002500e-03</threshold>
  5865. <left_val>-0.4415811896324158</left_val>
  5866. <right_node>1</right_node></_>
  5867. <_>
  5868. <!-- node 1 -->
  5869. <feature>
  5870. <rects>
  5871. <_>
  5872. 16 16 4 4 -1.</_>
  5873. <_>
  5874. 16 18 4 2 2.</_></rects>
  5875. <tilted>0</tilted></feature>
  5876. <threshold>2.7540219016373158e-03</threshold>
  5877. <left_val>-0.2872293889522552</left_val>
  5878. <right_val>0.3385724127292633</right_val></_></_>
  5879. <_>
  5880. <!-- tree 4 -->
  5881. <_>
  5882. <!-- root node -->
  5883. <feature>
  5884. <rects>
  5885. <_>
  5886. 1 10 4 8 -1.</_>
  5887. <_>
  5888. 2 10 2 8 2.</_></rects>
  5889. <tilted>0</tilted></feature>
  5890. <threshold>-3.4452530089765787e-03</threshold>
  5891. <left_node>1</left_node>
  5892. <right_val>-0.3182198107242584</right_val></_>
  5893. <_>
  5894. <!-- node 1 -->
  5895. <feature>
  5896. <rects>
  5897. <_>
  5898. 2 15 3 2 -1.</_>
  5899. <_>
  5900. 3 16 1 2 3.</_></rects>
  5901. <tilted>1</tilted></feature>
  5902. <threshold>-5.9277489781379700e-03</threshold>
  5903. <left_val>-0.6507351994514465</left_val>
  5904. <right_val>0.2710922062397003</right_val></_></_>
  5905. <_>
  5906. <!-- tree 5 -->
  5907. <_>
  5908. <!-- root node -->
  5909. <feature>
  5910. <rects>
  5911. <_>
  5912. 2 17 2 1 -1.</_>
  5913. <_>
  5914. 2 17 1 1 2.</_></rects>
  5915. <tilted>1</tilted></feature>
  5916. <threshold>-1.2391789641696960e-04</threshold>
  5917. <left_node>1</left_node>
  5918. <right_val>-0.3346720039844513</right_val></_>
  5919. <_>
  5920. <!-- node 1 -->
  5921. <feature>
  5922. <rects>
  5923. <_>
  5924. 18 10 2 8 -1.</_>
  5925. <_>
  5926. 18 10 2 4 2.</_></rects>
  5927. <tilted>1</tilted></feature>
  5928. <threshold>-0.0733271390199661</threshold>
  5929. <left_val>-0.5964624881744385</left_val>
  5930. <right_val>0.2286181002855301</right_val></_></_>
  5931. <_>
  5932. <!-- tree 6 -->
  5933. <_>
  5934. <!-- root node -->
  5935. <feature>
  5936. <rects>
  5937. <_>
  5938. 0 11 18 3 -1.</_>
  5939. <_>
  5940. 6 12 6 1 9.</_></rects>
  5941. <tilted>0</tilted></feature>
  5942. <threshold>-0.0839647501707077</threshold>
  5943. <left_node>1</left_node>
  5944. <right_val>-0.2252518981695175</right_val></_>
  5945. <_>
  5946. <!-- node 1 -->
  5947. <feature>
  5948. <rects>
  5949. <_>
  5950. 15 10 4 2 -1.</_>
  5951. <_>
  5952. 16 11 2 2 2.</_></rects>
  5953. <tilted>1</tilted></feature>
  5954. <threshold>-8.1644707825034857e-04</threshold>
  5955. <left_val>0.3821364939212799</left_val>
  5956. <right_val>-0.3341045081615448</right_val></_></_>
  5957. <_>
  5958. <!-- tree 7 -->
  5959. <_>
  5960. <!-- root node -->
  5961. <feature>
  5962. <rects>
  5963. <_>
  5964. 9 1 5 4 -1.</_>
  5965. <_>
  5966. 9 3 5 2 2.</_></rects>
  5967. <tilted>0</tilted></feature>
  5968. <threshold>-0.0152077795937657</threshold>
  5969. <left_val>0.3074269890785217</left_val>
  5970. <right_node>1</right_node></_>
  5971. <_>
  5972. <!-- node 1 -->
  5973. <feature>
  5974. <rects>
  5975. <_>
  5976. 6 1 7 6 -1.</_>
  5977. <_>
  5978. 6 4 7 3 2.</_></rects>
  5979. <tilted>0</tilted></feature>
  5980. <threshold>0.0468947887420654</threshold>
  5981. <left_val>-0.3883388936519623</left_val>
  5982. <right_val>0.2317751944065094</right_val></_></_>
  5983. <_>
  5984. <!-- tree 8 -->
  5985. <_>
  5986. <!-- root node -->
  5987. <feature>
  5988. <rects>
  5989. <_>
  5990. 3 3 8 6 -1.</_>
  5991. <_>
  5992. 3 6 8 3 2.</_></rects>
  5993. <tilted>0</tilted></feature>
  5994. <threshold>-0.1039844006299973</threshold>
  5995. <left_val>0.7132114171981812</left_val>
  5996. <right_node>1</right_node></_>
  5997. <_>
  5998. <!-- node 1 -->
  5999. <feature>
  6000. <rects>
  6001. <_>
  6002. 16 1 4 2 -1.</_>
  6003. <_>
  6004. 18 1 2 2 2.</_></rects>
  6005. <tilted>0</tilted></feature>
  6006. <threshold>3.9815339259803295e-03</threshold>
  6007. <left_val>-0.2331019937992096</left_val>
  6008. <right_val>0.2924784123897552</right_val></_></_>
  6009. <_>
  6010. <!-- tree 9 -->
  6011. <_>
  6012. <!-- root node -->
  6013. <feature>
  6014. <rects>
  6015. <_>
  6016. 18 12 2 3 -1.</_>
  6017. <_>
  6018. 18 13 2 1 3.</_></rects>
  6019. <tilted>0</tilted></feature>
  6020. <threshold>2.5737080723047256e-03</threshold>
  6021. <left_node>1</left_node>
  6022. <right_val>-0.5501734018325806</right_val></_>
  6023. <_>
  6024. <!-- node 1 -->
  6025. <feature>
  6026. <rects>
  6027. <_>
  6028. 17 6 2 8 -1.</_>
  6029. <_>
  6030. 17 6 1 4 2.</_>
  6031. <_>
  6032. 18 10 1 4 2.</_></rects>
  6033. <tilted>0</tilted></feature>
  6034. <threshold>9.1035291552543640e-04</threshold>
  6035. <left_val>-0.1822893023490906</left_val>
  6036. <right_val>0.2837032079696655</right_val></_></_>
  6037. <_>
  6038. <!-- tree 10 -->
  6039. <_>
  6040. <!-- root node -->
  6041. <feature>
  6042. <rects>
  6043. <_>
  6044. 17 5 3 4 -1.</_>
  6045. <_>
  6046. 18 6 1 4 3.</_></rects>
  6047. <tilted>1</tilted></feature>
  6048. <threshold>6.4211348071694374e-03</threshold>
  6049. <left_node>1</left_node>
  6050. <right_val>-0.4858197867870331</right_val></_>
  6051. <_>
  6052. <!-- node 1 -->
  6053. <feature>
  6054. <rects>
  6055. <_>
  6056. 0 9 4 8 -1.</_>
  6057. <_>
  6058. 0 11 4 4 2.</_></rects>
  6059. <tilted>0</tilted></feature>
  6060. <threshold>-5.8243819512426853e-03</threshold>
  6061. <left_val>0.2460819035768509</left_val>
  6062. <right_val>-0.2156502008438110</right_val></_></_>
  6063. <_>
  6064. <!-- tree 11 -->
  6065. <_>
  6066. <!-- root node -->
  6067. <feature>
  6068. <rects>
  6069. <_>
  6070. 0 6 3 8 -1.</_>
  6071. <_>
  6072. 0 10 3 4 2.</_></rects>
  6073. <tilted>0</tilted></feature>
  6074. <threshold>-0.0400436297059059</threshold>
  6075. <left_val>-0.6388055086135864</left_val>
  6076. <right_node>1</right_node></_>
  6077. <_>
  6078. <!-- node 1 -->
  6079. <feature>
  6080. <rects>
  6081. <_>
  6082. 14 11 2 2 -1.</_>
  6083. <_>
  6084. 14 11 1 1 2.</_>
  6085. <_>
  6086. 15 12 1 1 2.</_></rects>
  6087. <tilted>0</tilted></feature>
  6088. <threshold>8.4683427121490240e-04</threshold>
  6089. <left_val>-0.0604355894029140</left_val>
  6090. <right_val>0.4371112883090973</right_val></_></_>
  6091. <_>
  6092. <!-- tree 12 -->
  6093. <_>
  6094. <!-- root node -->
  6095. <feature>
  6096. <rects>
  6097. <_>
  6098. 15 11 3 3 -1.</_>
  6099. <_>
  6100. 14 12 3 1 3.</_></rects>
  6101. <tilted>1</tilted></feature>
  6102. <threshold>0.0129645802080631</threshold>
  6103. <left_node>1</left_node>
  6104. <right_val>0.5949506163597107</right_val></_>
  6105. <_>
  6106. <!-- node 1 -->
  6107. <feature>
  6108. <rects>
  6109. <_>
  6110. 14 12 5 2 -1.</_>
  6111. <_>
  6112. 14 13 5 1 2.</_></rects>
  6113. <tilted>0</tilted></feature>
  6114. <threshold>-2.2524749510921538e-04</threshold>
  6115. <left_val>0.0868314728140831</left_val>
  6116. <right_val>-0.3636232018470764</right_val></_></_>
  6117. <_>
  6118. <!-- tree 13 -->
  6119. <_>
  6120. <!-- root node -->
  6121. <feature>
  6122. <rects>
  6123. <_>
  6124. 19 12 1 2 -1.</_>
  6125. <_>
  6126. 19 13 1 1 2.</_></rects>
  6127. <tilted>0</tilted></feature>
  6128. <threshold>-1.7258729785680771e-03</threshold>
  6129. <left_val>-0.6470772027969360</left_val>
  6130. <right_node>1</right_node></_>
  6131. <_>
  6132. <!-- node 1 -->
  6133. <feature>
  6134. <rects>
  6135. <_>
  6136. 6 0 4 7 -1.</_>
  6137. <_>
  6138. 7 0 2 7 2.</_></rects>
  6139. <tilted>0</tilted></feature>
  6140. <threshold>-7.2289421223104000e-03</threshold>
  6141. <left_val>-0.6877536773681641</left_val>
  6142. <right_val>0.1383872032165527</right_val></_></_>
  6143. <_>
  6144. <!-- tree 14 -->
  6145. <_>
  6146. <!-- root node -->
  6147. <feature>
  6148. <rects>
  6149. <_>
  6150. 12 12 3 2 -1.</_>
  6151. <_>
  6152. 12 13 3 1 2.</_></rects>
  6153. <tilted>0</tilted></feature>
  6154. <threshold>2.5079259648919106e-03</threshold>
  6155. <left_node>1</left_node>
  6156. <right_val>0.3065930902957916</right_val></_>
  6157. <_>
  6158. <!-- node 1 -->
  6159. <feature>
  6160. <rects>
  6161. <_>
  6162. 12 13 4 2 -1.</_>
  6163. <_>
  6164. 12 13 2 1 2.</_>
  6165. <_>
  6166. 14 14 2 1 2.</_></rects>
  6167. <tilted>0</tilted></feature>
  6168. <threshold>-1.9473560387268662e-03</threshold>
  6169. <left_val>0.2296776026487350</left_val>
  6170. <right_val>-0.3473764955997467</right_val></_></_>
  6171. <_>
  6172. <!-- tree 15 -->
  6173. <_>
  6174. <!-- root node -->
  6175. <feature>
  6176. <rects>
  6177. <_>
  6178. 16 18 4 2 -1.</_>
  6179. <_>
  6180. 16 19 4 1 2.</_></rects>
  6181. <tilted>0</tilted></feature>
  6182. <threshold>7.4747111648321152e-03</threshold>
  6183. <left_node>1</left_node>
  6184. <right_val>-0.6519178748130798</right_val></_>
  6185. <_>
  6186. <!-- node 1 -->
  6187. <feature>
  6188. <rects>
  6189. <_>
  6190. 14 18 1 2 -1.</_>
  6191. <_>
  6192. 14 19 1 1 2.</_></rects>
  6193. <tilted>0</tilted></feature>
  6194. <threshold>1.0328400094294921e-04</threshold>
  6195. <left_val>-0.2072588950395584</left_val>
  6196. <right_val>0.2240213006734848</right_val></_></_>
  6197. <_>
  6198. <!-- tree 16 -->
  6199. <_>
  6200. <!-- root node -->
  6201. <feature>
  6202. <rects>
  6203. <_>
  6204. 16 0 3 2 -1.</_>
  6205. <_>
  6206. 17 1 1 2 3.</_></rects>
  6207. <tilted>1</tilted></feature>
  6208. <threshold>-7.8996885567903519e-03</threshold>
  6209. <left_val>-0.7247917056083679</left_val>
  6210. <right_node>1</right_node></_>
  6211. <_>
  6212. <!-- node 1 -->
  6213. <feature>
  6214. <rects>
  6215. <_>
  6216. 16 0 4 2 -1.</_>
  6217. <_>
  6218. 17 1 2 2 2.</_></rects>
  6219. <tilted>1</tilted></feature>
  6220. <threshold>4.2833909392356873e-03</threshold>
  6221. <left_val>0.1395497024059296</left_val>
  6222. <right_val>-0.4308606088161469</right_val></_></_>
  6223. <_>
  6224. <!-- tree 17 -->
  6225. <_>
  6226. <!-- root node -->
  6227. <feature>
  6228. <rects>
  6229. <_>
  6230. 12 13 2 2 -1.</_>
  6231. <_>
  6232. 12 13 1 1 2.</_>
  6233. <_>
  6234. 13 14 1 1 2.</_></rects>
  6235. <tilted>0</tilted></feature>
  6236. <threshold>6.3452741596847773e-04</threshold>
  6237. <left_node>1</left_node>
  6238. <right_val>0.2979263961315155</right_val></_>
  6239. <_>
  6240. <!-- node 1 -->
  6241. <feature>
  6242. <rects>
  6243. <_>
  6244. 7 10 4 2 -1.</_>
  6245. <_>
  6246. 7 10 2 2 2.</_></rects>
  6247. <tilted>1</tilted></feature>
  6248. <threshold>-5.4966621100902557e-03</threshold>
  6249. <left_val>-0.5620539188385010</left_val>
  6250. <right_val>-0.0296081192791462</right_val></_></_>
  6251. <_>
  6252. <!-- tree 18 -->
  6253. <_>
  6254. <!-- root node -->
  6255. <feature>
  6256. <rects>
  6257. <_>
  6258. 3 3 1 3 -1.</_>
  6259. <_>
  6260. 2 4 1 1 3.</_></rects>
  6261. <tilted>1</tilted></feature>
  6262. <threshold>3.1408690847456455e-03</threshold>
  6263. <left_node>1</left_node>
  6264. <right_val>-0.6132214069366455</right_val></_>
  6265. <_>
  6266. <!-- node 1 -->
  6267. <feature>
  6268. <rects>
  6269. <_>
  6270. 3 4 2 3 -1.</_>
  6271. <_>
  6272. 2 5 2 1 3.</_></rects>
  6273. <tilted>1</tilted></feature>
  6274. <threshold>-5.0443639047443867e-03</threshold>
  6275. <left_val>-0.5306010246276855</left_val>
  6276. <right_val>0.1250745952129364</right_val></_></_>
  6277. <_>
  6278. <!-- tree 19 -->
  6279. <_>
  6280. <!-- root node -->
  6281. <feature>
  6282. <rects>
  6283. <_>
  6284. 3 0 16 6 -1.</_>
  6285. <_>
  6286. 3 2 16 2 3.</_></rects>
  6287. <tilted>0</tilted></feature>
  6288. <threshold>0.0459648706018925</threshold>
  6289. <left_node>1</left_node>
  6290. <right_val>0.3818871974945068</right_val></_>
  6291. <_>
  6292. <!-- node 1 -->
  6293. <feature>
  6294. <rects>
  6295. <_>
  6296. 12 2 2 5 -1.</_>
  6297. <_>
  6298. 12 2 1 5 2.</_></rects>
  6299. <tilted>1</tilted></feature>
  6300. <threshold>-5.3749699145555496e-03</threshold>
  6301. <left_val>0.1408901065587997</left_val>
  6302. <right_val>-0.3553569018840790</right_val></_></_>
  6303. <_>
  6304. <!-- tree 20 -->
  6305. <_>
  6306. <!-- root node -->
  6307. <feature>
  6308. <rects>
  6309. <_>
  6310. 4 0 1 3 -1.</_>
  6311. <_>
  6312. 3 1 1 1 3.</_></rects>
  6313. <tilted>1</tilted></feature>
  6314. <threshold>2.9262059833854437e-03</threshold>
  6315. <left_node>1</left_node>
  6316. <right_val>-0.6088665723800659</right_val></_>
  6317. <_>
  6318. <!-- node 1 -->
  6319. <feature>
  6320. <rects>
  6321. <_>
  6322. 13 12 2 2 -1.</_>
  6323. <_>
  6324. 13 12 1 1 2.</_>
  6325. <_>
  6326. 14 13 1 1 2.</_></rects>
  6327. <tilted>0</tilted></feature>
  6328. <threshold>5.2230368601158261e-04</threshold>
  6329. <left_val>-0.0714415684342384</left_val>
  6330. <right_val>0.3627525866031647</right_val></_></_>
  6331. <_>
  6332. <!-- tree 21 -->
  6333. <_>
  6334. <!-- root node -->
  6335. <feature>
  6336. <rects>
  6337. <_>
  6338. 5 17 4 3 -1.</_>
  6339. <_>
  6340. 6 17 2 3 2.</_></rects>
  6341. <tilted>0</tilted></feature>
  6342. <threshold>-4.4181118719279766e-03</threshold>
  6343. <left_val>-0.7645800709724426</left_val>
  6344. <right_node>1</right_node></_>
  6345. <_>
  6346. <!-- node 1 -->
  6347. <feature>
  6348. <rects>
  6349. <_>
  6350. 17 13 3 3 -1.</_>
  6351. <_>
  6352. 17 14 3 1 3.</_></rects>
  6353. <tilted>0</tilted></feature>
  6354. <threshold>4.3349149636924267e-03</threshold>
  6355. <left_val>0.1124641001224518</left_val>
  6356. <right_val>-0.5455384850502014</right_val></_></_>
  6357. <_>
  6358. <!-- tree 22 -->
  6359. <_>
  6360. <!-- root node -->
  6361. <feature>
  6362. <rects>
  6363. <_>
  6364. 0 12 2 8 -1.</_>
  6365. <_>
  6366. 0 12 1 4 2.</_>
  6367. <_>
  6368. 1 16 1 4 2.</_></rects>
  6369. <tilted>0</tilted></feature>
  6370. <threshold>2.6483018882572651e-03</threshold>
  6371. <left_node>1</left_node>
  6372. <right_val>0.2354231029748917</right_val></_>
  6373. <_>
  6374. <!-- node 1 -->
  6375. <feature>
  6376. <rects>
  6377. <_>
  6378. 4 16 1 3 -1.</_>
  6379. <_>
  6380. 3 17 1 1 3.</_></rects>
  6381. <tilted>1</tilted></feature>
  6382. <threshold>-1.0814110282808542e-03</threshold>
  6383. <left_val>0.1442230045795441</left_val>
  6384. <right_val>-0.3440195918083191</right_val></_></_>
  6385. <_>
  6386. <!-- tree 23 -->
  6387. <_>
  6388. <!-- root node -->
  6389. <feature>
  6390. <rects>
  6391. <_>
  6392. 0 2 1 2 -1.</_>
  6393. <_>
  6394. 0 3 1 1 2.</_></rects>
  6395. <tilted>0</tilted></feature>
  6396. <threshold>-5.4296739108394831e-05</threshold>
  6397. <left_node>1</left_node>
  6398. <right_val>-0.2860746085643768</right_val></_>
  6399. <_>
  6400. <!-- node 1 -->
  6401. <feature>
  6402. <rects>
  6403. <_>
  6404. 10 2 4 7 -1.</_>
  6405. <_>
  6406. 11 2 2 7 2.</_></rects>
  6407. <tilted>0</tilted></feature>
  6408. <threshold>5.5393581278622150e-03</threshold>
  6409. <left_val>0.1934528946876526</left_val>
  6410. <right_val>-0.5054942965507507</right_val></_></_>
  6411. <_>
  6412. <!-- tree 24 -->
  6413. <_>
  6414. <!-- root node -->
  6415. <feature>
  6416. <rects>
  6417. <_>
  6418. 2 1 6 9 -1.</_>
  6419. <_>
  6420. 2 4 6 3 3.</_></rects>
  6421. <tilted>0</tilted></feature>
  6422. <threshold>0.0337030999362469</threshold>
  6423. <left_node>1</left_node>
  6424. <right_val>0.3830255866050720</right_val></_>
  6425. <_>
  6426. <!-- node 1 -->
  6427. <feature>
  6428. <rects>
  6429. <_>
  6430. 1 4 2 2 -1.</_>
  6431. <_>
  6432. 2 4 1 2 2.</_></rects>
  6433. <tilted>0</tilted></feature>
  6434. <threshold>-1.2178930046502501e-04</threshold>
  6435. <left_val>0.0664141774177551</left_val>
  6436. <right_val>-0.4853005111217499</right_val></_></_>
  6437. <_>
  6438. <!-- tree 25 -->
  6439. <_>
  6440. <!-- root node -->
  6441. <feature>
  6442. <rects>
  6443. <_>
  6444. 13 12 2 2 -1.</_>
  6445. <_>
  6446. 13 12 1 1 2.</_>
  6447. <_>
  6448. 14 13 1 1 2.</_></rects>
  6449. <tilted>0</tilted></feature>
  6450. <threshold>-1.7803770024329424e-03</threshold>
  6451. <left_val>0.4411354959011078</left_val>
  6452. <right_node>1</right_node></_>
  6453. <_>
  6454. <!-- node 1 -->
  6455. <feature>
  6456. <rects>
  6457. <_>
  6458. 18 0 2 1 -1.</_>
  6459. <_>
  6460. 19 0 1 1 2.</_></rects>
  6461. <tilted>0</tilted></feature>
  6462. <threshold>-5.6019638577708974e-05</threshold>
  6463. <left_val>0.1239674985408783</left_val>
  6464. <right_val>-0.2629227042198181</right_val></_></_></trees>
  6465. <stage_threshold>-1.9697020053863525</stage_threshold>
  6466. <parent>14</parent>
  6467. <next>-1</next></_>
  6468. <_>
  6469. <!-- stage 16 -->
  6470. <trees>
  6471. <_>
  6472. <!-- tree 0 -->
  6473. <_>
  6474. <!-- root node -->
  6475. <feature>
  6476. <rects>
  6477. <_>
  6478. 4 13 3 1 -1.</_>
  6479. <_>
  6480. 5 13 1 1 3.</_></rects>
  6481. <tilted>0</tilted></feature>
  6482. <threshold>3.1982790678739548e-03</threshold>
  6483. <left_node>1</left_node>
  6484. <right_val>0.5420842170715332</right_val></_>
  6485. <_>
  6486. <!-- node 1 -->
  6487. <feature>
  6488. <rects>
  6489. <_>
  6490. 6 13 4 1 -1.</_>
  6491. <_>
  6492. 7 13 2 1 2.</_></rects>
  6493. <tilted>0</tilted></feature>
  6494. <threshold>-1.5240450156852603e-03</threshold>
  6495. <left_val>0.0827848389744759</left_val>
  6496. <right_val>-0.5016483068466187</right_val></_></_>
  6497. <_>
  6498. <!-- tree 1 -->
  6499. <_>
  6500. <!-- root node -->
  6501. <feature>
  6502. <rects>
  6503. <_>
  6504. 6 10 6 3 -1.</_>
  6505. <_>
  6506. 6 11 6 1 3.</_></rects>
  6507. <tilted>0</tilted></feature>
  6508. <threshold>-0.0122844297438860</threshold>
  6509. <left_val>0.4417493939399719</left_val>
  6510. <right_node>1</right_node></_>
  6511. <_>
  6512. <!-- node 1 -->
  6513. <feature>
  6514. <rects>
  6515. <_>
  6516. 7 9 4 3 -1.</_>
  6517. <_>
  6518. 7 10 4 1 3.</_></rects>
  6519. <tilted>0</tilted></feature>
  6520. <threshold>-8.3555448800325394e-03</threshold>
  6521. <left_val>0.3586339950561523</left_val>
  6522. <right_val>-0.3625485897064209</right_val></_></_>
  6523. <_>
  6524. <!-- tree 2 -->
  6525. <_>
  6526. <!-- root node -->
  6527. <feature>
  6528. <rects>
  6529. <_>
  6530. 6 0 4 3 -1.</_>
  6531. <_>
  6532. 6 0 2 3 2.</_></rects>
  6533. <tilted>1</tilted></feature>
  6534. <threshold>0.0413578003644943</threshold>
  6535. <left_node>1</left_node>
  6536. <right_val>0.4785881042480469</right_val></_>
  6537. <_>
  6538. <!-- node 1 -->
  6539. <feature>
  6540. <rects>
  6541. <_>
  6542. 15 15 5 2 -1.</_>
  6543. <_>
  6544. 15 16 5 1 2.</_></rects>
  6545. <tilted>0</tilted></feature>
  6546. <threshold>2.2308749612420797e-03</threshold>
  6547. <left_val>-0.6039034724235535</left_val>
  6548. <right_val>-8.7199418339878321e-04</right_val></_></_>
  6549. <_>
  6550. <!-- tree 3 -->
  6551. <_>
  6552. <!-- root node -->
  6553. <feature>
  6554. <rects>
  6555. <_>
  6556. 0 8 18 12 -1.</_>
  6557. <_>
  6558. 6 12 6 4 9.</_></rects>
  6559. <tilted>0</tilted></feature>
  6560. <threshold>-0.5416054129600525</threshold>
  6561. <left_node>1</left_node>
  6562. <right_val>-0.3253665864467621</right_val></_>
  6563. <_>
  6564. <!-- node 1 -->
  6565. <feature>
  6566. <rects>
  6567. <_>
  6568. 1 6 14 4 -1.</_>
  6569. <_>
  6570. 8 6 7 4 2.</_></rects>
  6571. <tilted>0</tilted></feature>
  6572. <threshold>7.9009458422660828e-03</threshold>
  6573. <left_val>-0.3641510009765625</left_val>
  6574. <right_val>0.4050160050392151</right_val></_></_>
  6575. <_>
  6576. <!-- tree 4 -->
  6577. <_>
  6578. <!-- root node -->
  6579. <feature>
  6580. <rects>
  6581. <_>
  6582. 3 11 6 3 -1.</_>
  6583. <_>
  6584. 2 12 6 1 3.</_></rects>
  6585. <tilted>1</tilted></feature>
  6586. <threshold>-2.7236728928983212e-03</threshold>
  6587. <left_node>1</left_node>
  6588. <right_val>-0.2764418125152588</right_val></_>
  6589. <_>
  6590. <!-- node 1 -->
  6591. <feature>
  6592. <rects>
  6593. <_>
  6594. 5 9 1 3 -1.</_>
  6595. <_>
  6596. 4 10 1 1 3.</_></rects>
  6597. <tilted>1</tilted></feature>
  6598. <threshold>2.1041880827397108e-03</threshold>
  6599. <left_val>0.3406811952590942</left_val>
  6600. <right_val>-0.4192248880863190</right_val></_></_>
  6601. <_>
  6602. <!-- tree 5 -->
  6603. <_>
  6604. <!-- root node -->
  6605. <feature>
  6606. <rects>
  6607. <_>
  6608. 17 10 3 3 -1.</_>
  6609. <_>
  6610. 18 11 1 3 3.</_></rects>
  6611. <tilted>1</tilted></feature>
  6612. <threshold>1.2688159476965666e-03</threshold>
  6613. <left_node>1</left_node>
  6614. <right_val>-0.5452076792716980</right_val></_>
  6615. <_>
  6616. <!-- node 1 -->
  6617. <feature>
  6618. <rects>
  6619. <_>
  6620. 17 11 1 4 -1.</_>
  6621. <_>
  6622. 16 12 1 2 2.</_></rects>
  6623. <tilted>1</tilted></feature>
  6624. <threshold>-4.2881062254309654e-03</threshold>
  6625. <left_val>0.3006008863449097</left_val>
  6626. <right_val>-0.1523319035768509</right_val></_></_>
  6627. <_>
  6628. <!-- tree 6 -->
  6629. <_>
  6630. <!-- root node -->
  6631. <feature>
  6632. <rects>
  6633. <_>
  6634. 1 0 12 9 -1.</_>
  6635. <_>
  6636. 4 0 6 9 2.</_></rects>
  6637. <tilted>0</tilted></feature>
  6638. <threshold>-4.8890449106693268e-03</threshold>
  6639. <left_node>1</left_node>
  6640. <right_val>-0.3766582012176514</right_val></_>
  6641. <_>
  6642. <!-- node 1 -->
  6643. <feature>
  6644. <rects>
  6645. <_>
  6646. 9 3 4 5 -1.</_>
  6647. <_>
  6648. 10 3 2 5 2.</_></rects>
  6649. <tilted>0</tilted></feature>
  6650. <threshold>5.0922110676765442e-03</threshold>
  6651. <left_val>0.2180331945419312</left_val>
  6652. <right_val>-0.5712652206420898</right_val></_></_>
  6653. <_>
  6654. <!-- tree 7 -->
  6655. <_>
  6656. <!-- root node -->
  6657. <feature>
  6658. <rects>
  6659. <_>
  6660. 7 8 6 3 -1.</_>
  6661. <_>
  6662. 7 9 6 1 3.</_></rects>
  6663. <tilted>0</tilted></feature>
  6664. <threshold>-7.0944731123745441e-03</threshold>
  6665. <left_val>0.5192192196846008</left_val>
  6666. <right_node>1</right_node></_>
  6667. <_>
  6668. <!-- node 1 -->
  6669. <feature>
  6670. <rects>
  6671. <_>
  6672. 7 1 9 6 -1.</_>
  6673. <_>
  6674. 7 3 9 2 3.</_></rects>
  6675. <tilted>0</tilted></feature>
  6676. <threshold>0.0254318900406361</threshold>
  6677. <left_val>-0.2126024961471558</left_val>
  6678. <right_val>0.3056620061397552</right_val></_></_>
  6679. <_>
  6680. <!-- tree 8 -->
  6681. <_>
  6682. <!-- root node -->
  6683. <feature>
  6684. <rects>
  6685. <_>
  6686. 0 1 2 2 -1.</_>
  6687. <_>
  6688. 0 2 2 1 2.</_></rects>
  6689. <tilted>0</tilted></feature>
  6690. <threshold>-6.7461907747201622e-05</threshold>
  6691. <left_node>1</left_node>
  6692. <right_val>-0.3340674936771393</right_val></_>
  6693. <_>
  6694. <!-- node 1 -->
  6695. <feature>
  6696. <rects>
  6697. <_>
  6698. 13 8 3 5 -1.</_>
  6699. <_>
  6700. 14 9 1 5 3.</_></rects>
  6701. <tilted>1</tilted></feature>
  6702. <threshold>-8.5350889712572098e-03</threshold>
  6703. <left_val>0.3504346013069153</left_val>
  6704. <right_val>-0.0903848335146904</right_val></_></_>
  6705. <_>
  6706. <!-- tree 9 -->
  6707. <_>
  6708. <!-- root node -->
  6709. <feature>
  6710. <rects>
  6711. <_>
  6712. 3 16 3 1 -1.</_>
  6713. <_>
  6714. 4 17 1 1 3.</_></rects>
  6715. <tilted>1</tilted></feature>
  6716. <threshold>-4.1117807850241661e-03</threshold>
  6717. <left_val>-0.6968370079994202</left_val>
  6718. <right_node>1</right_node></_>
  6719. <_>
  6720. <!-- node 1 -->
  6721. <feature>
  6722. <rects>
  6723. <_>
  6724. 11 1 4 7 -1.</_>
  6725. <_>
  6726. 12 1 2 7 2.</_></rects>
  6727. <tilted>0</tilted></feature>
  6728. <threshold>6.3964081928133965e-03</threshold>
  6729. <left_val>0.1154263988137245</left_val>
  6730. <right_val>-0.6664537191390991</right_val></_></_>
  6731. <_>
  6732. <!-- tree 10 -->
  6733. <_>
  6734. <!-- root node -->
  6735. <feature>
  6736. <rects>
  6737. <_>
  6738. 11 13 2 2 -1.</_>
  6739. <_>
  6740. 11 13 1 1 2.</_>
  6741. <_>
  6742. 12 14 1 1 2.</_></rects>
  6743. <tilted>0</tilted></feature>
  6744. <threshold>9.8322751000523567e-04</threshold>
  6745. <left_node>1</left_node>
  6746. <right_val>0.3569537997245789</right_val></_>
  6747. <_>
  6748. <!-- node 1 -->
  6749. <feature>
  6750. <rects>
  6751. <_>
  6752. 12 14 3 1 -1.</_>
  6753. <_>
  6754. 13 14 1 1 3.</_></rects>
  6755. <tilted>0</tilted></feature>
  6756. <threshold>-5.5737968068569899e-04</threshold>
  6757. <left_val>0.2308111041784286</left_val>
  6758. <right_val>-0.2886263132095337</right_val></_></_>
  6759. <_>
  6760. <!-- tree 11 -->
  6761. <_>
  6762. <!-- root node -->
  6763. <feature>
  6764. <rects>
  6765. <_>
  6766. 17 2 3 1 -1.</_>
  6767. <_>
  6768. 18 3 1 1 3.</_></rects>
  6769. <tilted>1</tilted></feature>
  6770. <threshold>2.8798289131373167e-03</threshold>
  6771. <left_node>1</left_node>
  6772. <right_val>-0.5992326736450195</right_val></_>
  6773. <_>
  6774. <!-- node 1 -->
  6775. <feature>
  6776. <rects>
  6777. <_>
  6778. 14 2 6 6 -1.</_>
  6779. <_>
  6780. 14 2 3 3 2.</_>
  6781. <_>
  6782. 17 5 3 3 2.</_></rects>
  6783. <tilted>0</tilted></feature>
  6784. <threshold>-7.7164517715573311e-03</threshold>
  6785. <left_val>0.3607490062713623</left_val>
  6786. <right_val>-0.0818276181817055</right_val></_></_>
  6787. <_>
  6788. <!-- tree 12 -->
  6789. <_>
  6790. <!-- root node -->
  6791. <feature>
  6792. <rects>
  6793. <_>
  6794. 12 16 8 4 -1.</_>
  6795. <_>
  6796. 12 18 8 2 2.</_></rects>
  6797. <tilted>0</tilted></feature>
  6798. <threshold>3.7285129074007273e-03</threshold>
  6799. <left_val>-0.3773201107978821</left_val>
  6800. <right_node>1</right_node></_>
  6801. <_>
  6802. <!-- node 1 -->
  6803. <feature>
  6804. <rects>
  6805. <_>
  6806. 7 11 3 3 -1.</_>
  6807. <_>
  6808. 6 12 3 1 3.</_></rects>
  6809. <tilted>1</tilted></feature>
  6810. <threshold>-0.0131611097604036</threshold>
  6811. <left_val>0.6702303886413574</left_val>
  6812. <right_val>0.0151145495474339</right_val></_></_>
  6813. <_>
  6814. <!-- tree 13 -->
  6815. <_>
  6816. <!-- root node -->
  6817. <feature>
  6818. <rects>
  6819. <_>
  6820. 6 3 8 6 -1.</_>
  6821. <_>
  6822. 4 5 8 2 3.</_></rects>
  6823. <tilted>1</tilted></feature>
  6824. <threshold>-0.0389661304652691</threshold>
  6825. <left_node>1</left_node>
  6826. <right_val>-0.3125221133232117</right_val></_>
  6827. <_>
  6828. <!-- node 1 -->
  6829. <feature>
  6830. <rects>
  6831. <_>
  6832. 1 8 3 8 -1.</_>
  6833. <_>
  6834. 1 10 3 4 2.</_></rects>
  6835. <tilted>0</tilted></feature>
  6836. <threshold>-5.7413699105381966e-03</threshold>
  6837. <left_val>0.3394747972488403</left_val>
  6838. <right_val>-0.1601140946149826</right_val></_></_>
  6839. <_>
  6840. <!-- tree 14 -->
  6841. <_>
  6842. <!-- root node -->
  6843. <feature>
  6844. <rects>
  6845. <_>
  6846. 7 0 8 6 -1.</_>
  6847. <_>
  6848. 9 2 4 6 2.</_></rects>
  6849. <tilted>1</tilted></feature>
  6850. <threshold>0.1253833025693893</threshold>
  6851. <left_node>1</left_node>
  6852. <right_val>0.7372115254402161</right_val></_>
  6853. <_>
  6854. <!-- node 1 -->
  6855. <feature>
  6856. <rects>
  6857. <_>
  6858. 5 2 7 6 -1.</_>
  6859. <_>
  6860. 5 5 7 3 2.</_></rects>
  6861. <tilted>0</tilted></feature>
  6862. <threshold>-0.0972431227564812</threshold>
  6863. <left_val>0.5028898119926453</left_val>
  6864. <right_val>-0.1328437030315399</right_val></_></_>
  6865. <_>
  6866. <!-- tree 15 -->
  6867. <_>
  6868. <!-- root node -->
  6869. <feature>
  6870. <rects>
  6871. <_>
  6872. 10 13 3 1 -1.</_>
  6873. <_>
  6874. 11 13 1 1 3.</_></rects>
  6875. <tilted>0</tilted></feature>
  6876. <threshold>-2.0128490868955851e-03</threshold>
  6877. <left_val>0.4136789143085480</left_val>
  6878. <right_node>1</right_node></_>
  6879. <_>
  6880. <!-- node 1 -->
  6881. <feature>
  6882. <rects>
  6883. <_>
  6884. 12 12 4 2 -1.</_>
  6885. <_>
  6886. 12 12 2 1 2.</_>
  6887. <_>
  6888. 14 13 2 1 2.</_></rects>
  6889. <tilted>0</tilted></feature>
  6890. <threshold>3.5349070094525814e-03</threshold>
  6891. <left_val>-0.1592327058315277</left_val>
  6892. <right_val>0.4405657947063446</right_val></_></_>
  6893. <_>
  6894. <!-- tree 16 -->
  6895. <_>
  6896. <!-- root node -->
  6897. <feature>
  6898. <rects>
  6899. <_>
  6900. 6 1 14 19 -1.</_>
  6901. <_>
  6902. 13 1 7 19 2.</_></rects>
  6903. <tilted>0</tilted></feature>
  6904. <threshold>0.4484654068946838</threshold>
  6905. <left_node>1</left_node>
  6906. <right_val>0.5942366123199463</right_val></_>
  6907. <_>
  6908. <!-- node 1 -->
  6909. <feature>
  6910. <rects>
  6911. <_>
  6912. 6 9 14 1 -1.</_>
  6913. <_>
  6914. 13 9 7 1 2.</_></rects>
  6915. <tilted>0</tilted></feature>
  6916. <threshold>-0.0103877801448107</threshold>
  6917. <left_val>0.3039911985397339</left_val>
  6918. <right_val>-0.1828735023736954</right_val></_></_>
  6919. <_>
  6920. <!-- tree 17 -->
  6921. <_>
  6922. <!-- root node -->
  6923. <feature>
  6924. <rects>
  6925. <_>
  6926. 18 0 2 1 -1.</_>
  6927. <_>
  6928. 18 0 1 1 2.</_></rects>
  6929. <tilted>1</tilted></feature>
  6930. <threshold>-1.4210389927029610e-03</threshold>
  6931. <left_val>-0.4536106884479523</left_val>
  6932. <right_node>1</right_node></_>
  6933. <_>
  6934. <!-- node 1 -->
  6935. <feature>
  6936. <rects>
  6937. <_>
  6938. 15 0 3 1 -1.</_>
  6939. <_>
  6940. 16 1 1 1 3.</_></rects>
  6941. <tilted>1</tilted></feature>
  6942. <threshold>3.6446070298552513e-03</threshold>
  6943. <left_val>0.1576682031154633</left_val>
  6944. <right_val>-0.6260883808135986</right_val></_></_>
  6945. <_>
  6946. <!-- tree 18 -->
  6947. <_>
  6948. <!-- root node -->
  6949. <feature>
  6950. <rects>
  6951. <_>
  6952. 5 7 2 3 -1.</_>
  6953. <_>
  6954. 4 8 2 1 3.</_></rects>
  6955. <tilted>1</tilted></feature>
  6956. <threshold>3.2253630924969912e-03</threshold>
  6957. <left_node>1</left_node>
  6958. <right_val>-0.4141024053096771</right_val></_>
  6959. <_>
  6960. <!-- node 1 -->
  6961. <feature>
  6962. <rects>
  6963. <_>
  6964. 15 12 3 3 -1.</_>
  6965. <_>
  6966. 14 13 3 1 3.</_></rects>
  6967. <tilted>1</tilted></feature>
  6968. <threshold>9.8893349058926105e-04</threshold>
  6969. <left_val>-0.1075780019164085</left_val>
  6970. <right_val>0.3115688860416412</right_val></_></_>
  6971. <_>
  6972. <!-- tree 19 -->
  6973. <_>
  6974. <!-- root node -->
  6975. <feature>
  6976. <rects>
  6977. <_>
  6978. 10 17 4 2 -1.</_>
  6979. <_>
  6980. 11 17 2 2 2.</_></rects>
  6981. <tilted>0</tilted></feature>
  6982. <threshold>-2.7107829228043556e-03</threshold>
  6983. <left_val>-0.7535281777381897</left_val>
  6984. <right_node>1</right_node></_>
  6985. <_>
  6986. <!-- node 1 -->
  6987. <feature>
  6988. <rects>
  6989. <_>
  6990. 8 12 3 3 -1.</_>
  6991. <_>
  6992. 9 13 1 1 9.</_></rects>
  6993. <tilted>0</tilted></feature>
  6994. <threshold>-6.9264871999621391e-03</threshold>
  6995. <left_val>0.2746442854404449</left_val>
  6996. <right_val>-0.1172894984483719</right_val></_></_>
  6997. <_>
  6998. <!-- tree 20 -->
  6999. <_>
  7000. <!-- root node -->
  7001. <feature>
  7002. <rects>
  7003. <_>
  7004. 4 1 7 6 -1.</_>
  7005. <_>
  7006. 4 3 7 2 3.</_></rects>
  7007. <tilted>0</tilted></feature>
  7008. <threshold>-0.0379427708685398</threshold>
  7009. <left_val>0.2693654894828796</left_val>
  7010. <right_node>1</right_node></_>
  7011. <_>
  7012. <!-- node 1 -->
  7013. <feature>
  7014. <rects>
  7015. <_>
  7016. 11 0 6 6 -1.</_>
  7017. <_>
  7018. 11 2 6 2 3.</_></rects>
  7019. <tilted>0</tilted></feature>
  7020. <threshold>0.0134864598512650</threshold>
  7021. <left_val>-0.3153286874294281</left_val>
  7022. <right_val>0.2578544020652771</right_val></_></_>
  7023. <_>
  7024. <!-- tree 21 -->
  7025. <_>
  7026. <!-- root node -->
  7027. <feature>
  7028. <rects>
  7029. <_>
  7030. 0 1 1 4 -1.</_>
  7031. <_>
  7032. 0 2 1 2 2.</_></rects>
  7033. <tilted>0</tilted></feature>
  7034. <threshold>2.7866458985954523e-03</threshold>
  7035. <left_node>1</left_node>
  7036. <right_val>-0.6843165755271912</right_val></_>
  7037. <_>
  7038. <!-- node 1 -->
  7039. <feature>
  7040. <rects>
  7041. <_>
  7042. 7 5 4 4 -1.</_>
  7043. <_>
  7044. 8 5 2 4 2.</_></rects>
  7045. <tilted>0</tilted></feature>
  7046. <threshold>3.2895719632506371e-03</threshold>
  7047. <left_val>0.1294910013675690</left_val>
  7048. <right_val>-0.4447514116764069</right_val></_></_>
  7049. <_>
  7050. <!-- tree 22 -->
  7051. <_>
  7052. <!-- root node -->
  7053. <feature>
  7054. <rects>
  7055. <_>
  7056. 1 0 1 3 -1.</_>
  7057. <_>
  7058. 1 1 1 1 3.</_></rects>
  7059. <tilted>0</tilted></feature>
  7060. <threshold>1.7910100286826491e-03</threshold>
  7061. <left_node>1</left_node>
  7062. <right_val>-0.5623742938041687</right_val></_>
  7063. <_>
  7064. <!-- node 1 -->
  7065. <feature>
  7066. <rects>
  7067. <_>
  7068. 9 3 4 2 -1.</_>
  7069. <_>
  7070. 9 4 4 1 2.</_></rects>
  7071. <tilted>0</tilted></feature>
  7072. <threshold>3.3694170415401459e-03</threshold>
  7073. <left_val>-0.0619367696344852</left_val>
  7074. <right_val>0.3679428994655609</right_val></_></_>
  7075. <_>
  7076. <!-- tree 23 -->
  7077. <_>
  7078. <!-- root node -->
  7079. <feature>
  7080. <rects>
  7081. <_>
  7082. 18 13 2 5 -1.</_>
  7083. <_>
  7084. 19 13 1 5 2.</_></rects>
  7085. <tilted>0</tilted></feature>
  7086. <threshold>6.5897632157430053e-04</threshold>
  7087. <left_val>-0.2770572006702423</left_val>
  7088. <right_node>1</right_node></_>
  7089. <_>
  7090. <!-- node 1 -->
  7091. <feature>
  7092. <rects>
  7093. <_>
  7094. 2 11 3 6 -1.</_>
  7095. <_>
  7096. 3 11 1 6 3.</_></rects>
  7097. <tilted>0</tilted></feature>
  7098. <threshold>-3.2603838917566463e-05</threshold>
  7099. <left_val>0.2742677927017212</left_val>
  7100. <right_val>-0.2236953973770142</right_val></_></_>
  7101. <_>
  7102. <!-- tree 24 -->
  7103. <_>
  7104. <!-- root node -->
  7105. <feature>
  7106. <rects>
  7107. <_>
  7108. 0 5 2 12 -1.</_>
  7109. <_>
  7110. 0 9 2 4 3.</_></rects>
  7111. <tilted>0</tilted></feature>
  7112. <threshold>-0.0601757206022739</threshold>
  7113. <left_val>-0.7417491078376770</left_val>
  7114. <right_node>1</right_node></_>
  7115. <_>
  7116. <!-- node 1 -->
  7117. <feature>
  7118. <rects>
  7119. <_>
  7120. 11 10 8 5 -1.</_>
  7121. <_>
  7122. 15 10 4 5 2.</_></rects>
  7123. <tilted>0</tilted></feature>
  7124. <threshold>-0.0212176106870174</threshold>
  7125. <left_val>-0.4503475129604340</left_val>
  7126. <right_val>0.1142600029706955</right_val></_></_>
  7127. <_>
  7128. <!-- tree 25 -->
  7129. <_>
  7130. <!-- root node -->
  7131. <feature>
  7132. <rects>
  7133. <_>
  7134. 15 11 4 2 -1.</_>
  7135. <_>
  7136. 16 12 2 2 2.</_></rects>
  7137. <tilted>1</tilted></feature>
  7138. <threshold>-2.2632910404354334e-03</threshold>
  7139. <left_node>1</left_node>
  7140. <right_val>-0.3053858876228333</right_val></_>
  7141. <_>
  7142. <!-- node 1 -->
  7143. <feature>
  7144. <rects>
  7145. <_>
  7146. 15 8 4 2 -1.</_>
  7147. <_>
  7148. 16 9 2 2 2.</_></rects>
  7149. <tilted>1</tilted></feature>
  7150. <threshold>6.0313078574836254e-03</threshold>
  7151. <left_val>0.2056266069412231</left_val>
  7152. <right_val>-0.4068979918956757</right_val></_></_>
  7153. <_>
  7154. <!-- tree 26 -->
  7155. <_>
  7156. <!-- root node -->
  7157. <feature>
  7158. <rects>
  7159. <_>
  7160. 5 13 2 1 -1.</_>
  7161. <_>
  7162. 6 13 1 1 2.</_></rects>
  7163. <tilted>0</tilted></feature>
  7164. <threshold>5.7578482665121555e-04</threshold>
  7165. <left_node>1</left_node>
  7166. <right_val>0.3509874939918518</right_val></_>
  7167. <_>
  7168. <!-- node 1 -->
  7169. <feature>
  7170. <rects>
  7171. <_>
  7172. 12 13 2 2 -1.</_>
  7173. <_>
  7174. 13 13 1 2 2.</_></rects>
  7175. <tilted>0</tilted></feature>
  7176. <threshold>-9.3677162658423185e-04</threshold>
  7177. <left_val>0.2161615937948227</left_val>
  7178. <right_val>-0.2441577017307281</right_val></_></_>
  7179. <_>
  7180. <!-- tree 27 -->
  7181. <_>
  7182. <!-- root node -->
  7183. <feature>
  7184. <rects>
  7185. <_>
  7186. 11 12 8 8 -1.</_>
  7187. <_>
  7188. 13 12 4 8 2.</_></rects>
  7189. <tilted>0</tilted></feature>
  7190. <threshold>-0.0376265682280064</threshold>
  7191. <left_val>-0.5911368131637573</left_val>
  7192. <right_node>1</right_node></_>
  7193. <_>
  7194. <!-- node 1 -->
  7195. <feature>
  7196. <rects>
  7197. <_>
  7198. 3 0 6 10 -1.</_>
  7199. <_>
  7200. 5 0 2 10 3.</_></rects>
  7201. <tilted>0</tilted></feature>
  7202. <threshold>4.4729812070727348e-03</threshold>
  7203. <left_val>0.1579227000474930</left_val>
  7204. <right_val>-0.3222627937793732</right_val></_></_>
  7205. <_>
  7206. <!-- tree 28 -->
  7207. <_>
  7208. <!-- root node -->
  7209. <feature>
  7210. <rects>
  7211. <_>
  7212. 6 14 2 2 -1.</_>
  7213. <_>
  7214. 6 14 1 2 2.</_></rects>
  7215. <tilted>1</tilted></feature>
  7216. <threshold>-7.1853301487863064e-03</threshold>
  7217. <left_val>-0.5951905250549316</left_val>
  7218. <right_node>1</right_node></_>
  7219. <_>
  7220. <!-- node 1 -->
  7221. <feature>
  7222. <rects>
  7223. <_>
  7224. 0 5 19 4 -1.</_>
  7225. <_>
  7226. 0 7 19 2 2.</_></rects>
  7227. <tilted>0</tilted></feature>
  7228. <threshold>0.0405202284455299</threshold>
  7229. <left_val>-0.0666884630918503</left_val>
  7230. <right_val>0.3403024971485138</right_val></_></_>
  7231. <_>
  7232. <!-- tree 29 -->
  7233. <_>
  7234. <!-- root node -->
  7235. <feature>
  7236. <rects>
  7237. <_>
  7238. 17 4 3 2 -1.</_>
  7239. <_>
  7240. 18 5 1 2 3.</_></rects>
  7241. <tilted>1</tilted></feature>
  7242. <threshold>-6.1968388035893440e-03</threshold>
  7243. <left_val>-0.6728746294975281</left_val>
  7244. <right_node>1</right_node></_>
  7245. <_>
  7246. <!-- node 1 -->
  7247. <feature>
  7248. <rects>
  7249. <_>
  7250. 17 3 3 4 -1.</_>
  7251. <_>
  7252. 18 4 1 4 3.</_></rects>
  7253. <tilted>1</tilted></feature>
  7254. <threshold>0.0103115299716592</threshold>
  7255. <left_val>0.1068323999643326</left_val>
  7256. <right_val>-0.5482596755027771</right_val></_></_></trees>
  7257. <stage_threshold>-2.0330519676208496</stage_threshold>
  7258. <parent>15</parent>
  7259. <next>-1</next></_>
  7260. <_>
  7261. <!-- stage 17 -->
  7262. <trees>
  7263. <_>
  7264. <!-- tree 0 -->
  7265. <_>
  7266. <!-- root node -->
  7267. <feature>
  7268. <rects>
  7269. <_>
  7270. 5 13 8 2 -1.</_>
  7271. <_>
  7272. 7 13 4 2 2.</_></rects>
  7273. <tilted>0</tilted></feature>
  7274. <threshold>-0.0193205196410418</threshold>
  7275. <left_node>1</left_node>
  7276. <right_val>-0.3871257007122040</right_val></_>
  7277. <_>
  7278. <!-- node 1 -->
  7279. <feature>
  7280. <rects>
  7281. <_>
  7282. 0 0 2 8 -1.</_>
  7283. <_>
  7284. 0 4 2 4 2.</_></rects>
  7285. <tilted>0</tilted></feature>
  7286. <threshold>-0.0151264602318406</threshold>
  7287. <left_val>0.6446818113327026</left_val>
  7288. <right_val>-0.1272711008787155</right_val></_></_>
  7289. <_>
  7290. <!-- tree 1 -->
  7291. <_>
  7292. <!-- root node -->
  7293. <feature>
  7294. <rects>
  7295. <_>
  7296. 0 9 15 6 -1.</_>
  7297. <_>
  7298. 0 11 15 2 3.</_></rects>
  7299. <tilted>0</tilted></feature>
  7300. <threshold>-0.0601826906204224</threshold>
  7301. <left_node>1</left_node>
  7302. <right_val>-0.3081910908222198</right_val></_>
  7303. <_>
  7304. <!-- node 1 -->
  7305. <feature>
  7306. <rects>
  7307. <_>
  7308. 18 14 2 1 -1.</_>
  7309. <_>
  7310. 18 14 1 1 2.</_></rects>
  7311. <tilted>1</tilted></feature>
  7312. <threshold>-1.3576049823313951e-03</threshold>
  7313. <left_val>0.4802188873291016</left_val>
  7314. <right_val>-0.3342868089675903</right_val></_></_>
  7315. <_>
  7316. <!-- tree 2 -->
  7317. <_>
  7318. <!-- root node -->
  7319. <feature>
  7320. <rects>
  7321. <_>
  7322. 0 0 4 8 -1.</_>
  7323. <_>
  7324. 2 0 2 8 2.</_></rects>
  7325. <tilted>0</tilted></feature>
  7326. <threshold>-5.6930771097540855e-03</threshold>
  7327. <left_node>1</left_node>
  7328. <right_val>-0.3316608071327209</right_val></_>
  7329. <_>
  7330. <!-- node 1 -->
  7331. <feature>
  7332. <rects>
  7333. <_>
  7334. 0 13 6 2 -1.</_>
  7335. <_>
  7336. 2 13 2 2 3.</_></rects>
  7337. <tilted>0</tilted></feature>
  7338. <threshold>-8.0942036584019661e-03</threshold>
  7339. <left_val>0.4751748144626617</left_val>
  7340. <right_val>-0.0747615620493889</right_val></_></_>
  7341. <_>
  7342. <!-- tree 3 -->
  7343. <_>
  7344. <!-- root node -->
  7345. <feature>
  7346. <rects>
  7347. <_>
  7348. 3 18 3 2 -1.</_>
  7349. <_>
  7350. 3 19 3 1 2.</_></rects>
  7351. <tilted>0</tilted></feature>
  7352. <threshold>6.8413332337513566e-04</threshold>
  7353. <left_val>-0.3574196994304657</left_val>
  7354. <right_node>1</right_node></_>
  7355. <_>
  7356. <!-- node 1 -->
  7357. <feature>
  7358. <rects>
  7359. <_>
  7360. 2 11 15 6 -1.</_>
  7361. <_>
  7362. 7 13 5 2 9.</_></rects>
  7363. <tilted>0</tilted></feature>
  7364. <threshold>-0.1152058988809586</threshold>
  7365. <left_val>0.2610509097576141</left_val>
  7366. <right_val>-0.3177380859851837</right_val></_></_>
  7367. <_>
  7368. <!-- tree 4 -->
  7369. <_>
  7370. <!-- root node -->
  7371. <feature>
  7372. <rects>
  7373. <_>
  7374. 7 14 3 3 -1.</_>
  7375. <_>
  7376. 8 15 1 3 3.</_></rects>
  7377. <tilted>1</tilted></feature>
  7378. <threshold>-9.1124046593904495e-03</threshold>
  7379. <left_val>-0.5854070782661438</left_val>
  7380. <right_node>1</right_node></_>
  7381. <_>
  7382. <!-- node 1 -->
  7383. <feature>
  7384. <rects>
  7385. <_>
  7386. 7 8 2 2 -1.</_>
  7387. <_>
  7388. 8 8 1 2 2.</_></rects>
  7389. <tilted>0</tilted></feature>
  7390. <threshold>5.4891068430151790e-05</threshold>
  7391. <left_val>-0.2298189997673035</left_val>
  7392. <right_val>0.2348290979862213</right_val></_></_>
  7393. <_>
  7394. <!-- tree 5 -->
  7395. <_>
  7396. <!-- root node -->
  7397. <feature>
  7398. <rects>
  7399. <_>
  7400. 6 9 6 3 -1.</_>
  7401. <_>
  7402. 6 10 6 1 3.</_></rects>
  7403. <tilted>0</tilted></feature>
  7404. <threshold>-9.5622539520263672e-03</threshold>
  7405. <left_val>0.3915528059005737</left_val>
  7406. <right_node>1</right_node></_>
  7407. <_>
  7408. <!-- node 1 -->
  7409. <feature>
  7410. <rects>
  7411. <_>
  7412. 5 8 7 3 -1.</_>
  7413. <_>
  7414. 5 9 7 1 3.</_></rects>
  7415. <tilted>0</tilted></feature>
  7416. <threshold>-8.2032606005668640e-03</threshold>
  7417. <left_val>0.4317995011806488</left_val>
  7418. <right_val>-0.2317329049110413</right_val></_></_>
  7419. <_>
  7420. <!-- tree 6 -->
  7421. <_>
  7422. <!-- root node -->
  7423. <feature>
  7424. <rects>
  7425. <_>
  7426. 17 9 3 1 -1.</_>
  7427. <_>
  7428. 18 10 1 1 3.</_></rects>
  7429. <tilted>1</tilted></feature>
  7430. <threshold>-4.0035760030150414e-03</threshold>
  7431. <left_val>-0.5870047807693481</left_val>
  7432. <right_node>1</right_node></_>
  7433. <_>
  7434. <!-- node 1 -->
  7435. <feature>
  7436. <rects>
  7437. <_>
  7438. 17 9 3 2 -1.</_>
  7439. <_>
  7440. 18 10 1 2 3.</_></rects>
  7441. <tilted>1</tilted></feature>
  7442. <threshold>2.5406230706721544e-03</threshold>
  7443. <left_val>0.1799003034830093</left_val>
  7444. <right_val>-0.4168156981468201</right_val></_></_>
  7445. <_>
  7446. <!-- tree 7 -->
  7447. <_>
  7448. <!-- root node -->
  7449. <feature>
  7450. <rects>
  7451. <_>
  7452. 11 9 1 3 -1.</_>
  7453. <_>
  7454. 11 10 1 1 3.</_></rects>
  7455. <tilted>0</tilted></feature>
  7456. <threshold>1.9435470458120108e-03</threshold>
  7457. <left_node>1</left_node>
  7458. <right_val>0.3034000992774963</right_val></_>
  7459. <_>
  7460. <!-- node 1 -->
  7461. <feature>
  7462. <rects>
  7463. <_>
  7464. 12 11 2 2 -1.</_>
  7465. <_>
  7466. 12 11 1 1 2.</_>
  7467. <_>
  7468. 13 12 1 1 2.</_></rects>
  7469. <tilted>0</tilted></feature>
  7470. <threshold>8.4362342022359371e-04</threshold>
  7471. <left_val>-0.3066104054450989</left_val>
  7472. <right_val>0.2364699989557266</right_val></_></_>
  7473. <_>
  7474. <!-- tree 8 -->
  7475. <_>
  7476. <!-- root node -->
  7477. <feature>
  7478. <rects>
  7479. <_>
  7480. 3 6 4 5 -1.</_>
  7481. <_>
  7482. 4 6 2 5 2.</_></rects>
  7483. <tilted>0</tilted></feature>
  7484. <threshold>-5.3103519603610039e-03</threshold>
  7485. <left_val>-0.5630481839179993</left_val>
  7486. <right_node>1</right_node></_>
  7487. <_>
  7488. <!-- node 1 -->
  7489. <feature>
  7490. <rects>
  7491. <_>
  7492. 5 6 4 3 -1.</_>
  7493. <_>
  7494. 6 6 2 3 2.</_></rects>
  7495. <tilted>0</tilted></feature>
  7496. <threshold>-3.5526719875633717e-03</threshold>
  7497. <left_val>-0.5569577217102051</left_val>
  7498. <right_val>0.1502279043197632</right_val></_></_>
  7499. <_>
  7500. <!-- tree 9 -->
  7501. <_>
  7502. <!-- root node -->
  7503. <feature>
  7504. <rects>
  7505. <_>
  7506. 0 3 1 6 -1.</_>
  7507. <_>
  7508. 0 5 1 2 3.</_></rects>
  7509. <tilted>0</tilted></feature>
  7510. <threshold>7.1414401754736900e-03</threshold>
  7511. <left_node>1</left_node>
  7512. <right_val>-0.6762663722038269</right_val></_>
  7513. <_>
  7514. <!-- node 1 -->
  7515. <feature>
  7516. <rects>
  7517. <_>
  7518. 14 12 2 2 -1.</_>
  7519. <_>
  7520. 14 12 1 1 2.</_>
  7521. <_>
  7522. 15 13 1 1 2.</_></rects>
  7523. <tilted>0</tilted></feature>
  7524. <threshold>-1.1435860069468617e-03</threshold>
  7525. <left_val>0.3787387907505035</left_val>
  7526. <right_val>-0.0744428932666779</right_val></_></_>
  7527. <_>
  7528. <!-- tree 10 -->
  7529. <_>
  7530. <!-- root node -->
  7531. <feature>
  7532. <rects>
  7533. <_>
  7534. 3 16 3 3 -1.</_>
  7535. <_>
  7536. 4 16 1 3 3.</_></rects>
  7537. <tilted>0</tilted></feature>
  7538. <threshold>-3.1177429482340813e-03</threshold>
  7539. <left_val>-0.6256858706474304</left_val>
  7540. <right_node>1</right_node></_>
  7541. <_>
  7542. <!-- node 1 -->
  7543. <feature>
  7544. <rects>
  7545. <_>
  7546. 3 1 14 4 -1.</_>
  7547. <_>
  7548. 3 3 14 2 2.</_></rects>
  7549. <tilted>0</tilted></feature>
  7550. <threshold>-0.0774156227707863</threshold>
  7551. <left_val>0.3983941078186035</left_val>
  7552. <right_val>-0.0552623197436333</right_val></_></_>
  7553. <_>
  7554. <!-- tree 11 -->
  7555. <_>
  7556. <!-- root node -->
  7557. <feature>
  7558. <rects>
  7559. <_>
  7560. 6 0 14 8 -1.</_>
  7561. <_>
  7562. 6 0 7 4 2.</_>
  7563. <_>
  7564. 13 4 7 4 2.</_></rects>
  7565. <tilted>0</tilted></feature>
  7566. <threshold>-0.0392529889941216</threshold>
  7567. <left_val>0.3409483134746552</left_val>
  7568. <right_node>1</right_node></_>
  7569. <_>
  7570. <!-- node 1 -->
  7571. <feature>
  7572. <rects>
  7573. <_>
  7574. 4 0 4 8 -1.</_>
  7575. <_>
  7576. 4 2 4 4 2.</_></rects>
  7577. <tilted>0</tilted></feature>
  7578. <threshold>0.0220499709248543</threshold>
  7579. <left_val>-0.2441371977329254</left_val>
  7580. <right_val>0.4305087029933929</right_val></_></_>
  7581. <_>
  7582. <!-- tree 12 -->
  7583. <_>
  7584. <!-- root node -->
  7585. <feature>
  7586. <rects>
  7587. <_>
  7588. 9 0 8 1 -1.</_>
  7589. <_>
  7590. 13 0 4 1 2.</_></rects>
  7591. <tilted>0</tilted></feature>
  7592. <threshold>-2.2205871064215899e-03</threshold>
  7593. <left_val>0.2830972075462341</left_val>
  7594. <right_node>1</right_node></_>
  7595. <_>
  7596. <!-- node 1 -->
  7597. <feature>
  7598. <rects>
  7599. <_>
  7600. 14 1 6 1 -1.</_>
  7601. <_>
  7602. 17 1 3 1 2.</_></rects>
  7603. <tilted>0</tilted></feature>
  7604. <threshold>2.8649640735238791e-03</threshold>
  7605. <left_val>-0.3540188074111938</left_val>
  7606. <right_val>0.2105457037687302</right_val></_></_>
  7607. <_>
  7608. <!-- tree 13 -->
  7609. <_>
  7610. <!-- root node -->
  7611. <feature>
  7612. <rects>
  7613. <_>
  7614. 18 18 2 2 -1.</_>
  7615. <_>
  7616. 18 19 2 1 2.</_></rects>
  7617. <tilted>0</tilted></feature>
  7618. <threshold>5.8806730521610007e-05</threshold>
  7619. <left_val>-0.2701404094696045</left_val>
  7620. <right_node>1</right_node></_>
  7621. <_>
  7622. <!-- node 1 -->
  7623. <feature>
  7624. <rects>
  7625. <_>
  7626. 5 16 2 2 -1.</_>
  7627. <_>
  7628. 5 16 1 2 2.</_></rects>
  7629. <tilted>1</tilted></feature>
  7630. <threshold>-6.6595021635293961e-03</threshold>
  7631. <left_val>-0.5931348204612732</left_val>
  7632. <right_val>0.2189286947250366</right_val></_></_>
  7633. <_>
  7634. <!-- tree 14 -->
  7635. <_>
  7636. <!-- root node -->
  7637. <feature>
  7638. <rects>
  7639. <_>
  7640. 2 8 11 3 -1.</_>
  7641. <_>
  7642. 2 9 11 1 3.</_></rects>
  7643. <tilted>0</tilted></feature>
  7644. <threshold>0.0169316008687019</threshold>
  7645. <left_val>-0.1127962023019791</left_val>
  7646. <right_node>1</right_node></_>
  7647. <_>
  7648. <!-- node 1 -->
  7649. <feature>
  7650. <rects>
  7651. <_>
  7652. 1 8 2 3 -1.</_>
  7653. <_>
  7654. 1 9 2 1 3.</_></rects>
  7655. <tilted>0</tilted></feature>
  7656. <threshold>4.7026639804244041e-03</threshold>
  7657. <left_val>0.4921221137046814</left_val>
  7658. <right_val>-0.3970288038253784</right_val></_></_>
  7659. <_>
  7660. <!-- tree 15 -->
  7661. <_>
  7662. <!-- root node -->
  7663. <feature>
  7664. <rects>
  7665. <_>
  7666. 18 12 2 5 -1.</_>
  7667. <_>
  7668. 19 12 1 5 2.</_></rects>
  7669. <tilted>0</tilted></feature>
  7670. <threshold>1.7478819936513901e-03</threshold>
  7671. <left_val>-0.2233936935663223</left_val>
  7672. <right_node>1</right_node></_>
  7673. <_>
  7674. <!-- node 1 -->
  7675. <feature>
  7676. <rects>
  7677. <_>
  7678. 19 16 1 3 -1.</_>
  7679. <_>
  7680. 18 17 1 1 3.</_></rects>
  7681. <tilted>1</tilted></feature>
  7682. <threshold>-2.0893230102956295e-03</threshold>
  7683. <left_val>-0.4315781891345978</left_val>
  7684. <right_val>0.2537313997745514</right_val></_></_>
  7685. <_>
  7686. <!-- tree 16 -->
  7687. <_>
  7688. <!-- root node -->
  7689. <feature>
  7690. <rects>
  7691. <_>
  7692. 14 9 2 2 -1.</_>
  7693. <_>
  7694. 14 9 1 2 2.</_></rects>
  7695. <tilted>1</tilted></feature>
  7696. <threshold>0.0115348501130939</threshold>
  7697. <left_node>1</left_node>
  7698. <right_val>-0.7066854238510132</right_val></_>
  7699. <_>
  7700. <!-- node 1 -->
  7701. <feature>
  7702. <rects>
  7703. <_>
  7704. 13 11 2 2 -1.</_>
  7705. <_>
  7706. 13 11 1 1 2.</_>
  7707. <_>
  7708. 14 12 1 1 2.</_></rects>
  7709. <tilted>0</tilted></feature>
  7710. <threshold>8.7350117973983288e-04</threshold>
  7711. <left_val>-0.0725091323256493</left_val>
  7712. <right_val>0.3997502923011780</right_val></_></_>
  7713. <_>
  7714. <!-- tree 17 -->
  7715. <_>
  7716. <!-- root node -->
  7717. <feature>
  7718. <rects>
  7719. <_>
  7720. 13 12 4 4 -1.</_>
  7721. <_>
  7722. 14 12 2 4 2.</_></rects>
  7723. <tilted>0</tilted></feature>
  7724. <threshold>-7.2836421895772219e-04</threshold>
  7725. <left_node>1</left_node>
  7726. <right_val>-0.2356764972209930</right_val></_>
  7727. <_>
  7728. <!-- node 1 -->
  7729. <feature>
  7730. <rects>
  7731. <_>
  7732. 19 11 1 3 -1.</_>
  7733. <_>
  7734. 19 12 1 1 3.</_></rects>
  7735. <tilted>0</tilted></feature>
  7736. <threshold>1.2666890397667885e-03</threshold>
  7737. <left_val>0.2258238941431046</left_val>
  7738. <right_val>-0.4231734871864319</right_val></_></_>
  7739. <_>
  7740. <!-- tree 18 -->
  7741. <_>
  7742. <!-- root node -->
  7743. <feature>
  7744. <rects>
  7745. <_>
  7746. 0 1 1 4 -1.</_>
  7747. <_>
  7748. 0 3 1 2 2.</_></rects>
  7749. <tilted>0</tilted></feature>
  7750. <threshold>-8.4794021677225828e-04</threshold>
  7751. <left_node>1</left_node>
  7752. <right_val>-0.2830702960491180</right_val></_>
  7753. <_>
  7754. <!-- node 1 -->
  7755. <feature>
  7756. <rects>
  7757. <_>
  7758. 0 0 20 20 -1.</_>
  7759. <_>
  7760. 0 0 10 10 2.</_>
  7761. <_>
  7762. 10 10 10 10 2.</_></rects>
  7763. <tilted>0</tilted></feature>
  7764. <threshold>0.3621244132518768</threshold>
  7765. <left_val>0.1672423928976059</left_val>
  7766. <right_val>-0.7682694792747498</right_val></_></_>
  7767. <_>
  7768. <!-- tree 19 -->
  7769. <_>
  7770. <!-- root node -->
  7771. <feature>
  7772. <rects>
  7773. <_>
  7774. 11 12 3 3 -1.</_>
  7775. <_>
  7776. 10 13 3 1 3.</_></rects>
  7777. <tilted>1</tilted></feature>
  7778. <threshold>-1.9437649752944708e-03</threshold>
  7779. <left_node>1</left_node>
  7780. <right_val>-0.2722941935062408</right_val></_>
  7781. <_>
  7782. <!-- node 1 -->
  7783. <feature>
  7784. <rects>
  7785. <_>
  7786. 16 17 1 2 -1.</_>
  7787. <_>
  7788. 16 17 1 1 2.</_></rects>
  7789. <tilted>1</tilted></feature>
  7790. <threshold>-4.1159680113196373e-03</threshold>
  7791. <left_val>-0.6421130895614624</left_val>
  7792. <right_val>0.1881023049354553</right_val></_></_>
  7793. <_>
  7794. <!-- tree 20 -->
  7795. <_>
  7796. <!-- root node -->
  7797. <feature>
  7798. <rects>
  7799. <_>
  7800. 13 10 4 2 -1.</_>
  7801. <_>
  7802. 13 10 2 1 2.</_>
  7803. <_>
  7804. 15 11 2 1 2.</_></rects>
  7805. <tilted>0</tilted></feature>
  7806. <threshold>2.3254039697349072e-03</threshold>
  7807. <left_node>1</left_node>
  7808. <right_val>0.2851688861846924</right_val></_>
  7809. <_>
  7810. <!-- node 1 -->
  7811. <feature>
  7812. <rects>
  7813. <_>
  7814. 15 11 2 2 -1.</_>
  7815. <_>
  7816. 15 11 1 1 2.</_>
  7817. <_>
  7818. 16 12 1 1 2.</_></rects>
  7819. <tilted>0</tilted></feature>
  7820. <threshold>-1.4815620379522443e-03</threshold>
  7821. <left_val>0.4257420897483826</left_val>
  7822. <right_val>-0.2111361026763916</right_val></_></_>
  7823. <_>
  7824. <!-- tree 21 -->
  7825. <_>
  7826. <!-- root node -->
  7827. <feature>
  7828. <rects>
  7829. <_>
  7830. 2 10 3 6 -1.</_>
  7831. <_>
  7832. 3 10 1 6 3.</_></rects>
  7833. <tilted>0</tilted></feature>
  7834. <threshold>-6.6233296820428222e-05</threshold>
  7835. <left_node>1</left_node>
  7836. <right_val>-0.2820585072040558</right_val></_>
  7837. <_>
  7838. <!-- node 1 -->
  7839. <feature>
  7840. <rects>
  7841. <_>
  7842. 0 0 6 9 -1.</_>
  7843. <_>
  7844. 2 0 2 9 3.</_></rects>
  7845. <tilted>0</tilted></feature>
  7846. <threshold>-0.0337564311921597</threshold>
  7847. <left_val>-0.8180304169654846</left_val>
  7848. <right_val>0.1705366969108582</right_val></_></_>
  7849. <_>
  7850. <!-- tree 22 -->
  7851. <_>
  7852. <!-- root node -->
  7853. <feature>
  7854. <rects>
  7855. <_>
  7856. 8 17 2 1 -1.</_>
  7857. <_>
  7858. 8 17 1 1 2.</_></rects>
  7859. <tilted>1</tilted></feature>
  7860. <threshold>-9.4350927975028753e-04</threshold>
  7861. <left_val>0.1527314037084579</left_val>
  7862. <right_node>1</right_node></_>
  7863. <_>
  7864. <!-- node 1 -->
  7865. <feature>
  7866. <rects>
  7867. <_>
  7868. 4 18 8 1 -1.</_>
  7869. <_>
  7870. 8 18 4 1 2.</_></rects>
  7871. <tilted>0</tilted></feature>
  7872. <threshold>1.0650219628587365e-03</threshold>
  7873. <left_val>-0.4265049099922180</left_val>
  7874. <right_val>0.1523593962192535</right_val></_></_>
  7875. <_>
  7876. <!-- tree 23 -->
  7877. <_>
  7878. <!-- root node -->
  7879. <feature>
  7880. <rects>
  7881. <_>
  7882. 4 11 1 4 -1.</_>
  7883. <_>
  7884. 3 12 1 2 2.</_></rects>
  7885. <tilted>1</tilted></feature>
  7886. <threshold>-1.2905279872938991e-03</threshold>
  7887. <left_val>0.1736539006233215</left_val>
  7888. <right_node>1</right_node></_>
  7889. <_>
  7890. <!-- node 1 -->
  7891. <feature>
  7892. <rects>
  7893. <_>
  7894. 7 11 3 3 -1.</_>
  7895. <_>
  7896. 6 12 3 1 3.</_></rects>
  7897. <tilted>1</tilted></feature>
  7898. <threshold>9.6549028530716896e-03</threshold>
  7899. <left_val>-0.3972159922122955</left_val>
  7900. <right_val>0.1795317977666855</right_val></_></_>
  7901. <_>
  7902. <!-- tree 24 -->
  7903. <_>
  7904. <!-- root node -->
  7905. <feature>
  7906. <rects>
  7907. <_>
  7908. 9 18 4 1 -1.</_>
  7909. <_>
  7910. 10 18 2 1 2.</_></rects>
  7911. <tilted>0</tilted></feature>
  7912. <threshold>1.3434770517051220e-03</threshold>
  7913. <left_node>1</left_node>
  7914. <right_val>-0.6960932016372681</right_val></_>
  7915. <_>
  7916. <!-- node 1 -->
  7917. <feature>
  7918. <rects>
  7919. <_>
  7920. 0 19 2 1 -1.</_>
  7921. <_>
  7922. 1 19 1 1 2.</_></rects>
  7923. <tilted>0</tilted></feature>
  7924. <threshold>5.5220007197931409e-04</threshold>
  7925. <left_val>-0.0722587704658508</left_val>
  7926. <right_val>0.3449329137802124</right_val></_></_>
  7927. <_>
  7928. <!-- tree 25 -->
  7929. <_>
  7930. <!-- root node -->
  7931. <feature>
  7932. <rects>
  7933. <_>
  7934. 11 6 3 5 -1.</_>
  7935. <_>
  7936. 12 6 1 5 3.</_></rects>
  7937. <tilted>0</tilted></feature>
  7938. <threshold>3.5795350559055805e-03</threshold>
  7939. <left_node>1</left_node>
  7940. <right_val>-0.4807066917419434</right_val></_>
  7941. <_>
  7942. <!-- node 1 -->
  7943. <feature>
  7944. <rects>
  7945. <_>
  7946. 8 0 12 20 -1.</_>
  7947. <_>
  7948. 8 0 6 10 2.</_>
  7949. <_>
  7950. 14 10 6 10 2.</_></rects>
  7951. <tilted>0</tilted></feature>
  7952. <threshold>-0.0105854999274015</threshold>
  7953. <left_val>-0.3297558128833771</left_val>
  7954. <right_val>0.1468691974878311</right_val></_></_>
  7955. <_>
  7956. <!-- tree 26 -->
  7957. <_>
  7958. <!-- root node -->
  7959. <feature>
  7960. <rects>
  7961. <_>
  7962. 4 0 1 4 -1.</_>
  7963. <_>
  7964. 3 1 1 2 2.</_></rects>
  7965. <tilted>1</tilted></feature>
  7966. <threshold>3.5636040847748518e-03</threshold>
  7967. <left_node>1</left_node>
  7968. <right_val>-0.6141502261161804</right_val></_>
  7969. <_>
  7970. <!-- node 1 -->
  7971. <feature>
  7972. <rects>
  7973. <_>
  7974. 4 14 16 4 -1.</_>
  7975. <_>
  7976. 8 14 8 4 2.</_></rects>
  7977. <tilted>0</tilted></feature>
  7978. <threshold>-0.1029829010367393</threshold>
  7979. <left_val>-0.7236648201942444</left_val>
  7980. <right_val>0.0844470709562302</right_val></_></_>
  7981. <_>
  7982. <!-- tree 27 -->
  7983. <_>
  7984. <!-- root node -->
  7985. <feature>
  7986. <rects>
  7987. <_>
  7988. 7 9 5 4 -1.</_>
  7989. <_>
  7990. 6 10 5 2 2.</_></rects>
  7991. <tilted>1</tilted></feature>
  7992. <threshold>-0.0296057593077421</threshold>
  7993. <left_val>0.4711360931396484</left_val>
  7994. <right_node>1</right_node></_>
  7995. <_>
  7996. <!-- node 1 -->
  7997. <feature>
  7998. <rects>
  7999. <_>
  8000. 5 12 6 2 -1.</_>
  8001. <_>
  8002. 5 12 3 2 2.</_></rects>
  8003. <tilted>1</tilted></feature>
  8004. <threshold>-0.0345805995166302</threshold>
  8005. <left_val>-0.4312899112701416</left_val>
  8006. <right_val>0.0246234703809023</right_val></_></_>
  8007. <_>
  8008. <!-- tree 28 -->
  8009. <_>
  8010. <!-- root node -->
  8011. <feature>
  8012. <rects>
  8013. <_>
  8014. 1 14 4 1 -1.</_>
  8015. <_>
  8016. 1 14 2 1 2.</_></rects>
  8017. <tilted>1</tilted></feature>
  8018. <threshold>4.7923368401825428e-03</threshold>
  8019. <left_node>1</left_node>
  8020. <right_val>-0.4627079963684082</right_val></_>
  8021. <_>
  8022. <!-- node 1 -->
  8023. <feature>
  8024. <rects>
  8025. <_>
  8026. 4 10 1 3 -1.</_>
  8027. <_>
  8028. 3 11 1 1 3.</_></rects>
  8029. <tilted>1</tilted></feature>
  8030. <threshold>1.7058040248230100e-03</threshold>
  8031. <left_val>0.1473857015371323</left_val>
  8032. <right_val>-0.3781889081001282</right_val></_></_>
  8033. <_>
  8034. <!-- tree 29 -->
  8035. <_>
  8036. <!-- root node -->
  8037. <feature>
  8038. <rects>
  8039. <_>
  8040. 3 10 3 9 -1.</_>
  8041. <_>
  8042. 4 10 1 9 3.</_></rects>
  8043. <tilted>0</tilted></feature>
  8044. <threshold>-3.3174119889736176e-03</threshold>
  8045. <left_val>0.2792986035346985</left_val>
  8046. <right_node>1</right_node></_>
  8047. <_>
  8048. <!-- node 1 -->
  8049. <feature>
  8050. <rects>
  8051. <_>
  8052. 4 11 3 4 -1.</_>
  8053. <_>
  8054. 5 11 1 4 3.</_></rects>
  8055. <tilted>0</tilted></feature>
  8056. <threshold>-1.7022279789671302e-03</threshold>
  8057. <left_val>0.2632699012756348</left_val>
  8058. <right_val>-0.2512921094894409</right_val></_></_>
  8059. <_>
  8060. <!-- tree 30 -->
  8061. <_>
  8062. <!-- root node -->
  8063. <feature>
  8064. <rects>
  8065. <_>
  8066. 5 12 3 2 -1.</_>
  8067. <_>
  8068. 6 12 1 2 3.</_></rects>
  8069. <tilted>0</tilted></feature>
  8070. <threshold>-8.1695342669263482e-04</threshold>
  8071. <left_node>1</left_node>
  8072. <right_val>-0.1285964995622635</right_val></_>
  8073. <_>
  8074. <!-- node 1 -->
  8075. <feature>
  8076. <rects>
  8077. <_>
  8078. 7 12 3 2 -1.</_>
  8079. <_>
  8080. 8 12 1 2 3.</_></rects>
  8081. <tilted>0</tilted></feature>
  8082. <threshold>-1.4184829778969288e-03</threshold>
  8083. <left_val>0.5885540246963501</left_val>
  8084. <right_val>-0.0500851683318615</right_val></_></_>
  8085. <_>
  8086. <!-- tree 31 -->
  8087. <_>
  8088. <!-- root node -->
  8089. <feature>
  8090. <rects>
  8091. <_>
  8092. 1 2 12 6 -1.</_>
  8093. <_>
  8094. 5 2 4 6 3.</_></rects>
  8095. <tilted>0</tilted></feature>
  8096. <threshold>-0.0104785999283195</threshold>
  8097. <left_val>0.1473290026187897</left_val>
  8098. <right_node>1</right_node></_>
  8099. <_>
  8100. <!-- node 1 -->
  8101. <feature>
  8102. <rects>
  8103. <_>
  8104. 9 0 8 3 -1.</_>
  8105. <_>
  8106. 11 2 4 3 2.</_></rects>
  8107. <tilted>1</tilted></feature>
  8108. <threshold>0.0319819115102291</threshold>
  8109. <left_val>-0.4129954874515533</left_val>
  8110. <right_val>0.3444204926490784</right_val></_></_>
  8111. <_>
  8112. <!-- tree 32 -->
  8113. <_>
  8114. <!-- root node -->
  8115. <feature>
  8116. <rects>
  8117. <_>
  8118. 8 1 6 2 -1.</_>
  8119. <_>
  8120. 8 1 3 2 2.</_></rects>
  8121. <tilted>1</tilted></feature>
  8122. <threshold>0.0455438494682312</threshold>
  8123. <left_node>1</left_node>
  8124. <right_val>0.4884208142757416</right_val></_>
  8125. <_>
  8126. <!-- node 1 -->
  8127. <feature>
  8128. <rects>
  8129. <_>
  8130. 4 4 15 9 -1.</_>
  8131. <_>
  8132. 4 7 15 3 3.</_></rects>
  8133. <tilted>0</tilted></feature>
  8134. <threshold>0.0235740095376968</threshold>
  8135. <left_val>-0.4638321995735168</left_val>
  8136. <right_val>0.0374437682330608</right_val></_></_></trees>
  8137. <stage_threshold>-1.9516259431838989</stage_threshold>
  8138. <parent>16</parent>
  8139. <next>-1</next></_>
  8140. <_>
  8141. <!-- stage 18 -->
  8142. <trees>
  8143. <_>
  8144. <!-- tree 0 -->
  8145. <_>
  8146. <!-- root node -->
  8147. <feature>
  8148. <rects>
  8149. <_>
  8150. 5 10 8 6 -1.</_>
  8151. <_>
  8152. 7 10 4 6 2.</_></rects>
  8153. <tilted>0</tilted></feature>
  8154. <threshold>-0.0323471315205097</threshold>
  8155. <left_node>1</left_node>
  8156. <right_val>-0.4115316867828369</right_val></_>
  8157. <_>
  8158. <!-- node 1 -->
  8159. <feature>
  8160. <rects>
  8161. <_>
  8162. 11 8 9 9 -1.</_>
  8163. <_>
  8164. 11 11 9 3 3.</_></rects>
  8165. <tilted>0</tilted></feature>
  8166. <threshold>-0.0748554319143295</threshold>
  8167. <left_val>0.5440948009490967</left_val>
  8168. <right_val>-0.2104308009147644</right_val></_></_>
  8169. <_>
  8170. <!-- tree 1 -->
  8171. <_>
  8172. <!-- root node -->
  8173. <feature>
  8174. <rects>
  8175. <_>
  8176. 7 0 6 4 -1.</_>
  8177. <_>
  8178. 9 2 2 4 3.</_></rects>
  8179. <tilted>1</tilted></feature>
  8180. <threshold>-0.0591647997498512</threshold>
  8181. <left_val>0.4694552123546600</left_val>
  8182. <right_node>1</right_node></_>
  8183. <_>
  8184. <!-- node 1 -->
  8185. <feature>
  8186. <rects>
  8187. <_>
  8188. 3 11 6 3 -1.</_>
  8189. <_>
  8190. 2 12 6 1 3.</_></rects>
  8191. <tilted>1</tilted></feature>
  8192. <threshold>-5.0734709948301315e-03</threshold>
  8193. <left_val>0.0809333473443985</left_val>
  8194. <right_val>-0.4043686985969543</right_val></_></_>
  8195. <_>
  8196. <!-- tree 2 -->
  8197. <_>
  8198. <!-- root node -->
  8199. <feature>
  8200. <rects>
  8201. <_>
  8202. 16 12 4 3 -1.</_>
  8203. <_>
  8204. 18 12 2 3 2.</_></rects>
  8205. <tilted>0</tilted></feature>
  8206. <threshold>6.6304411739110947e-03</threshold>
  8207. <left_val>-0.3194395005702972</left_val>
  8208. <right_node>1</right_node></_>
  8209. <_>
  8210. <!-- node 1 -->
  8211. <feature>
  8212. <rects>
  8213. <_>
  8214. 10 10 2 10 -1.</_>
  8215. <_>
  8216. 10 15 2 5 2.</_></rects>
  8217. <tilted>0</tilted></feature>
  8218. <threshold>0.0228042807430029</threshold>
  8219. <left_val>-0.3527761101722717</left_val>
  8220. <right_val>0.3635815978050232</right_val></_></_>
  8221. <_>
  8222. <!-- tree 3 -->
  8223. <_>
  8224. <!-- root node -->
  8225. <feature>
  8226. <rects>
  8227. <_>
  8228. 5 7 3 4 -1.</_>
  8229. <_>
  8230. 4 8 3 2 2.</_></rects>
  8231. <tilted>1</tilted></feature>
  8232. <threshold>3.4148059785366058e-03</threshold>
  8233. <left_node>1</left_node>
  8234. <right_val>-0.4213989973068237</right_val></_>
  8235. <_>
  8236. <!-- node 1 -->
  8237. <feature>
  8238. <rects>
  8239. <_>
  8240. 1 9 6 1 -1.</_>
  8241. <_>
  8242. 3 11 2 1 3.</_></rects>
  8243. <tilted>1</tilted></feature>
  8244. <threshold>-6.0696629807353020e-03</threshold>
  8245. <left_val>0.2819094061851501</left_val>
  8246. <right_val>-0.2572798132896423</right_val></_></_>
  8247. <_>
  8248. <!-- tree 4 -->
  8249. <_>
  8250. <!-- root node -->
  8251. <feature>
  8252. <rects>
  8253. <_>
  8254. 0 0 1 6 -1.</_>
  8255. <_>
  8256. 0 3 1 3 2.</_></rects>
  8257. <tilted>0</tilted></feature>
  8258. <threshold>-3.3271780703216791e-03</threshold>
  8259. <left_node>1</left_node>
  8260. <right_val>-0.3338018059730530</right_val></_>
  8261. <_>
  8262. <!-- node 1 -->
  8263. <feature>
  8264. <rects>
  8265. <_>
  8266. 8 10 10 2 -1.</_>
  8267. <_>
  8268. 8 10 5 1 2.</_>
  8269. <_>
  8270. 13 11 5 1 2.</_></rects>
  8271. <tilted>0</tilted></feature>
  8272. <threshold>0.0123812397941947</threshold>
  8273. <left_val>0.0258311200886965</left_val>
  8274. <right_val>0.5820063948631287</right_val></_></_>
  8275. <_>
  8276. <!-- tree 5 -->
  8277. <_>
  8278. <!-- root node -->
  8279. <feature>
  8280. <rects>
  8281. <_>
  8282. 5 2 5 6 -1.</_>
  8283. <_>
  8284. 5 5 5 3 2.</_></rects>
  8285. <tilted>0</tilted></feature>
  8286. <threshold>-0.0785619020462036</threshold>
  8287. <left_val>0.5708081722259521</left_val>
  8288. <right_node>1</right_node></_>
  8289. <_>
  8290. <!-- node 1 -->
  8291. <feature>
  8292. <rects>
  8293. <_>
  8294. 6 1 6 1 -1.</_>
  8295. <_>
  8296. 6 1 3 1 2.</_></rects>
  8297. <tilted>1</tilted></feature>
  8298. <threshold>-7.6863910071551800e-03</threshold>
  8299. <left_val>0.1909738034009933</left_val>
  8300. <right_val>-0.2474946975708008</right_val></_></_>
  8301. <_>
  8302. <!-- tree 6 -->
  8303. <_>
  8304. <!-- root node -->
  8305. <feature>
  8306. <rects>
  8307. <_>
  8308. 0 3 1 12 -1.</_>
  8309. <_>
  8310. 0 7 1 4 3.</_></rects>
  8311. <tilted>0</tilted></feature>
  8312. <threshold>3.9404830895364285e-03</threshold>
  8313. <left_node>1</left_node>
  8314. <right_val>-0.3529588878154755</right_val></_>
  8315. <_>
  8316. <!-- node 1 -->
  8317. <feature>
  8318. <rects>
  8319. <_>
  8320. 0 7 2 1 -1.</_>
  8321. <_>
  8322. 1 7 1 1 2.</_></rects>
  8323. <tilted>0</tilted></feature>
  8324. <threshold>-7.0624810177832842e-05</threshold>
  8325. <left_val>0.2843806147575378</left_val>
  8326. <right_val>-0.1646942049264908</right_val></_></_>
  8327. <_>
  8328. <!-- tree 7 -->
  8329. <_>
  8330. <!-- root node -->
  8331. <feature>
  8332. <rects>
  8333. <_>
  8334. 3 5 1 3 -1.</_>
  8335. <_>
  8336. 2 6 1 1 3.</_></rects>
  8337. <tilted>1</tilted></feature>
  8338. <threshold>-2.2568539716303349e-03</threshold>
  8339. <left_val>-0.4618921875953674</left_val>
  8340. <right_node>1</right_node></_>
  8341. <_>
  8342. <!-- node 1 -->
  8343. <feature>
  8344. <rects>
  8345. <_>
  8346. 11 12 2 3 -1.</_>
  8347. <_>
  8348. 10 13 2 1 3.</_></rects>
  8349. <tilted>1</tilted></feature>
  8350. <threshold>-3.5595949739217758e-03</threshold>
  8351. <left_val>0.2452594041824341</left_val>
  8352. <right_val>-0.1898497939109802</right_val></_></_>
  8353. <_>
  8354. <!-- tree 8 -->
  8355. <_>
  8356. <!-- root node -->
  8357. <feature>
  8358. <rects>
  8359. <_>
  8360. 10 12 3 3 -1.</_>
  8361. <_>
  8362. 11 12 1 3 3.</_></rects>
  8363. <tilted>0</tilted></feature>
  8364. <threshold>-3.0113100074231625e-03</threshold>
  8365. <left_val>0.3059439063072205</left_val>
  8366. <right_node>1</right_node></_>
  8367. <_>
  8368. <!-- node 1 -->
  8369. <feature>
  8370. <rects>
  8371. <_>
  8372. 9 11 3 3 -1.</_>
  8373. <_>
  8374. 10 12 1 1 9.</_></rects>
  8375. <tilted>0</tilted></feature>
  8376. <threshold>-6.2748990021646023e-03</threshold>
  8377. <left_val>0.1471614986658096</left_val>
  8378. <right_val>-0.3326522111892700</right_val></_></_>
  8379. <_>
  8380. <!-- tree 9 -->
  8381. <_>
  8382. <!-- root node -->
  8383. <feature>
  8384. <rects>
  8385. <_>
  8386. 6 17 4 2 -1.</_>
  8387. <_>
  8388. 7 17 2 2 2.</_></rects>
  8389. <tilted>0</tilted></feature>
  8390. <threshold>2.5835279375314713e-03</threshold>
  8391. <left_node>1</left_node>
  8392. <right_val>-0.7485389113426208</right_val></_>
  8393. <_>
  8394. <!-- node 1 -->
  8395. <feature>
  8396. <rects>
  8397. <_>
  8398. 12 18 6 2 -1.</_>
  8399. <_>
  8400. 15 18 3 2 2.</_></rects>
  8401. <tilted>0</tilted></feature>
  8402. <threshold>3.2576550729572773e-03</threshold>
  8403. <left_val>-0.1494961977005005</left_val>
  8404. <right_val>0.2629367113113403</right_val></_></_>
  8405. <_>
  8406. <!-- tree 10 -->
  8407. <_>
  8408. <!-- root node -->
  8409. <feature>
  8410. <rects>
  8411. <_>
  8412. 3 17 2 1 -1.</_>
  8413. <_>
  8414. 3 17 1 1 2.</_></rects>
  8415. <tilted>1</tilted></feature>
  8416. <threshold>-2.6957978843711317e-04</threshold>
  8417. <left_node>1</left_node>
  8418. <right_val>-0.2946836054325104</right_val></_>
  8419. <_>
  8420. <!-- node 1 -->
  8421. <feature>
  8422. <rects>
  8423. <_>
  8424. 1 15 4 1 -1.</_>
  8425. <_>
  8426. 2 16 2 1 2.</_></rects>
  8427. <tilted>1</tilted></feature>
  8428. <threshold>-4.4593680649995804e-03</threshold>
  8429. <left_val>-0.4590528905391693</left_val>
  8430. <right_val>0.2223538011312485</right_val></_></_>
  8431. <_>
  8432. <!-- tree 11 -->
  8433. <_>
  8434. <!-- root node -->
  8435. <feature>
  8436. <rects>
  8437. <_>
  8438. 18 0 2 2 -1.</_>
  8439. <_>
  8440. 18 1 2 1 2.</_></rects>
  8441. <tilted>0</tilted></feature>
  8442. <threshold>2.2841650061309338e-03</threshold>
  8443. <left_node>1</left_node>
  8444. <right_val>-0.6381593942642212</right_val></_>
  8445. <_>
  8446. <!-- node 1 -->
  8447. <feature>
  8448. <rects>
  8449. <_>
  8450. 19 0 1 3 -1.</_>
  8451. <_>
  8452. 19 1 1 1 3.</_></rects>
  8453. <tilted>0</tilted></feature>
  8454. <threshold>-6.7595718428492546e-04</threshold>
  8455. <left_val>-0.3175694048404694</left_val>
  8456. <right_val>0.1490307003259659</right_val></_></_>
  8457. <_>
  8458. <!-- tree 12 -->
  8459. <_>
  8460. <!-- root node -->
  8461. <feature>
  8462. <rects>
  8463. <_>
  8464. 16 11 3 2 -1.</_>
  8465. <_>
  8466. 16 11 3 1 2.</_></rects>
  8467. <tilted>1</tilted></feature>
  8468. <threshold>6.1428439803421497e-03</threshold>
  8469. <left_node>1</left_node>
  8470. <right_val>0.2418702989816666</right_val></_>
  8471. <_>
  8472. <!-- node 1 -->
  8473. <feature>
  8474. <rects>
  8475. <_>
  8476. 16 12 2 3 -1.</_>
  8477. <_>
  8478. 15 13 2 1 3.</_></rects>
  8479. <tilted>1</tilted></feature>
  8480. <threshold>2.7392068877816200e-03</threshold>
  8481. <left_val>-0.3148753941059113</left_val>
  8482. <right_val>0.2358912974596024</right_val></_></_>
  8483. <_>
  8484. <!-- tree 13 -->
  8485. <_>
  8486. <!-- root node -->
  8487. <feature>
  8488. <rects>
  8489. <_>
  8490. 12 0 8 1 -1.</_>
  8491. <_>
  8492. 16 0 4 1 2.</_></rects>
  8493. <tilted>0</tilted></feature>
  8494. <threshold>-2.0209311041980982e-03</threshold>
  8495. <left_val>0.2538956105709076</left_val>
  8496. <right_node>1</right_node></_>
  8497. <_>
  8498. <!-- node 1 -->
  8499. <feature>
  8500. <rects>
  8501. <_>
  8502. 2 1 9 6 -1.</_>
  8503. <_>
  8504. 2 4 9 3 2.</_></rects>
  8505. <tilted>0</tilted></feature>
  8506. <threshold>0.0268921405076981</threshold>
  8507. <left_val>-0.3439103960990906</left_val>
  8508. <right_val>0.2301076054573059</right_val></_></_>
  8509. <_>
  8510. <!-- tree 14 -->
  8511. <_>
  8512. <!-- root node -->
  8513. <feature>
  8514. <rects>
  8515. <_>
  8516. 17 1 3 2 -1.</_>
  8517. <_>
  8518. 17 1 3 1 2.</_></rects>
  8519. <tilted>1</tilted></feature>
  8520. <threshold>0.0146710602566600</threshold>
  8521. <left_node>1</left_node>
  8522. <right_val>0.5951753854751587</right_val></_>
  8523. <_>
  8524. <!-- node 1 -->
  8525. <feature>
  8526. <rects>
  8527. <_>
  8528. 7 5 6 4 -1.</_>
  8529. <_>
  8530. 7 6 6 2 2.</_></rects>
  8531. <tilted>0</tilted></feature>
  8532. <threshold>-0.0124441199004650</threshold>
  8533. <left_val>0.3733592927455902</left_val>
  8534. <right_val>-0.1454063951969147</right_val></_></_>
  8535. <_>
  8536. <!-- tree 15 -->
  8537. <_>
  8538. <!-- root node -->
  8539. <feature>
  8540. <rects>
  8541. <_>
  8542. 4 6 6 2 -1.</_>
  8543. <_>
  8544. 7 6 3 2 2.</_></rects>
  8545. <tilted>0</tilted></feature>
  8546. <threshold>2.0527220331132412e-03</threshold>
  8547. <left_val>-0.2113502025604248</left_val>
  8548. <right_node>1</right_node></_>
  8549. <_>
  8550. <!-- node 1 -->
  8551. <feature>
  8552. <rects>
  8553. <_>
  8554. 11 4 6 6 -1.</_>
  8555. <_>
  8556. 13 4 2 6 3.</_></rects>
  8557. <tilted>0</tilted></feature>
  8558. <threshold>-0.0170889906585217</threshold>
  8559. <left_val>-0.7251623272895813</left_val>
  8560. <right_val>0.2335873991250992</right_val></_></_>
  8561. <_>
  8562. <!-- tree 16 -->
  8563. <_>
  8564. <!-- root node -->
  8565. <feature>
  8566. <rects>
  8567. <_>
  8568. 5 7 9 3 -1.</_>
  8569. <_>
  8570. 5 8 9 1 3.</_></rects>
  8571. <tilted>0</tilted></feature>
  8572. <threshold>-9.8585523664951324e-03</threshold>
  8573. <left_val>0.4539042115211487</left_val>
  8574. <right_node>1</right_node></_>
  8575. <_>
  8576. <!-- node 1 -->
  8577. <feature>
  8578. <rects>
  8579. <_>
  8580. 5 8 9 3 -1.</_>
  8581. <_>
  8582. 5 9 9 1 3.</_></rects>
  8583. <tilted>0</tilted></feature>
  8584. <threshold>-0.0105411903932691</threshold>
  8585. <left_val>0.3550005853176117</left_val>
  8586. <right_val>-0.1711850017309189</right_val></_></_>
  8587. <_>
  8588. <!-- tree 17 -->
  8589. <_>
  8590. <!-- root node -->
  8591. <feature>
  8592. <rects>
  8593. <_>
  8594. 1 0 4 3 -1.</_>
  8595. <_>
  8596. 2 0 2 3 2.</_></rects>
  8597. <tilted>0</tilted></feature>
  8598. <threshold>4.0034228004515171e-03</threshold>
  8599. <left_node>1</left_node>
  8600. <right_val>-0.7043396234512329</right_val></_>
  8601. <_>
  8602. <!-- node 1 -->
  8603. <feature>
  8604. <rects>
  8605. <_>
  8606. 9 9 5 4 -1.</_>
  8607. <_>
  8608. 9 10 5 2 2.</_></rects>
  8609. <tilted>0</tilted></feature>
  8610. <threshold>-0.0118891401216388</threshold>
  8611. <left_val>0.4043655991554260</left_val>
  8612. <right_val>-0.0462636202573776</right_val></_></_>
  8613. <_>
  8614. <!-- tree 18 -->
  8615. <_>
  8616. <!-- root node -->
  8617. <feature>
  8618. <rects>
  8619. <_>
  8620. 1 0 6 7 -1.</_>
  8621. <_>
  8622. 3 0 2 7 3.</_></rects>
  8623. <tilted>0</tilted></feature>
  8624. <threshold>-0.0206857006996870</threshold>
  8625. <left_val>-0.6434760093688965</left_val>
  8626. <right_node>1</right_node></_>
  8627. <_>
  8628. <!-- node 1 -->
  8629. <feature>
  8630. <rects>
  8631. <_>
  8632. 16 9 3 2 -1.</_>
  8633. <_>
  8634. 17 10 1 2 3.</_></rects>
  8635. <tilted>1</tilted></feature>
  8636. <threshold>-7.9243928194046021e-03</threshold>
  8637. <left_val>-0.5363292098045349</left_val>
  8638. <right_val>0.1100298985838890</right_val></_></_>
  8639. <_>
  8640. <!-- tree 19 -->
  8641. <_>
  8642. <!-- root node -->
  8643. <feature>
  8644. <rects>
  8645. <_>
  8646. 14 12 2 2 -1.</_>
  8647. <_>
  8648. 14 12 1 1 2.</_>
  8649. <_>
  8650. 15 13 1 1 2.</_></rects>
  8651. <tilted>0</tilted></feature>
  8652. <threshold>1.2431150535121560e-03</threshold>
  8653. <left_node>1</left_node>
  8654. <right_val>0.4122002124786377</right_val></_>
  8655. <_>
  8656. <!-- node 1 -->
  8657. <feature>
  8658. <rects>
  8659. <_>
  8660. 0 0 14 1 -1.</_>
  8661. <_>
  8662. 7 0 7 1 2.</_></rects>
  8663. <tilted>0</tilted></feature>
  8664. <threshold>-4.2312019504606724e-03</threshold>
  8665. <left_val>0.0798876583576202</left_val>
  8666. <right_val>-0.3092674016952515</right_val></_></_>
  8667. <_>
  8668. <!-- tree 20 -->
  8669. <_>
  8670. <!-- root node -->
  8671. <feature>
  8672. <rects>
  8673. <_>
  8674. 15 11 2 2 -1.</_>
  8675. <_>
  8676. 15 11 1 2 2.</_></rects>
  8677. <tilted>1</tilted></feature>
  8678. <threshold>9.8197339102625847e-03</threshold>
  8679. <left_node>1</left_node>
  8680. <right_val>-0.6097676157951355</right_val></_>
  8681. <_>
  8682. <!-- node 1 -->
  8683. <feature>
  8684. <rects>
  8685. <_>
  8686. 3 14 12 4 -1.</_>
  8687. <_>
  8688. 3 14 6 2 2.</_>
  8689. <_>
  8690. 9 16 6 2 2.</_></rects>
  8691. <tilted>0</tilted></feature>
  8692. <threshold>0.0454554110765457</threshold>
  8693. <left_val>0.1062114015221596</left_val>
  8694. <right_val>-0.6468737125396729</right_val></_></_>
  8695. <_>
  8696. <!-- tree 21 -->
  8697. <_>
  8698. <!-- root node -->
  8699. <feature>
  8700. <rects>
  8701. <_>
  8702. 5 2 1 3 -1.</_>
  8703. <_>
  8704. 4 3 1 1 3.</_></rects>
  8705. <tilted>1</tilted></feature>
  8706. <threshold>2.6892758905887604e-03</threshold>
  8707. <left_node>1</left_node>
  8708. <right_val>-0.4912298917770386</right_val></_>
  8709. <_>
  8710. <!-- node 1 -->
  8711. <feature>
  8712. <rects>
  8713. <_>
  8714. 8 12 3 2 -1.</_>
  8715. <_>
  8716. 9 13 1 2 3.</_></rects>
  8717. <tilted>1</tilted></feature>
  8718. <threshold>-1.5172710409387946e-03</threshold>
  8719. <left_val>0.1757874935865402</left_val>
  8720. <right_val>-0.2681894004344940</right_val></_></_>
  8721. <_>
  8722. <!-- tree 22 -->
  8723. <_>
  8724. <!-- root node -->
  8725. <feature>
  8726. <rects>
  8727. <_>
  8728. 14 11 2 2 -1.</_>
  8729. <_>
  8730. 14 11 1 1 2.</_>
  8731. <_>
  8732. 15 12 1 1 2.</_></rects>
  8733. <tilted>0</tilted></feature>
  8734. <threshold>6.2014168361201882e-04</threshold>
  8735. <left_node>1</left_node>
  8736. <right_val>0.2550072968006134</right_val></_>
  8737. <_>
  8738. <!-- node 1 -->
  8739. <feature>
  8740. <rects>
  8741. <_>
  8742. 13 10 7 2 -1.</_>
  8743. <_>
  8744. 13 11 7 1 2.</_></rects>
  8745. <tilted>0</tilted></feature>
  8746. <threshold>-2.0233519899193197e-04</threshold>
  8747. <left_val>7.2745857760310173e-03</left_val>
  8748. <right_val>-0.5081527233123779</right_val></_></_>
  8749. <_>
  8750. <!-- tree 23 -->
  8751. <_>
  8752. <!-- root node -->
  8753. <feature>
  8754. <rects>
  8755. <_>
  8756. 7 13 1 2 -1.</_>
  8757. <_>
  8758. 7 13 1 1 2.</_></rects>
  8759. <tilted>1</tilted></feature>
  8760. <threshold>3.1760020647197962e-03</threshold>
  8761. <left_node>1</left_node>
  8762. <right_val>0.4384926855564117</right_val></_>
  8763. <_>
  8764. <!-- node 1 -->
  8765. <feature>
  8766. <rects>
  8767. <_>
  8768. 5 12 4 3 -1.</_>
  8769. <_>
  8770. 6 12 2 3 2.</_></rects>
  8771. <tilted>0</tilted></feature>
  8772. <threshold>-1.2668699491769075e-03</threshold>
  8773. <left_val>0.1634940057992935</left_val>
  8774. <right_val>-0.2912816107273102</right_val></_></_>
  8775. <_>
  8776. <!-- tree 24 -->
  8777. <_>
  8778. <!-- root node -->
  8779. <feature>
  8780. <rects>
  8781. <_>
  8782. 8 2 2 5 -1.</_>
  8783. <_>
  8784. 9 2 1 5 2.</_></rects>
  8785. <tilted>0</tilted></feature>
  8786. <threshold>5.1056100055575371e-03</threshold>
  8787. <left_node>1</left_node>
  8788. <right_val>-0.7500135898590088</right_val></_>
  8789. <_>
  8790. <!-- node 1 -->
  8791. <feature>
  8792. <rects>
  8793. <_>
  8794. 1 17 4 2 -1.</_>
  8795. <_>
  8796. 3 17 2 2 2.</_></rects>
  8797. <tilted>0</tilted></feature>
  8798. <threshold>-1.5026510227471590e-03</threshold>
  8799. <left_val>0.2719883024692535</left_val>
  8800. <right_val>-0.0994867980480194</right_val></_></_>
  8801. <_>
  8802. <!-- tree 25 -->
  8803. <_>
  8804. <!-- root node -->
  8805. <feature>
  8806. <rects>
  8807. <_>
  8808. 12 17 4 3 -1.</_>
  8809. <_>
  8810. 13 17 2 3 2.</_></rects>
  8811. <tilted>0</tilted></feature>
  8812. <threshold>-3.6238620523363352e-03</threshold>
  8813. <left_val>-0.6039624810218811</left_val>
  8814. <right_node>1</right_node></_>
  8815. <_>
  8816. <!-- node 1 -->
  8817. <feature>
  8818. <rects>
  8819. <_>
  8820. 15 16 5 3 -1.</_>
  8821. <_>
  8822. 15 17 5 1 3.</_></rects>
  8823. <tilted>0</tilted></feature>
  8824. <threshold>7.6577658765017986e-03</threshold>
  8825. <left_val>0.1093837991356850</left_val>
  8826. <right_val>-0.5300763845443726</right_val></_></_>
  8827. <_>
  8828. <!-- tree 26 -->
  8829. <_>
  8830. <!-- root node -->
  8831. <feature>
  8832. <rects>
  8833. <_>
  8834. 15 16 4 3 -1.</_>
  8835. <_>
  8836. 15 17 4 1 3.</_></rects>
  8837. <tilted>0</tilted></feature>
  8838. <threshold>-3.1830249354243279e-03</threshold>
  8839. <left_val>-0.4772489070892334</left_val>
  8840. <right_node>1</right_node></_>
  8841. <_>
  8842. <!-- node 1 -->
  8843. <feature>
  8844. <rects>
  8845. <_>
  8846. 0 17 16 3 -1.</_>
  8847. <_>
  8848. 4 17 8 3 2.</_></rects>
  8849. <tilted>0</tilted></feature>
  8850. <threshold>0.0109313298016787</threshold>
  8851. <left_val>-0.0430658198893070</left_val>
  8852. <right_val>0.3894585967063904</right_val></_></_>
  8853. <_>
  8854. <!-- tree 27 -->
  8855. <_>
  8856. <!-- root node -->
  8857. <feature>
  8858. <rects>
  8859. <_>
  8860. 0 14 2 2 -1.</_>
  8861. <_>
  8862. 0 14 1 1 2.</_>
  8863. <_>
  8864. 1 15 1 1 2.</_></rects>
  8865. <tilted>0</tilted></feature>
  8866. <threshold>-1.0047679534181952e-03</threshold>
  8867. <left_val>0.4155359864234924</left_val>
  8868. <right_node>1</right_node></_>
  8869. <_>
  8870. <!-- node 1 -->
  8871. <feature>
  8872. <rects>
  8873. <_>
  8874. 7 2 6 6 -1.</_>
  8875. <_>
  8876. 7 4 6 2 3.</_></rects>
  8877. <tilted>0</tilted></feature>
  8878. <threshold>-0.0466604307293892</threshold>
  8879. <left_val>0.3015987873077393</left_val>
  8880. <right_val>-0.1618438065052032</right_val></_></_>
  8881. <_>
  8882. <!-- tree 28 -->
  8883. <_>
  8884. <!-- root node -->
  8885. <feature>
  8886. <rects>
  8887. <_>
  8888. 3 5 1 3 -1.</_>
  8889. <_>
  8890. 2 6 1 1 3.</_></rects>
  8891. <tilted>1</tilted></feature>
  8892. <threshold>3.2002381049096584e-03</threshold>
  8893. <left_node>1</left_node>
  8894. <right_val>-0.5462177991867065</right_val></_>
  8895. <_>
  8896. <!-- node 1 -->
  8897. <feature>
  8898. <rects>
  8899. <_>
  8900. 2 7 2 2 -1.</_>
  8901. <_>
  8902. 2 7 2 1 2.</_></rects>
  8903. <tilted>1</tilted></feature>
  8904. <threshold>-1.7367519903928041e-03</threshold>
  8905. <left_val>-0.2198777943849564</left_val>
  8906. <right_val>0.1960642039775848</right_val></_></_></trees>
  8907. <stage_threshold>-1.7628519535064697</stage_threshold>
  8908. <parent>17</parent>
  8909. <next>-1</next></_>
  8910. <_>
  8911. <!-- stage 19 -->
  8912. <trees>
  8913. <_>
  8914. <!-- tree 0 -->
  8915. <_>
  8916. <!-- root node -->
  8917. <feature>
  8918. <rects>
  8919. <_>
  8920. 6 11 5 3 -1.</_>
  8921. <_>
  8922. 5 12 5 1 3.</_></rects>
  8923. <tilted>1</tilted></feature>
  8924. <threshold>0.0171605199575424</threshold>
  8925. <left_val>-0.3227300941944122</left_val>
  8926. <right_node>1</right_node></_>
  8927. <_>
  8928. <!-- node 1 -->
  8929. <feature>
  8930. <rects>
  8931. <_>
  8932. 16 14 4 6 -1.</_>
  8933. <_>
  8934. 16 17 4 3 2.</_></rects>
  8935. <tilted>0</tilted></feature>
  8936. <threshold>0.0145035600289702</threshold>
  8937. <left_val>-0.3943862020969391</left_val>
  8938. <right_val>0.5792297720909119</right_val></_></_>
  8939. <_>
  8940. <!-- tree 1 -->
  8941. <_>
  8942. <!-- root node -->
  8943. <feature>
  8944. <rects>
  8945. <_>
  8946. 6 13 6 7 -1.</_>
  8947. <_>
  8948. 8 13 2 7 3.</_></rects>
  8949. <tilted>0</tilted></feature>
  8950. <threshold>-9.0323518961668015e-03</threshold>
  8951. <left_node>1</left_node>
  8952. <right_val>-0.4153687059879303</right_val></_>
  8953. <_>
  8954. <!-- node 1 -->
  8955. <feature>
  8956. <rects>
  8957. <_>
  8958. 0 1 12 11 -1.</_>
  8959. <_>
  8960. 3 1 6 11 2.</_></rects>
  8961. <tilted>0</tilted></feature>
  8962. <threshold>-6.9836131297051907e-03</threshold>
  8963. <left_val>0.3551585972309113</left_val>
  8964. <right_val>-0.3817715048789978</right_val></_></_>
  8965. <_>
  8966. <!-- tree 2 -->
  8967. <_>
  8968. <!-- root node -->
  8969. <feature>
  8970. <rects>
  8971. <_>
  8972. 6 10 7 3 -1.</_>
  8973. <_>
  8974. 6 11 7 1 3.</_></rects>
  8975. <tilted>0</tilted></feature>
  8976. <threshold>-0.0192209091037512</threshold>
  8977. <left_val>0.4531590044498444</left_val>
  8978. <right_node>1</right_node></_>
  8979. <_>
  8980. <!-- node 1 -->
  8981. <feature>
  8982. <rects>
  8983. <_>
  8984. 8 0 9 4 -1.</_>
  8985. <_>
  8986. 8 2 9 2 2.</_></rects>
  8987. <tilted>0</tilted></feature>
  8988. <threshold>-0.0400871597230434</threshold>
  8989. <left_val>0.1722837984561920</left_val>
  8990. <right_val>-0.3111056089401245</right_val></_></_>
  8991. <_>
  8992. <!-- tree 3 -->
  8993. <_>
  8994. <!-- root node -->
  8995. <feature>
  8996. <rects>
  8997. <_>
  8998. 10 14 10 2 -1.</_>
  8999. <_>
  9000. 10 15 10 1 2.</_></rects>
  9001. <tilted>0</tilted></feature>
  9002. <threshold>5.6549701839685440e-03</threshold>
  9003. <left_val>-0.4046160876750946</left_val>
  9004. <right_node>1</right_node></_>
  9005. <_>
  9006. <!-- node 1 -->
  9007. <feature>
  9008. <rects>
  9009. <_>
  9010. 0 0 1 18 -1.</_>
  9011. <_>
  9012. 0 6 1 6 3.</_></rects>
  9013. <tilted>0</tilted></feature>
  9014. <threshold>-0.0116112697869539</threshold>
  9015. <left_val>0.2903423905372620</left_val>
  9016. <right_val>-0.2207850962877274</right_val></_></_>
  9017. <_>
  9018. <!-- tree 4 -->
  9019. <_>
  9020. <!-- root node -->
  9021. <feature>
  9022. <rects>
  9023. <_>
  9024. 4 13 2 2 -1.</_>
  9025. <_>
  9026. 4 13 1 1 2.</_>
  9027. <_>
  9028. 5 14 1 1 2.</_></rects>
  9029. <tilted>0</tilted></feature>
  9030. <threshold>-1.0576159693300724e-03</threshold>
  9031. <left_val>0.3585166931152344</left_val>
  9032. <right_node>1</right_node></_>
  9033. <_>
  9034. <!-- node 1 -->
  9035. <feature>
  9036. <rects>
  9037. <_>
  9038. 8 11 3 6 -1.</_>
  9039. <_>
  9040. 9 12 1 6 3.</_></rects>
  9041. <tilted>1</tilted></feature>
  9042. <threshold>-1.3360800221562386e-03</threshold>
  9043. <left_val>0.0159689001739025</left_val>
  9044. <right_val>-0.4199010133743286</right_val></_></_>
  9045. <_>
  9046. <!-- tree 5 -->
  9047. <_>
  9048. <!-- root node -->
  9049. <feature>
  9050. <rects>
  9051. <_>
  9052. 6 7 2 3 -1.</_>
  9053. <_>
  9054. 5 8 2 1 3.</_></rects>
  9055. <tilted>1</tilted></feature>
  9056. <threshold>5.2302791737020016e-03</threshold>
  9057. <left_node>1</left_node>
  9058. <right_val>-0.4966328144073486</right_val></_>
  9059. <_>
  9060. <!-- node 1 -->
  9061. <feature>
  9062. <rects>
  9063. <_>
  9064. 4 8 3 3 -1.</_>
  9065. <_>
  9066. 5 8 1 3 3.</_></rects>
  9067. <tilted>0</tilted></feature>
  9068. <threshold>-2.7848479803651571e-03</threshold>
  9069. <left_val>-0.5296021103858948</left_val>
  9070. <right_val>0.1553544998168945</right_val></_></_>
  9071. <_>
  9072. <!-- tree 6 -->
  9073. <_>
  9074. <!-- root node -->
  9075. <feature>
  9076. <rects>
  9077. <_>
  9078. 1 4 14 1 -1.</_>
  9079. <_>
  9080. 1 4 7 1 2.</_></rects>
  9081. <tilted>1</tilted></feature>
  9082. <threshold>-0.0256541296839714</threshold>
  9083. <left_val>-0.5930917859077454</left_val>
  9084. <right_node>1</right_node></_>
  9085. <_>
  9086. <!-- node 1 -->
  9087. <feature>
  9088. <rects>
  9089. <_>
  9090. 12 13 8 3 -1.</_>
  9091. <_>
  9092. 14 13 4 3 2.</_></rects>
  9093. <tilted>0</tilted></feature>
  9094. <threshold>-6.8942131474614143e-03</threshold>
  9095. <left_val>0.2431810945272446</left_val>
  9096. <right_val>-0.1823194026947021</right_val></_></_>
  9097. <_>
  9098. <!-- tree 7 -->
  9099. <_>
  9100. <!-- root node -->
  9101. <feature>
  9102. <rects>
  9103. <_>
  9104. 4 17 2 1 -1.</_>
  9105. <_>
  9106. 4 17 1 1 2.</_></rects>
  9107. <tilted>1</tilted></feature>
  9108. <threshold>-6.9622750743292272e-05</threshold>
  9109. <left_node>1</left_node>
  9110. <right_val>-0.3271628916263580</right_val></_>
  9111. <_>
  9112. <!-- node 1 -->
  9113. <feature>
  9114. <rects>
  9115. <_>
  9116. 6 16 2 2 -1.</_>
  9117. <_>
  9118. 6 16 1 2 2.</_></rects>
  9119. <tilted>1</tilted></feature>
  9120. <threshold>-6.4154611900448799e-03</threshold>
  9121. <left_val>-0.5082166790962219</left_val>
  9122. <right_val>0.1954334974288940</right_val></_></_>
  9123. <_>
  9124. <!-- tree 8 -->
  9125. <_>
  9126. <!-- root node -->
  9127. <feature>
  9128. <rects>
  9129. <_>
  9130. 3 17 4 2 -1.</_>
  9131. <_>
  9132. 4 17 2 2 2.</_></rects>
  9133. <tilted>0</tilted></feature>
  9134. <threshold>-6.7164386564400047e-05</threshold>
  9135. <left_val>0.1860219985246658</left_val>
  9136. <right_node>1</right_node></_>
  9137. <_>
  9138. <!-- node 1 -->
  9139. <feature>
  9140. <rects>
  9141. <_>
  9142. 0 7 20 2 -1.</_>
  9143. <_>
  9144. 5 7 10 2 2.</_></rects>
  9145. <tilted>0</tilted></feature>
  9146. <threshold>0.0224166903644800</threshold>
  9147. <left_val>-0.3928199112415314</left_val>
  9148. <right_val>0.1327912956476212</right_val></_></_>
  9149. <_>
  9150. <!-- tree 9 -->
  9151. <_>
  9152. <!-- root node -->
  9153. <feature>
  9154. <rects>
  9155. <_>
  9156. 15 9 2 2 -1.</_>
  9157. <_>
  9158. 15 9 1 2 2.</_></rects>
  9159. <tilted>1</tilted></feature>
  9160. <threshold>8.4287580102682114e-03</threshold>
  9161. <left_node>1</left_node>
  9162. <right_val>-0.5544756054878235</right_val></_>
  9163. <_>
  9164. <!-- node 1 -->
  9165. <feature>
  9166. <rects>
  9167. <_>
  9168. 3 12 2 2 -1.</_>
  9169. <_>
  9170. 3 12 1 1 2.</_>
  9171. <_>
  9172. 4 13 1 1 2.</_></rects>
  9173. <tilted>0</tilted></feature>
  9174. <threshold>-8.7357551092281938e-04</threshold>
  9175. <left_val>0.4715873003005981</left_val>
  9176. <right_val>-0.0384924784302711</right_val></_></_>
  9177. <_>
  9178. <!-- tree 10 -->
  9179. <_>
  9180. <!-- root node -->
  9181. <feature>
  9182. <rects>
  9183. <_>
  9184. 0 5 2 1 -1.</_>
  9185. <_>
  9186. 1 5 1 1 2.</_></rects>
  9187. <tilted>0</tilted></feature>
  9188. <threshold>-4.7496971092186868e-05</threshold>
  9189. <left_node>1</left_node>
  9190. <right_val>-0.2519702911376953</right_val></_>
  9191. <_>
  9192. <!-- node 1 -->
  9193. <feature>
  9194. <rects>
  9195. <_>
  9196. 17 0 3 2 -1.</_>
  9197. <_>
  9198. 18 1 1 2 3.</_></rects>
  9199. <tilted>1</tilted></feature>
  9200. <threshold>4.5816078782081604e-03</threshold>
  9201. <left_val>0.2025039941072464</left_val>
  9202. <right_val>-0.6163808107376099</right_val></_></_>
  9203. <_>
  9204. <!-- tree 11 -->
  9205. <_>
  9206. <!-- root node -->
  9207. <feature>
  9208. <rects>
  9209. <_>
  9210. 2 8 3 9 -1.</_>
  9211. <_>
  9212. 3 11 1 3 9.</_></rects>
  9213. <tilted>0</tilted></feature>
  9214. <threshold>-0.0111751500517130</threshold>
  9215. <left_node>1</left_node>
  9216. <right_val>-0.2777119874954224</right_val></_>
  9217. <_>
  9218. <!-- node 1 -->
  9219. <feature>
  9220. <rects>
  9221. <_>
  9222. 15 7 4 2 -1.</_>
  9223. <_>
  9224. 16 8 2 2 2.</_></rects>
  9225. <tilted>1</tilted></feature>
  9226. <threshold>-7.4238609522581100e-03</threshold>
  9227. <left_val>-0.5010343790054321</left_val>
  9228. <right_val>0.1931852996349335</right_val></_></_>
  9229. <_>
  9230. <!-- tree 12 -->
  9231. <_>
  9232. <!-- root node -->
  9233. <feature>
  9234. <rects>
  9235. <_>
  9236. 4 16 3 3 -1.</_>
  9237. <_>
  9238. 5 16 1 3 3.</_></rects>
  9239. <tilted>0</tilted></feature>
  9240. <threshold>-3.0201480258256197e-03</threshold>
  9241. <left_val>-0.6590424776077271</left_val>
  9242. <right_node>1</right_node></_>
  9243. <_>
  9244. <!-- node 1 -->
  9245. <feature>
  9246. <rects>
  9247. <_>
  9248. 8 14 6 1 -1.</_>
  9249. <_>
  9250. 10 14 2 1 3.</_></rects>
  9251. <tilted>0</tilted></feature>
  9252. <threshold>-3.0343679245561361e-03</threshold>
  9253. <left_val>0.3196248114109039</left_val>
  9254. <right_val>-0.1051291003823280</right_val></_></_>
  9255. <_>
  9256. <!-- tree 13 -->
  9257. <_>
  9258. <!-- root node -->
  9259. <feature>
  9260. <rects>
  9261. <_>
  9262. 14 0 6 6 -1.</_>
  9263. <_>
  9264. 14 0 3 3 2.</_>
  9265. <_>
  9266. 17 3 3 3 2.</_></rects>
  9267. <tilted>0</tilted></feature>
  9268. <threshold>-0.0109712900593877</threshold>
  9269. <left_val>0.3270700871944427</left_val>
  9270. <right_node>1</right_node></_>
  9271. <_>
  9272. <!-- node 1 -->
  9273. <feature>
  9274. <rects>
  9275. <_>
  9276. 17 2 2 1 -1.</_>
  9277. <_>
  9278. 17 2 1 1 2.</_></rects>
  9279. <tilted>1</tilted></feature>
  9280. <threshold>1.2000739661743864e-04</threshold>
  9281. <left_val>-0.4167926907539368</left_val>
  9282. <right_val>0.1164520010352135</right_val></_></_>
  9283. <_>
  9284. <!-- tree 14 -->
  9285. <_>
  9286. <!-- root node -->
  9287. <feature>
  9288. <rects>
  9289. <_>
  9290. 0 19 20 1 -1.</_>
  9291. <_>
  9292. 10 19 10 1 2.</_></rects>
  9293. <tilted>0</tilted></feature>
  9294. <threshold>2.1552699618041515e-03</threshold>
  9295. <left_node>1</left_node>
  9296. <right_val>0.1538939028978348</right_val></_>
  9297. <_>
  9298. <!-- node 1 -->
  9299. <feature>
  9300. <rects>
  9301. <_>
  9302. 0 19 6 1 -1.</_>
  9303. <_>
  9304. 3 19 3 1 2.</_></rects>
  9305. <tilted>0</tilted></feature>
  9306. <threshold>1.5970800304785371e-03</threshold>
  9307. <left_val>-0.4297927021980286</left_val>
  9308. <right_val>0.1919295042753220</right_val></_></_>
  9309. <_>
  9310. <!-- tree 15 -->
  9311. <_>
  9312. <!-- root node -->
  9313. <feature>
  9314. <rects>
  9315. <_>
  9316. 9 17 4 3 -1.</_>
  9317. <_>
  9318. 10 17 2 3 2.</_></rects>
  9319. <tilted>0</tilted></feature>
  9320. <threshold>-4.3590939603745937e-03</threshold>
  9321. <left_val>-0.8661373853683472</left_val>
  9322. <right_node>1</right_node></_>
  9323. <_>
  9324. <!-- node 1 -->
  9325. <feature>
  9326. <rects>
  9327. <_>
  9328. 4 11 3 3 -1.</_>
  9329. <_>
  9330. 5 12 1 1 9.</_></rects>
  9331. <tilted>0</tilted></feature>
  9332. <threshold>-6.5752048976719379e-03</threshold>
  9333. <left_val>0.3529854118824005</left_val>
  9334. <right_val>-0.0726247206330299</right_val></_></_>
  9335. <_>
  9336. <!-- tree 16 -->
  9337. <_>
  9338. <!-- root node -->
  9339. <feature>
  9340. <rects>
  9341. <_>
  9342. 17 7 3 3 -1.</_>
  9343. <_>
  9344. 18 8 1 3 3.</_></rects>
  9345. <tilted>1</tilted></feature>
  9346. <threshold>3.5486191045492887e-03</threshold>
  9347. <left_node>1</left_node>
  9348. <right_val>-0.3614104092121124</right_val></_>
  9349. <_>
  9350. <!-- node 1 -->
  9351. <feature>
  9352. <rects>
  9353. <_>
  9354. 19 1 1 4 -1.</_>
  9355. <_>
  9356. 18 2 1 2 2.</_></rects>
  9357. <tilted>1</tilted></feature>
  9358. <threshold>1.7437560018151999e-03</threshold>
  9359. <left_val>-0.0402509197592735</left_val>
  9360. <right_val>0.4111959040164948</right_val></_></_>
  9361. <_>
  9362. <!-- tree 17 -->
  9363. <_>
  9364. <!-- root node -->
  9365. <feature>
  9366. <rects>
  9367. <_>
  9368. 6 8 2 1 -1.</_>
  9369. <_>
  9370. 7 8 1 1 2.</_></rects>
  9371. <tilted>0</tilted></feature>
  9372. <threshold>6.5892767452169210e-05</threshold>
  9373. <left_node>1</left_node>
  9374. <right_val>0.1552398949861526</right_val></_>
  9375. <_>
  9376. <!-- node 1 -->
  9377. <feature>
  9378. <rects>
  9379. <_>
  9380. 5 4 4 4 -1.</_>
  9381. <_>
  9382. 6 5 2 4 2.</_></rects>
  9383. <tilted>1</tilted></feature>
  9384. <threshold>0.0122171696275473</threshold>
  9385. <left_val>-0.3656722903251648</left_val>
  9386. <right_val>0.2515968978404999</right_val></_></_>
  9387. <_>
  9388. <!-- tree 18 -->
  9389. <_>
  9390. <!-- root node -->
  9391. <feature>
  9392. <rects>
  9393. <_>
  9394. 5 0 8 7 -1.</_>
  9395. <_>
  9396. 9 0 4 7 2.</_></rects>
  9397. <tilted>0</tilted></feature>
  9398. <threshold>0.0601993091404438</threshold>
  9399. <left_node>1</left_node>
  9400. <right_val>-0.6895959973335266</right_val></_>
  9401. <_>
  9402. <!-- node 1 -->
  9403. <feature>
  9404. <rects>
  9405. <_>
  9406. 0 7 5 9 -1.</_>
  9407. <_>
  9408. 0 10 5 3 3.</_></rects>
  9409. <tilted>0</tilted></feature>
  9410. <threshold>-0.0916843712329865</threshold>
  9411. <left_val>-0.6631187200546265</left_val>
  9412. <right_val>0.0948273614048958</right_val></_></_>
  9413. <_>
  9414. <!-- tree 19 -->
  9415. <_>
  9416. <!-- root node -->
  9417. <feature>
  9418. <rects>
  9419. <_>
  9420. 14 10 2 2 -1.</_>
  9421. <_>
  9422. 14 10 1 1 2.</_>
  9423. <_>
  9424. 15 11 1 1 2.</_></rects>
  9425. <tilted>0</tilted></feature>
  9426. <threshold>8.9392811059951782e-04</threshold>
  9427. <left_node>1</left_node>
  9428. <right_val>0.2873100936412811</right_val></_>
  9429. <_>
  9430. <!-- node 1 -->
  9431. <feature>
  9432. <rects>
  9433. <_>
  9434. 15 11 2 2 -1.</_>
  9435. <_>
  9436. 15 11 1 1 2.</_>
  9437. <_>
  9438. 16 12 1 1 2.</_></rects>
  9439. <tilted>0</tilted></feature>
  9440. <threshold>-1.1146500473842025e-03</threshold>
  9441. <left_val>0.3612706065177917</left_val>
  9442. <right_val>-0.2405422925949097</right_val></_></_>
  9443. <_>
  9444. <!-- tree 20 -->
  9445. <_>
  9446. <!-- root node -->
  9447. <feature>
  9448. <rects>
  9449. <_>
  9450. 9 2 6 4 -1.</_>
  9451. <_>
  9452. 11 2 2 4 3.</_></rects>
  9453. <tilted>0</tilted></feature>
  9454. <threshold>-0.0110427802428603</threshold>
  9455. <left_val>-0.7168669104576111</left_val>
  9456. <right_node>1</right_node></_>
  9457. <_>
  9458. <!-- node 1 -->
  9459. <feature>
  9460. <rects>
  9461. <_>
  9462. 0 12 12 8 -1.</_>
  9463. <_>
  9464. 6 12 6 8 2.</_></rects>
  9465. <tilted>0</tilted></feature>
  9466. <threshold>0.0377693511545658</threshold>
  9467. <left_val>0.1112534999847412</left_val>
  9468. <right_val>-0.5632094740867615</right_val></_></_>
  9469. <_>
  9470. <!-- tree 21 -->
  9471. <_>
  9472. <!-- root node -->
  9473. <feature>
  9474. <rects>
  9475. <_>
  9476. 1 0 6 2 -1.</_>
  9477. <_>
  9478. 3 0 2 2 3.</_></rects>
  9479. <tilted>0</tilted></feature>
  9480. <threshold>5.5979429744184017e-03</threshold>
  9481. <left_node>1</left_node>
  9482. <right_val>-0.5699890851974487</right_val></_>
  9483. <_>
  9484. <!-- node 1 -->
  9485. <feature>
  9486. <rects>
  9487. <_>
  9488. 0 12 4 5 -1.</_>
  9489. <_>
  9490. 1 12 2 5 2.</_></rects>
  9491. <tilted>0</tilted></feature>
  9492. <threshold>-2.5462140329182148e-03</threshold>
  9493. <left_val>0.2673457860946655</left_val>
  9494. <right_val>-0.1052770018577576</right_val></_></_>
  9495. <_>
  9496. <!-- tree 22 -->
  9497. <_>
  9498. <!-- root node -->
  9499. <feature>
  9500. <rects>
  9501. <_>
  9502. 2 12 4 4 -1.</_>
  9503. <_>
  9504. 3 12 2 4 2.</_></rects>
  9505. <tilted>0</tilted></feature>
  9506. <threshold>-1.7929819878190756e-03</threshold>
  9507. <left_val>0.1771212071180344</left_val>
  9508. <right_node>1</right_node></_>
  9509. <_>
  9510. <!-- node 1 -->
  9511. <feature>
  9512. <rects>
  9513. <_>
  9514. 12 11 2 4 -1.</_>
  9515. <_>
  9516. 13 11 1 4 2.</_></rects>
  9517. <tilted>0</tilted></feature>
  9518. <threshold>-8.9686378487385809e-05</threshold>
  9519. <left_val>0.1676241010427475</left_val>
  9520. <right_val>-0.4133665859699249</right_val></_></_>
  9521. <_>
  9522. <!-- tree 23 -->
  9523. <_>
  9524. <!-- root node -->
  9525. <feature>
  9526. <rects>
  9527. <_>
  9528. 2 0 1 4 -1.</_>
  9529. <_>
  9530. 2 2 1 2 2.</_></rects>
  9531. <tilted>0</tilted></feature>
  9532. <threshold>-6.8254990037530661e-04</threshold>
  9533. <left_node>1</left_node>
  9534. <right_val>-0.3132705092430115</right_val></_>
  9535. <_>
  9536. <!-- node 1 -->
  9537. <feature>
  9538. <rects>
  9539. <_>
  9540. 6 1 4 9 -1.</_>
  9541. <_>
  9542. 7 1 2 9 2.</_></rects>
  9543. <tilted>0</tilted></feature>
  9544. <threshold>4.0599349886178970e-03</threshold>
  9545. <left_val>0.2031262964010239</left_val>
  9546. <right_val>-0.4636094868183136</right_val></_></_>
  9547. <_>
  9548. <!-- tree 24 -->
  9549. <_>
  9550. <!-- root node -->
  9551. <feature>
  9552. <rects>
  9553. <_>
  9554. 13 10 2 3 -1.</_>
  9555. <_>
  9556. 13 11 2 1 3.</_></rects>
  9557. <tilted>0</tilted></feature>
  9558. <threshold>1.5843180008232594e-03</threshold>
  9559. <left_node>1</left_node>
  9560. <right_val>0.2641308903694153</right_val></_>
  9561. <_>
  9562. <!-- node 1 -->
  9563. <feature>
  9564. <rects>
  9565. <_>
  9566. 3 9 15 3 -1.</_>
  9567. <_>
  9568. 8 10 5 1 9.</_></rects>
  9569. <tilted>0</tilted></feature>
  9570. <threshold>-0.0461016409099102</threshold>
  9571. <left_val>0.2458764016628265</left_val>
  9572. <right_val>-0.3115119934082031</right_val></_></_>
  9573. <_>
  9574. <!-- tree 25 -->
  9575. <_>
  9576. <!-- root node -->
  9577. <feature>
  9578. <rects>
  9579. <_>
  9580. 15 10 3 1 -1.</_>
  9581. <_>
  9582. 16 11 1 1 3.</_></rects>
  9583. <tilted>1</tilted></feature>
  9584. <threshold>1.5759950038045645e-03</threshold>
  9585. <left_node>1</left_node>
  9586. <right_val>-0.3659397065639496</right_val></_>
  9587. <_>
  9588. <!-- node 1 -->
  9589. <feature>
  9590. <rects>
  9591. <_>
  9592. 1 0 15 8 -1.</_>
  9593. <_>
  9594. 1 2 15 4 2.</_></rects>
  9595. <tilted>0</tilted></feature>
  9596. <threshold>0.0359046310186386</threshold>
  9597. <left_val>-0.0133526204153895</left_val>
  9598. <right_val>0.4950073957443237</right_val></_></_>
  9599. <_>
  9600. <!-- tree 26 -->
  9601. <_>
  9602. <!-- root node -->
  9603. <feature>
  9604. <rects>
  9605. <_>
  9606. 2 3 15 6 -1.</_>
  9607. <_>
  9608. 2 6 15 3 2.</_></rects>
  9609. <tilted>0</tilted></feature>
  9610. <threshold>0.0192305296659470</threshold>
  9611. <left_node>1</left_node>
  9612. <right_val>0.1860356032848358</right_val></_>
  9613. <_>
  9614. <!-- node 1 -->
  9615. <feature>
  9616. <rects>
  9617. <_>
  9618. 6 0 6 6 -1.</_>
  9619. <_>
  9620. 6 2 6 2 3.</_></rects>
  9621. <tilted>0</tilted></feature>
  9622. <threshold>0.0134618300944567</threshold>
  9623. <left_val>-0.4270431101322174</left_val>
  9624. <right_val>0.1475695073604584</right_val></_></_>
  9625. <_>
  9626. <!-- tree 27 -->
  9627. <_>
  9628. <!-- root node -->
  9629. <feature>
  9630. <rects>
  9631. <_>
  9632. 16 9 4 3 -1.</_>
  9633. <_>
  9634. 16 10 4 1 3.</_></rects>
  9635. <tilted>0</tilted></feature>
  9636. <threshold>6.3534970395267010e-03</threshold>
  9637. <left_node>1</left_node>
  9638. <right_val>-0.5882459282875061</right_val></_>
  9639. <_>
  9640. <!-- node 1 -->
  9641. <feature>
  9642. <rects>
  9643. <_>
  9644. 16 7 4 3 -1.</_>
  9645. <_>
  9646. 16 8 4 1 3.</_></rects>
  9647. <tilted>0</tilted></feature>
  9648. <threshold>4.7998740337789059e-03</threshold>
  9649. <left_val>0.1396612972021103</left_val>
  9650. <right_val>-0.3694832026958466</right_val></_></_>
  9651. <_>
  9652. <!-- tree 28 -->
  9653. <_>
  9654. <!-- root node -->
  9655. <feature>
  9656. <rects>
  9657. <_>
  9658. 15 10 2 2 -1.</_>
  9659. <_>
  9660. 15 10 1 1 2.</_>
  9661. <_>
  9662. 16 11 1 1 2.</_></rects>
  9663. <tilted>0</tilted></feature>
  9664. <threshold>-9.7894563805311918e-04</threshold>
  9665. <left_val>0.4315659105777740</left_val>
  9666. <right_node>1</right_node></_>
  9667. <_>
  9668. <!-- node 1 -->
  9669. <feature>
  9670. <rects>
  9671. <_>
  9672. 13 11 2 3 -1.</_>
  9673. <_>
  9674. 13 12 2 1 3.</_></rects>
  9675. <tilted>0</tilted></feature>
  9676. <threshold>1.8534340197220445e-03</threshold>
  9677. <left_val>-0.1905311048030853</left_val>
  9678. <right_val>0.2686879932880402</right_val></_></_>
  9679. <_>
  9680. <!-- tree 29 -->
  9681. <_>
  9682. <!-- root node -->
  9683. <feature>
  9684. <rects>
  9685. <_>
  9686. 2 16 2 2 -1.</_>
  9687. <_>
  9688. 2 16 1 2 2.</_></rects>
  9689. <tilted>1</tilted></feature>
  9690. <threshold>5.5962381884455681e-04</threshold>
  9691. <left_node>1</left_node>
  9692. <right_val>-0.3054575026035309</right_val></_>
  9693. <_>
  9694. <!-- node 1 -->
  9695. <feature>
  9696. <rects>
  9697. <_>
  9698. 3 0 4 7 -1.</_>
  9699. <_>
  9700. 4 0 2 7 2.</_></rects>
  9701. <tilted>0</tilted></feature>
  9702. <threshold>-8.1787789240479469e-03</threshold>
  9703. <left_val>-0.7235335111618042</left_val>
  9704. <right_val>0.1619776934385300</right_val></_></_>
  9705. <_>
  9706. <!-- tree 30 -->
  9707. <_>
  9708. <!-- root node -->
  9709. <feature>
  9710. <rects>
  9711. <_>
  9712. 0 16 2 2 -1.</_>
  9713. <_>
  9714. 0 16 1 1 2.</_>
  9715. <_>
  9716. 1 17 1 1 2.</_></rects>
  9717. <tilted>0</tilted></feature>
  9718. <threshold>-6.4591833506710827e-05</threshold>
  9719. <left_node>1</left_node>
  9720. <right_val>-0.1612174957990646</right_val></_>
  9721. <_>
  9722. <!-- node 1 -->
  9723. <feature>
  9724. <rects>
  9725. <_>
  9726. 2 0 18 3 -1.</_>
  9727. <_>
  9728. 8 0 6 3 3.</_></rects>
  9729. <tilted>0</tilted></feature>
  9730. <threshold>-4.2282380163669586e-03</threshold>
  9731. <left_val>0.4244168102741241</left_val>
  9732. <right_val>-0.1148820966482162</right_val></_></_>
  9733. <_>
  9734. <!-- tree 31 -->
  9735. <_>
  9736. <!-- root node -->
  9737. <feature>
  9738. <rects>
  9739. <_>
  9740. 0 1 1 3 -1.</_>
  9741. <_>
  9742. 0 2 1 1 3.</_></rects>
  9743. <tilted>0</tilted></feature>
  9744. <threshold>-3.2379399053752422e-03</threshold>
  9745. <left_val>-0.8281142711639404</left_val>
  9746. <right_node>1</right_node></_>
  9747. <_>
  9748. <!-- node 1 -->
  9749. <feature>
  9750. <rects>
  9751. <_>
  9752. 10 6 4 4 -1.</_>
  9753. <_>
  9754. 10 7 4 2 2.</_></rects>
  9755. <tilted>0</tilted></feature>
  9756. <threshold>-4.7763898037374020e-03</threshold>
  9757. <left_val>0.3915700912475586</left_val>
  9758. <right_val>-0.0376774296164513</right_val></_></_>
  9759. <_>
  9760. <!-- tree 32 -->
  9761. <_>
  9762. <!-- root node -->
  9763. <feature>
  9764. <rects>
  9765. <_>
  9766. 16 4 4 6 -1.</_>
  9767. <_>
  9768. 16 4 2 3 2.</_>
  9769. <_>
  9770. 18 7 2 3 2.</_></rects>
  9771. <tilted>0</tilted></feature>
  9772. <threshold>-6.1182728968560696e-03</threshold>
  9773. <left_val>0.3020882904529572</left_val>
  9774. <right_node>1</right_node></_>
  9775. <_>
  9776. <!-- node 1 -->
  9777. <feature>
  9778. <rects>
  9779. <_>
  9780. 11 12 4 2 -1.</_>
  9781. <_>
  9782. 11 12 2 1 2.</_>
  9783. <_>
  9784. 13 13 2 1 2.</_></rects>
  9785. <tilted>0</tilted></feature>
  9786. <threshold>3.1565790995955467e-03</threshold>
  9787. <left_val>-0.1904578953981400</left_val>
  9788. <right_val>0.3021968901157379</right_val></_></_></trees>
  9789. <stage_threshold>-1.8088439702987671</stage_threshold>
  9790. <parent>18</parent>
  9791. <next>-1</next></_></stages></haarcascade_lefteye>
  9792. </opencv_storage>