imgproc.hpp 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Third party copyrights are property of their respective owners.
  16. //
  17. // Redistribution and use in source and binary forms, with or without modification,
  18. // are permitted provided that the following conditions are met:
  19. //
  20. // * Redistribution's of source code must retain the above copyright notice,
  21. // this list of conditions and the following disclaimer.
  22. //
  23. // * Redistribution's in binary form must reproduce the above copyright notice,
  24. // this list of conditions and the following disclaimer in the documentation
  25. // and/or other materials provided with the distribution.
  26. //
  27. // * The name of the copyright holders may not be used to endorse or promote products
  28. // derived from this software without specific prior written permission.
  29. //
  30. // This software is provided by the copyright holders and contributors "as is" and
  31. // any express or implied warranties, including, but not limited to, the implied
  32. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  33. // In no event shall the Intel Corporation or contributors be liable for any direct,
  34. // indirect, incidental, special, exemplary, or consequential damages
  35. // (including, but not limited to, procurement of substitute goods or services;
  36. // loss of use, data, or profits; or business interruption) however caused
  37. // and on any theory of liability, whether in contract, strict liability,
  38. // or tort (including negligence or otherwise) arising in any way out of
  39. // the use of this software, even if advised of the possibility of such damage.
  40. //
  41. //M*/
  42. #ifndef OPENCV_IMGPROC_HPP
  43. #define OPENCV_IMGPROC_HPP
  44. #include "opencv2/core.hpp"
  45. /**
  46. @defgroup imgproc Image Processing
  47. This module includes image-processing functions.
  48. @{
  49. @defgroup imgproc_filter Image Filtering
  50. Functions and classes described in this section are used to perform various linear or non-linear
  51. filtering operations on 2D images (represented as Mat's). It means that for each pixel location
  52. \f$(x,y)\f$ in the source image (normally, rectangular), its neighborhood is considered and used to
  53. compute the response. In case of a linear filter, it is a weighted sum of pixel values. In case of
  54. morphological operations, it is the minimum or maximum values, and so on. The computed response is
  55. stored in the destination image at the same location \f$(x,y)\f$. It means that the output image
  56. will be of the same size as the input image. Normally, the functions support multi-channel arrays,
  57. in which case every channel is processed independently. Therefore, the output image will also have
  58. the same number of channels as the input one.
  59. Another common feature of the functions and classes described in this section is that, unlike
  60. simple arithmetic functions, they need to extrapolate values of some non-existing pixels. For
  61. example, if you want to smooth an image using a Gaussian \f$3 \times 3\f$ filter, then, when
  62. processing the left-most pixels in each row, you need pixels to the left of them, that is, outside
  63. of the image. You can let these pixels be the same as the left-most image pixels ("replicated
  64. border" extrapolation method), or assume that all the non-existing pixels are zeros ("constant
  65. border" extrapolation method), and so on. OpenCV enables you to specify the extrapolation method.
  66. For details, see #BorderTypes
  67. @anchor filter_depths
  68. ### Depth combinations
  69. Input depth (src.depth()) | Output depth (ddepth)
  70. --------------------------|----------------------
  71. CV_8U | -1/CV_16S/CV_32F/CV_64F
  72. CV_16U/CV_16S | -1/CV_32F/CV_64F
  73. CV_32F | -1/CV_32F/CV_64F
  74. CV_64F | -1/CV_64F
  75. @note when ddepth=-1, the output image will have the same depth as the source.
  76. @defgroup imgproc_transform Geometric Image Transformations
  77. The functions in this section perform various geometrical transformations of 2D images. They do not
  78. change the image content but deform the pixel grid and map this deformed grid to the destination
  79. image. In fact, to avoid sampling artifacts, the mapping is done in the reverse order, from
  80. destination to the source. That is, for each pixel \f$(x, y)\f$ of the destination image, the
  81. functions compute coordinates of the corresponding "donor" pixel in the source image and copy the
  82. pixel value:
  83. \f[\texttt{dst} (x,y)= \texttt{src} (f_x(x,y), f_y(x,y))\f]
  84. In case when you specify the forward mapping \f$\left<g_x, g_y\right>: \texttt{src} \rightarrow
  85. \texttt{dst}\f$, the OpenCV functions first compute the corresponding inverse mapping
  86. \f$\left<f_x, f_y\right>: \texttt{dst} \rightarrow \texttt{src}\f$ and then use the above formula.
  87. The actual implementations of the geometrical transformations, from the most generic remap and to
  88. the simplest and the fastest resize, need to solve two main problems with the above formula:
  89. - Extrapolation of non-existing pixels. Similarly to the filtering functions described in the
  90. previous section, for some \f$(x,y)\f$, either one of \f$f_x(x,y)\f$, or \f$f_y(x,y)\f$, or both
  91. of them may fall outside of the image. In this case, an extrapolation method needs to be used.
  92. OpenCV provides the same selection of extrapolation methods as in the filtering functions. In
  93. addition, it provides the method #BORDER_TRANSPARENT. This means that the corresponding pixels in
  94. the destination image will not be modified at all.
  95. - Interpolation of pixel values. Usually \f$f_x(x,y)\f$ and \f$f_y(x,y)\f$ are floating-point
  96. numbers. This means that \f$\left<f_x, f_y\right>\f$ can be either an affine or perspective
  97. transformation, or radial lens distortion correction, and so on. So, a pixel value at fractional
  98. coordinates needs to be retrieved. In the simplest case, the coordinates can be just rounded to the
  99. nearest integer coordinates and the corresponding pixel can be used. This is called a
  100. nearest-neighbor interpolation. However, a better result can be achieved by using more
  101. sophisticated [interpolation methods](http://en.wikipedia.org/wiki/Multivariate_interpolation) ,
  102. where a polynomial function is fit into some neighborhood of the computed pixel \f$(f_x(x,y),
  103. f_y(x,y))\f$, and then the value of the polynomial at \f$(f_x(x,y), f_y(x,y))\f$ is taken as the
  104. interpolated pixel value. In OpenCV, you can choose between several interpolation methods. See
  105. resize for details.
  106. @note The geometrical transformations do not work with `CV_8S` or `CV_32S` images.
  107. @defgroup imgproc_misc Miscellaneous Image Transformations
  108. @defgroup imgproc_draw Drawing Functions
  109. Drawing functions work with matrices/images of arbitrary depth. The boundaries of the shapes can be
  110. rendered with antialiasing (implemented only for 8-bit images for now). All the functions include
  111. the parameter color that uses an RGB value (that may be constructed with the Scalar constructor )
  112. for color images and brightness for grayscale images. For color images, the channel ordering is
  113. normally *Blue, Green, Red*. This is what imshow, imread, and imwrite expect. So, if you form a
  114. color using the Scalar constructor, it should look like:
  115. \f[\texttt{Scalar} (blue \_ component, green \_ component, red \_ component[, alpha \_ component])\f]
  116. If you are using your own image rendering and I/O functions, you can use any channel ordering. The
  117. drawing functions process each channel independently and do not depend on the channel order or even
  118. on the used color space. The whole image can be converted from BGR to RGB or to a different color
  119. space using cvtColor .
  120. If a drawn figure is partially or completely outside the image, the drawing functions clip it. Also,
  121. many drawing functions can handle pixel coordinates specified with sub-pixel accuracy. This means
  122. that the coordinates can be passed as fixed-point numbers encoded as integers. The number of
  123. fractional bits is specified by the shift parameter and the real point coordinates are calculated as
  124. \f$\texttt{Point}(x,y)\rightarrow\texttt{Point2f}(x*2^{-shift},y*2^{-shift})\f$ . This feature is
  125. especially effective when rendering antialiased shapes.
  126. @note The functions do not support alpha-transparency when the target image is 4-channel. In this
  127. case, the color[3] is simply copied to the repainted pixels. Thus, if you want to paint
  128. semi-transparent shapes, you can paint them in a separate buffer and then blend it with the main
  129. image.
  130. @defgroup imgproc_color_conversions Color Space Conversions
  131. @defgroup imgproc_colormap ColorMaps in OpenCV
  132. The human perception isn't built for observing fine changes in grayscale images. Human eyes are more
  133. sensitive to observing changes between colors, so you often need to recolor your grayscale images to
  134. get a clue about them. OpenCV now comes with various colormaps to enhance the visualization in your
  135. computer vision application.
  136. In OpenCV you only need applyColorMap to apply a colormap on a given image. The following sample
  137. code reads the path to an image from command line, applies a Jet colormap on it and shows the
  138. result:
  139. @include snippets/imgproc_applyColorMap.cpp
  140. @see #ColormapTypes
  141. @defgroup imgproc_subdiv2d Planar Subdivision
  142. The Subdiv2D class described in this section is used to perform various planar subdivision on
  143. a set of 2D points (represented as vector of Point2f). OpenCV subdivides a plane into triangles
  144. using the Delaunay's algorithm, which corresponds to the dual graph of the Voronoi diagram.
  145. In the figure below, the Delaunay's triangulation is marked with black lines and the Voronoi
  146. diagram with red lines.
  147. ![Delaunay triangulation (black) and Voronoi (red)](pics/delaunay_voronoi.png)
  148. The subdivisions can be used for the 3D piece-wise transformation of a plane, morphing, fast
  149. location of points on the plane, building special graphs (such as NNG,RNG), and so forth.
  150. @defgroup imgproc_hist Histograms
  151. @defgroup imgproc_shape Structural Analysis and Shape Descriptors
  152. @defgroup imgproc_motion Motion Analysis and Object Tracking
  153. @defgroup imgproc_feature Feature Detection
  154. @defgroup imgproc_object Object Detection
  155. @defgroup imgproc_c C API
  156. @defgroup imgproc_hal Hardware Acceleration Layer
  157. @{
  158. @defgroup imgproc_hal_functions Functions
  159. @defgroup imgproc_hal_interface Interface
  160. @}
  161. @}
  162. */
  163. namespace cv
  164. {
  165. /** @addtogroup imgproc
  166. @{
  167. */
  168. //! @addtogroup imgproc_filter
  169. //! @{
  170. //! type of morphological operation
  171. enum MorphTypes{
  172. MORPH_ERODE = 0, //!< see #erode
  173. MORPH_DILATE = 1, //!< see #dilate
  174. MORPH_OPEN = 2, //!< an opening operation
  175. //!< \f[\texttt{dst} = \mathrm{open} ( \texttt{src} , \texttt{element} )= \mathrm{dilate} ( \mathrm{erode} ( \texttt{src} , \texttt{element} ))\f]
  176. MORPH_CLOSE = 3, //!< a closing operation
  177. //!< \f[\texttt{dst} = \mathrm{close} ( \texttt{src} , \texttt{element} )= \mathrm{erode} ( \mathrm{dilate} ( \texttt{src} , \texttt{element} ))\f]
  178. MORPH_GRADIENT = 4, //!< a morphological gradient
  179. //!< \f[\texttt{dst} = \mathrm{morph\_grad} ( \texttt{src} , \texttt{element} )= \mathrm{dilate} ( \texttt{src} , \texttt{element} )- \mathrm{erode} ( \texttt{src} , \texttt{element} )\f]
  180. MORPH_TOPHAT = 5, //!< "top hat"
  181. //!< \f[\texttt{dst} = \mathrm{tophat} ( \texttt{src} , \texttt{element} )= \texttt{src} - \mathrm{open} ( \texttt{src} , \texttt{element} )\f]
  182. MORPH_BLACKHAT = 6, //!< "black hat"
  183. //!< \f[\texttt{dst} = \mathrm{blackhat} ( \texttt{src} , \texttt{element} )= \mathrm{close} ( \texttt{src} , \texttt{element} )- \texttt{src}\f]
  184. MORPH_HITMISS = 7 //!< "hit or miss"
  185. //!< .- Only supported for CV_8UC1 binary images. A tutorial can be found in the documentation
  186. };
  187. //! shape of the structuring element
  188. enum MorphShapes {
  189. MORPH_RECT = 0, //!< a rectangular structuring element: \f[E_{ij}=1\f]
  190. MORPH_CROSS = 1, //!< a cross-shaped structuring element:
  191. //!< \f[E_{ij} = \begin{cases} 1 & \texttt{if } {i=\texttt{anchor.y } {or } {j=\texttt{anchor.x}}} \\0 & \texttt{otherwise} \end{cases}\f]
  192. MORPH_ELLIPSE = 2 //!< an elliptic structuring element, that is, a filled ellipse inscribed
  193. //!< into the rectangle Rect(0, 0, esize.width, 0.esize.height)
  194. };
  195. //! @} imgproc_filter
  196. //! @addtogroup imgproc_transform
  197. //! @{
  198. //! interpolation algorithm
  199. enum InterpolationFlags{
  200. /** nearest neighbor interpolation */
  201. INTER_NEAREST = 0,
  202. /** bilinear interpolation */
  203. INTER_LINEAR = 1,
  204. /** bicubic interpolation */
  205. INTER_CUBIC = 2,
  206. /** resampling using pixel area relation. It may be a preferred method for image decimation, as
  207. it gives moire'-free results. But when the image is zoomed, it is similar to the INTER_NEAREST
  208. method. */
  209. INTER_AREA = 3,
  210. /** Lanczos interpolation over 8x8 neighborhood */
  211. INTER_LANCZOS4 = 4,
  212. /** Bit exact bilinear interpolation */
  213. INTER_LINEAR_EXACT = 5,
  214. /** Bit exact nearest neighbor interpolation. This will produce same results as
  215. the nearest neighbor method in PIL, scikit-image or Matlab. */
  216. INTER_NEAREST_EXACT = 6,
  217. /** mask for interpolation codes */
  218. INTER_MAX = 7,
  219. /** flag, fills all of the destination image pixels. If some of them correspond to outliers in the
  220. source image, they are set to zero */
  221. WARP_FILL_OUTLIERS = 8,
  222. /** flag, inverse transformation
  223. For example, #linearPolar or #logPolar transforms:
  224. - flag is __not__ set: \f$dst( \rho , \phi ) = src(x,y)\f$
  225. - flag is set: \f$dst(x,y) = src( \rho , \phi )\f$
  226. */
  227. WARP_INVERSE_MAP = 16
  228. };
  229. /** \brief Specify the polar mapping mode
  230. @sa warpPolar
  231. */
  232. enum WarpPolarMode
  233. {
  234. WARP_POLAR_LINEAR = 0, ///< Remaps an image to/from polar space.
  235. WARP_POLAR_LOG = 256 ///< Remaps an image to/from semilog-polar space.
  236. };
  237. enum InterpolationMasks {
  238. INTER_BITS = 5,
  239. INTER_BITS2 = INTER_BITS * 2,
  240. INTER_TAB_SIZE = 1 << INTER_BITS,
  241. INTER_TAB_SIZE2 = INTER_TAB_SIZE * INTER_TAB_SIZE
  242. };
  243. //! @} imgproc_transform
  244. //! @addtogroup imgproc_misc
  245. //! @{
  246. //! Distance types for Distance Transform and M-estimators
  247. //! @see distanceTransform, fitLine
  248. enum DistanceTypes {
  249. DIST_USER = -1, //!< User defined distance
  250. DIST_L1 = 1, //!< distance = |x1-x2| + |y1-y2|
  251. DIST_L2 = 2, //!< the simple euclidean distance
  252. DIST_C = 3, //!< distance = max(|x1-x2|,|y1-y2|)
  253. DIST_L12 = 4, //!< L1-L2 metric: distance = 2(sqrt(1+x*x/2) - 1))
  254. DIST_FAIR = 5, //!< distance = c^2(|x|/c-log(1+|x|/c)), c = 1.3998
  255. DIST_WELSCH = 6, //!< distance = c^2/2(1-exp(-(x/c)^2)), c = 2.9846
  256. DIST_HUBER = 7 //!< distance = |x|<c ? x^2/2 : c(|x|-c/2), c=1.345
  257. };
  258. //! Mask size for distance transform
  259. enum DistanceTransformMasks {
  260. DIST_MASK_3 = 3, //!< mask=3
  261. DIST_MASK_5 = 5, //!< mask=5
  262. DIST_MASK_PRECISE = 0 //!<
  263. };
  264. //! type of the threshold operation
  265. //! ![threshold types](pics/threshold.png)
  266. enum ThresholdTypes {
  267. THRESH_BINARY = 0, //!< \f[\texttt{dst} (x,y) = \fork{\texttt{maxval}}{if \(\texttt{src}(x,y) > \texttt{thresh}\)}{0}{otherwise}\f]
  268. THRESH_BINARY_INV = 1, //!< \f[\texttt{dst} (x,y) = \fork{0}{if \(\texttt{src}(x,y) > \texttt{thresh}\)}{\texttt{maxval}}{otherwise}\f]
  269. THRESH_TRUNC = 2, //!< \f[\texttt{dst} (x,y) = \fork{\texttt{threshold}}{if \(\texttt{src}(x,y) > \texttt{thresh}\)}{\texttt{src}(x,y)}{otherwise}\f]
  270. THRESH_TOZERO = 3, //!< \f[\texttt{dst} (x,y) = \fork{\texttt{src}(x,y)}{if \(\texttt{src}(x,y) > \texttt{thresh}\)}{0}{otherwise}\f]
  271. THRESH_TOZERO_INV = 4, //!< \f[\texttt{dst} (x,y) = \fork{0}{if \(\texttt{src}(x,y) > \texttt{thresh}\)}{\texttt{src}(x,y)}{otherwise}\f]
  272. THRESH_MASK = 7,
  273. THRESH_OTSU = 8, //!< flag, use Otsu algorithm to choose the optimal threshold value
  274. THRESH_TRIANGLE = 16 //!< flag, use Triangle algorithm to choose the optimal threshold value
  275. };
  276. //! adaptive threshold algorithm
  277. //! @see adaptiveThreshold
  278. enum AdaptiveThresholdTypes {
  279. /** the threshold value \f$T(x,y)\f$ is a mean of the \f$\texttt{blockSize} \times
  280. \texttt{blockSize}\f$ neighborhood of \f$(x, y)\f$ minus C */
  281. ADAPTIVE_THRESH_MEAN_C = 0,
  282. /** the threshold value \f$T(x, y)\f$ is a weighted sum (cross-correlation with a Gaussian
  283. window) of the \f$\texttt{blockSize} \times \texttt{blockSize}\f$ neighborhood of \f$(x, y)\f$
  284. minus C . The default sigma (standard deviation) is used for the specified blockSize . See
  285. #getGaussianKernel*/
  286. ADAPTIVE_THRESH_GAUSSIAN_C = 1
  287. };
  288. //! cv::undistort mode
  289. enum UndistortTypes {
  290. PROJ_SPHERICAL_ORTHO = 0,
  291. PROJ_SPHERICAL_EQRECT = 1
  292. };
  293. //! class of the pixel in GrabCut algorithm
  294. enum GrabCutClasses {
  295. GC_BGD = 0, //!< an obvious background pixels
  296. GC_FGD = 1, //!< an obvious foreground (object) pixel
  297. GC_PR_BGD = 2, //!< a possible background pixel
  298. GC_PR_FGD = 3 //!< a possible foreground pixel
  299. };
  300. //! GrabCut algorithm flags
  301. enum GrabCutModes {
  302. /** The function initializes the state and the mask using the provided rectangle. After that it
  303. runs iterCount iterations of the algorithm. */
  304. GC_INIT_WITH_RECT = 0,
  305. /** The function initializes the state using the provided mask. Note that GC_INIT_WITH_RECT
  306. and GC_INIT_WITH_MASK can be combined. Then, all the pixels outside of the ROI are
  307. automatically initialized with GC_BGD .*/
  308. GC_INIT_WITH_MASK = 1,
  309. /** The value means that the algorithm should just resume. */
  310. GC_EVAL = 2,
  311. /** The value means that the algorithm should just run the grabCut algorithm (a single iteration) with the fixed model */
  312. GC_EVAL_FREEZE_MODEL = 3
  313. };
  314. //! distanceTransform algorithm flags
  315. enum DistanceTransformLabelTypes {
  316. /** each connected component of zeros in src (as well as all the non-zero pixels closest to the
  317. connected component) will be assigned the same label */
  318. DIST_LABEL_CCOMP = 0,
  319. /** each zero pixel (and all the non-zero pixels closest to it) gets its own label. */
  320. DIST_LABEL_PIXEL = 1
  321. };
  322. //! floodfill algorithm flags
  323. enum FloodFillFlags {
  324. /** If set, the difference between the current pixel and seed pixel is considered. Otherwise,
  325. the difference between neighbor pixels is considered (that is, the range is floating). */
  326. FLOODFILL_FIXED_RANGE = 1 << 16,
  327. /** If set, the function does not change the image ( newVal is ignored), and only fills the
  328. mask with the value specified in bits 8-16 of flags as described above. This option only make
  329. sense in function variants that have the mask parameter. */
  330. FLOODFILL_MASK_ONLY = 1 << 17
  331. };
  332. //! @} imgproc_misc
  333. //! @addtogroup imgproc_shape
  334. //! @{
  335. //! connected components statistics
  336. enum ConnectedComponentsTypes {
  337. CC_STAT_LEFT = 0, //!< The leftmost (x) coordinate which is the inclusive start of the bounding
  338. //!< box in the horizontal direction.
  339. CC_STAT_TOP = 1, //!< The topmost (y) coordinate which is the inclusive start of the bounding
  340. //!< box in the vertical direction.
  341. CC_STAT_WIDTH = 2, //!< The horizontal size of the bounding box
  342. CC_STAT_HEIGHT = 3, //!< The vertical size of the bounding box
  343. CC_STAT_AREA = 4, //!< The total area (in pixels) of the connected component
  344. #ifndef CV_DOXYGEN
  345. CC_STAT_MAX = 5 //!< Max enumeration value. Used internally only for memory allocation
  346. #endif
  347. };
  348. //! connected components algorithm
  349. enum ConnectedComponentsAlgorithmsTypes {
  350. CCL_DEFAULT = -1, //!< BBDT @cite Grana2010 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity. The parallel implementation described in @cite Bolelli2017 is available for both BBDT and SAUF.
  351. CCL_WU = 0, //!< SAUF @cite Wu2009 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity. The parallel implementation described in @cite Bolelli2017 is available for SAUF.
  352. CCL_GRANA = 1, //!< BBDT @cite Grana2010 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity. The parallel implementation described in @cite Bolelli2017 is available for both BBDT and SAUF.
  353. CCL_BOLELLI = 2, //!< Spaghetti @cite Bolelli2019 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity.
  354. CCL_SAUF = 3, //!< Same as CCL_WU. It is preferable to use the flag with the name of the algorithm (CCL_SAUF) rather than the one with the name of the first author (CCL_WU).
  355. CCL_BBDT = 4, //!< Same as CCL_GRANA. It is preferable to use the flag with the name of the algorithm (CCL_BBDT) rather than the one with the name of the first author (CCL_GRANA).
  356. CCL_SPAGHETTI = 5, //!< Same as CCL_BOLELLI. It is preferable to use the flag with the name of the algorithm (CCL_SPAGHETTI) rather than the one with the name of the first author (CCL_BOLELLI).
  357. };
  358. //! mode of the contour retrieval algorithm
  359. enum RetrievalModes {
  360. /** retrieves only the extreme outer contours. It sets `hierarchy[i][2]=hierarchy[i][3]=-1` for
  361. all the contours. */
  362. RETR_EXTERNAL = 0,
  363. /** retrieves all of the contours without establishing any hierarchical relationships. */
  364. RETR_LIST = 1,
  365. /** retrieves all of the contours and organizes them into a two-level hierarchy. At the top
  366. level, there are external boundaries of the components. At the second level, there are
  367. boundaries of the holes. If there is another contour inside a hole of a connected component, it
  368. is still put at the top level. */
  369. RETR_CCOMP = 2,
  370. /** retrieves all of the contours and reconstructs a full hierarchy of nested contours.*/
  371. RETR_TREE = 3,
  372. RETR_FLOODFILL = 4 //!<
  373. };
  374. //! the contour approximation algorithm
  375. enum ContourApproximationModes {
  376. /** stores absolutely all the contour points. That is, any 2 subsequent points (x1,y1) and
  377. (x2,y2) of the contour will be either horizontal, vertical or diagonal neighbors, that is,
  378. max(abs(x1-x2),abs(y2-y1))==1. */
  379. CHAIN_APPROX_NONE = 1,
  380. /** compresses horizontal, vertical, and diagonal segments and leaves only their end points.
  381. For example, an up-right rectangular contour is encoded with 4 points. */
  382. CHAIN_APPROX_SIMPLE = 2,
  383. /** applies one of the flavors of the Teh-Chin chain approximation algorithm @cite TehChin89 */
  384. CHAIN_APPROX_TC89_L1 = 3,
  385. /** applies one of the flavors of the Teh-Chin chain approximation algorithm @cite TehChin89 */
  386. CHAIN_APPROX_TC89_KCOS = 4
  387. };
  388. /** @brief Shape matching methods
  389. \f$A\f$ denotes object1,\f$B\f$ denotes object2
  390. \f$\begin{array}{l} m^A_i = \mathrm{sign} (h^A_i) \cdot \log{h^A_i} \\ m^B_i = \mathrm{sign} (h^B_i) \cdot \log{h^B_i} \end{array}\f$
  391. and \f$h^A_i, h^B_i\f$ are the Hu moments of \f$A\f$ and \f$B\f$ , respectively.
  392. */
  393. enum ShapeMatchModes {
  394. CONTOURS_MATCH_I1 =1, //!< \f[I_1(A,B) = \sum _{i=1...7} \left | \frac{1}{m^A_i} - \frac{1}{m^B_i} \right |\f]
  395. CONTOURS_MATCH_I2 =2, //!< \f[I_2(A,B) = \sum _{i=1...7} \left | m^A_i - m^B_i \right |\f]
  396. CONTOURS_MATCH_I3 =3 //!< \f[I_3(A,B) = \max _{i=1...7} \frac{ \left| m^A_i - m^B_i \right| }{ \left| m^A_i \right| }\f]
  397. };
  398. //! @} imgproc_shape
  399. //! @addtogroup imgproc_feature
  400. //! @{
  401. //! Variants of a Hough transform
  402. enum HoughModes {
  403. /** classical or standard Hough transform. Every line is represented by two floating-point
  404. numbers \f$(\rho, \theta)\f$ , where \f$\rho\f$ is a distance between (0,0) point and the line,
  405. and \f$\theta\f$ is the angle between x-axis and the normal to the line. Thus, the matrix must
  406. be (the created sequence will be) of CV_32FC2 type */
  407. HOUGH_STANDARD = 0,
  408. /** probabilistic Hough transform (more efficient in case if the picture contains a few long
  409. linear segments). It returns line segments rather than the whole line. Each segment is
  410. represented by starting and ending points, and the matrix must be (the created sequence will
  411. be) of the CV_32SC4 type. */
  412. HOUGH_PROBABILISTIC = 1,
  413. /** multi-scale variant of the classical Hough transform. The lines are encoded the same way as
  414. HOUGH_STANDARD. */
  415. HOUGH_MULTI_SCALE = 2,
  416. HOUGH_GRADIENT = 3 //!< basically *21HT*, described in @cite Yuen90
  417. };
  418. //! Variants of Line Segment %Detector
  419. enum LineSegmentDetectorModes {
  420. LSD_REFINE_NONE = 0, //!< No refinement applied
  421. LSD_REFINE_STD = 1, //!< Standard refinement is applied. E.g. breaking arches into smaller straighter line approximations.
  422. LSD_REFINE_ADV = 2 //!< Advanced refinement. Number of false alarms is calculated, lines are
  423. //!< refined through increase of precision, decrement in size, etc.
  424. };
  425. //! @} imgproc_feature
  426. /** Histogram comparison methods
  427. @ingroup imgproc_hist
  428. */
  429. enum HistCompMethods {
  430. /** Correlation
  431. \f[d(H_1,H_2) = \frac{\sum_I (H_1(I) - \bar{H_1}) (H_2(I) - \bar{H_2})}{\sqrt{\sum_I(H_1(I) - \bar{H_1})^2 \sum_I(H_2(I) - \bar{H_2})^2}}\f]
  432. where
  433. \f[\bar{H_k} = \frac{1}{N} \sum _J H_k(J)\f]
  434. and \f$N\f$ is a total number of histogram bins. */
  435. HISTCMP_CORREL = 0,
  436. /** Chi-Square
  437. \f[d(H_1,H_2) = \sum _I \frac{\left(H_1(I)-H_2(I)\right)^2}{H_1(I)}\f] */
  438. HISTCMP_CHISQR = 1,
  439. /** Intersection
  440. \f[d(H_1,H_2) = \sum _I \min (H_1(I), H_2(I))\f] */
  441. HISTCMP_INTERSECT = 2,
  442. /** Bhattacharyya distance
  443. (In fact, OpenCV computes Hellinger distance, which is related to Bhattacharyya coefficient.)
  444. \f[d(H_1,H_2) = \sqrt{1 - \frac{1}{\sqrt{\bar{H_1} \bar{H_2} N^2}} \sum_I \sqrt{H_1(I) \cdot H_2(I)}}\f] */
  445. HISTCMP_BHATTACHARYYA = 3,
  446. HISTCMP_HELLINGER = HISTCMP_BHATTACHARYYA, //!< Synonym for HISTCMP_BHATTACHARYYA
  447. /** Alternative Chi-Square
  448. \f[d(H_1,H_2) = 2 * \sum _I \frac{\left(H_1(I)-H_2(I)\right)^2}{H_1(I)+H_2(I)}\f]
  449. This alternative formula is regularly used for texture comparison. See e.g. @cite Puzicha1997 */
  450. HISTCMP_CHISQR_ALT = 4,
  451. /** Kullback-Leibler divergence
  452. \f[d(H_1,H_2) = \sum _I H_1(I) \log \left(\frac{H_1(I)}{H_2(I)}\right)\f] */
  453. HISTCMP_KL_DIV = 5
  454. };
  455. /** the color conversion codes
  456. @see @ref imgproc_color_conversions
  457. @ingroup imgproc_color_conversions
  458. */
  459. enum ColorConversionCodes {
  460. COLOR_BGR2BGRA = 0, //!< add alpha channel to RGB or BGR image
  461. COLOR_RGB2RGBA = COLOR_BGR2BGRA,
  462. COLOR_BGRA2BGR = 1, //!< remove alpha channel from RGB or BGR image
  463. COLOR_RGBA2RGB = COLOR_BGRA2BGR,
  464. COLOR_BGR2RGBA = 2, //!< convert between RGB and BGR color spaces (with or without alpha channel)
  465. COLOR_RGB2BGRA = COLOR_BGR2RGBA,
  466. COLOR_RGBA2BGR = 3,
  467. COLOR_BGRA2RGB = COLOR_RGBA2BGR,
  468. COLOR_BGR2RGB = 4,
  469. COLOR_RGB2BGR = COLOR_BGR2RGB,
  470. COLOR_BGRA2RGBA = 5,
  471. COLOR_RGBA2BGRA = COLOR_BGRA2RGBA,
  472. COLOR_BGR2GRAY = 6, //!< convert between RGB/BGR and grayscale, @ref color_convert_rgb_gray "color conversions"
  473. COLOR_RGB2GRAY = 7,
  474. COLOR_GRAY2BGR = 8,
  475. COLOR_GRAY2RGB = COLOR_GRAY2BGR,
  476. COLOR_GRAY2BGRA = 9,
  477. COLOR_GRAY2RGBA = COLOR_GRAY2BGRA,
  478. COLOR_BGRA2GRAY = 10,
  479. COLOR_RGBA2GRAY = 11,
  480. COLOR_BGR2BGR565 = 12, //!< convert between RGB/BGR and BGR565 (16-bit images)
  481. COLOR_RGB2BGR565 = 13,
  482. COLOR_BGR5652BGR = 14,
  483. COLOR_BGR5652RGB = 15,
  484. COLOR_BGRA2BGR565 = 16,
  485. COLOR_RGBA2BGR565 = 17,
  486. COLOR_BGR5652BGRA = 18,
  487. COLOR_BGR5652RGBA = 19,
  488. COLOR_GRAY2BGR565 = 20, //!< convert between grayscale to BGR565 (16-bit images)
  489. COLOR_BGR5652GRAY = 21,
  490. COLOR_BGR2BGR555 = 22, //!< convert between RGB/BGR and BGR555 (16-bit images)
  491. COLOR_RGB2BGR555 = 23,
  492. COLOR_BGR5552BGR = 24,
  493. COLOR_BGR5552RGB = 25,
  494. COLOR_BGRA2BGR555 = 26,
  495. COLOR_RGBA2BGR555 = 27,
  496. COLOR_BGR5552BGRA = 28,
  497. COLOR_BGR5552RGBA = 29,
  498. COLOR_GRAY2BGR555 = 30, //!< convert between grayscale and BGR555 (16-bit images)
  499. COLOR_BGR5552GRAY = 31,
  500. COLOR_BGR2XYZ = 32, //!< convert RGB/BGR to CIE XYZ, @ref color_convert_rgb_xyz "color conversions"
  501. COLOR_RGB2XYZ = 33,
  502. COLOR_XYZ2BGR = 34,
  503. COLOR_XYZ2RGB = 35,
  504. COLOR_BGR2YCrCb = 36, //!< convert RGB/BGR to luma-chroma (aka YCC), @ref color_convert_rgb_ycrcb "color conversions"
  505. COLOR_RGB2YCrCb = 37,
  506. COLOR_YCrCb2BGR = 38,
  507. COLOR_YCrCb2RGB = 39,
  508. COLOR_BGR2HSV = 40, //!< convert RGB/BGR to HSV (hue saturation value) with H range 0..180 if 8 bit image, @ref color_convert_rgb_hsv "color conversions"
  509. COLOR_RGB2HSV = 41,
  510. COLOR_BGR2Lab = 44, //!< convert RGB/BGR to CIE Lab, @ref color_convert_rgb_lab "color conversions"
  511. COLOR_RGB2Lab = 45,
  512. COLOR_BGR2Luv = 50, //!< convert RGB/BGR to CIE Luv, @ref color_convert_rgb_luv "color conversions"
  513. COLOR_RGB2Luv = 51,
  514. COLOR_BGR2HLS = 52, //!< convert RGB/BGR to HLS (hue lightness saturation) with H range 0..180 if 8 bit image, @ref color_convert_rgb_hls "color conversions"
  515. COLOR_RGB2HLS = 53,
  516. COLOR_HSV2BGR = 54, //!< backward conversions HSV to RGB/BGR with H range 0..180 if 8 bit image
  517. COLOR_HSV2RGB = 55,
  518. COLOR_Lab2BGR = 56,
  519. COLOR_Lab2RGB = 57,
  520. COLOR_Luv2BGR = 58,
  521. COLOR_Luv2RGB = 59,
  522. COLOR_HLS2BGR = 60, //!< backward conversions HLS to RGB/BGR with H range 0..180 if 8 bit image
  523. COLOR_HLS2RGB = 61,
  524. COLOR_BGR2HSV_FULL = 66, //!< convert RGB/BGR to HSV (hue saturation value) with H range 0..255 if 8 bit image, @ref color_convert_rgb_hsv "color conversions"
  525. COLOR_RGB2HSV_FULL = 67,
  526. COLOR_BGR2HLS_FULL = 68, //!< convert RGB/BGR to HLS (hue lightness saturation) with H range 0..255 if 8 bit image, @ref color_convert_rgb_hls "color conversions"
  527. COLOR_RGB2HLS_FULL = 69,
  528. COLOR_HSV2BGR_FULL = 70, //!< backward conversions HSV to RGB/BGR with H range 0..255 if 8 bit image
  529. COLOR_HSV2RGB_FULL = 71,
  530. COLOR_HLS2BGR_FULL = 72, //!< backward conversions HLS to RGB/BGR with H range 0..255 if 8 bit image
  531. COLOR_HLS2RGB_FULL = 73,
  532. COLOR_LBGR2Lab = 74,
  533. COLOR_LRGB2Lab = 75,
  534. COLOR_LBGR2Luv = 76,
  535. COLOR_LRGB2Luv = 77,
  536. COLOR_Lab2LBGR = 78,
  537. COLOR_Lab2LRGB = 79,
  538. COLOR_Luv2LBGR = 80,
  539. COLOR_Luv2LRGB = 81,
  540. COLOR_BGR2YUV = 82, //!< convert between RGB/BGR and YUV
  541. COLOR_RGB2YUV = 83,
  542. COLOR_YUV2BGR = 84,
  543. COLOR_YUV2RGB = 85,
  544. //! YUV 4:2:0 family to RGB
  545. COLOR_YUV2RGB_NV12 = 90,
  546. COLOR_YUV2BGR_NV12 = 91,
  547. COLOR_YUV2RGB_NV21 = 92,
  548. COLOR_YUV2BGR_NV21 = 93,
  549. COLOR_YUV420sp2RGB = COLOR_YUV2RGB_NV21,
  550. COLOR_YUV420sp2BGR = COLOR_YUV2BGR_NV21,
  551. COLOR_YUV2RGBA_NV12 = 94,
  552. COLOR_YUV2BGRA_NV12 = 95,
  553. COLOR_YUV2RGBA_NV21 = 96,
  554. COLOR_YUV2BGRA_NV21 = 97,
  555. COLOR_YUV420sp2RGBA = COLOR_YUV2RGBA_NV21,
  556. COLOR_YUV420sp2BGRA = COLOR_YUV2BGRA_NV21,
  557. COLOR_YUV2RGB_YV12 = 98,
  558. COLOR_YUV2BGR_YV12 = 99,
  559. COLOR_YUV2RGB_IYUV = 100,
  560. COLOR_YUV2BGR_IYUV = 101,
  561. COLOR_YUV2RGB_I420 = COLOR_YUV2RGB_IYUV,
  562. COLOR_YUV2BGR_I420 = COLOR_YUV2BGR_IYUV,
  563. COLOR_YUV420p2RGB = COLOR_YUV2RGB_YV12,
  564. COLOR_YUV420p2BGR = COLOR_YUV2BGR_YV12,
  565. COLOR_YUV2RGBA_YV12 = 102,
  566. COLOR_YUV2BGRA_YV12 = 103,
  567. COLOR_YUV2RGBA_IYUV = 104,
  568. COLOR_YUV2BGRA_IYUV = 105,
  569. COLOR_YUV2RGBA_I420 = COLOR_YUV2RGBA_IYUV,
  570. COLOR_YUV2BGRA_I420 = COLOR_YUV2BGRA_IYUV,
  571. COLOR_YUV420p2RGBA = COLOR_YUV2RGBA_YV12,
  572. COLOR_YUV420p2BGRA = COLOR_YUV2BGRA_YV12,
  573. COLOR_YUV2GRAY_420 = 106,
  574. COLOR_YUV2GRAY_NV21 = COLOR_YUV2GRAY_420,
  575. COLOR_YUV2GRAY_NV12 = COLOR_YUV2GRAY_420,
  576. COLOR_YUV2GRAY_YV12 = COLOR_YUV2GRAY_420,
  577. COLOR_YUV2GRAY_IYUV = COLOR_YUV2GRAY_420,
  578. COLOR_YUV2GRAY_I420 = COLOR_YUV2GRAY_420,
  579. COLOR_YUV420sp2GRAY = COLOR_YUV2GRAY_420,
  580. COLOR_YUV420p2GRAY = COLOR_YUV2GRAY_420,
  581. //! YUV 4:2:2 family to RGB
  582. COLOR_YUV2RGB_UYVY = 107,
  583. COLOR_YUV2BGR_UYVY = 108,
  584. //COLOR_YUV2RGB_VYUY = 109,
  585. //COLOR_YUV2BGR_VYUY = 110,
  586. COLOR_YUV2RGB_Y422 = COLOR_YUV2RGB_UYVY,
  587. COLOR_YUV2BGR_Y422 = COLOR_YUV2BGR_UYVY,
  588. COLOR_YUV2RGB_UYNV = COLOR_YUV2RGB_UYVY,
  589. COLOR_YUV2BGR_UYNV = COLOR_YUV2BGR_UYVY,
  590. COLOR_YUV2RGBA_UYVY = 111,
  591. COLOR_YUV2BGRA_UYVY = 112,
  592. //COLOR_YUV2RGBA_VYUY = 113,
  593. //COLOR_YUV2BGRA_VYUY = 114,
  594. COLOR_YUV2RGBA_Y422 = COLOR_YUV2RGBA_UYVY,
  595. COLOR_YUV2BGRA_Y422 = COLOR_YUV2BGRA_UYVY,
  596. COLOR_YUV2RGBA_UYNV = COLOR_YUV2RGBA_UYVY,
  597. COLOR_YUV2BGRA_UYNV = COLOR_YUV2BGRA_UYVY,
  598. COLOR_YUV2RGB_YUY2 = 115,
  599. COLOR_YUV2BGR_YUY2 = 116,
  600. COLOR_YUV2RGB_YVYU = 117,
  601. COLOR_YUV2BGR_YVYU = 118,
  602. COLOR_YUV2RGB_YUYV = COLOR_YUV2RGB_YUY2,
  603. COLOR_YUV2BGR_YUYV = COLOR_YUV2BGR_YUY2,
  604. COLOR_YUV2RGB_YUNV = COLOR_YUV2RGB_YUY2,
  605. COLOR_YUV2BGR_YUNV = COLOR_YUV2BGR_YUY2,
  606. COLOR_YUV2RGBA_YUY2 = 119,
  607. COLOR_YUV2BGRA_YUY2 = 120,
  608. COLOR_YUV2RGBA_YVYU = 121,
  609. COLOR_YUV2BGRA_YVYU = 122,
  610. COLOR_YUV2RGBA_YUYV = COLOR_YUV2RGBA_YUY2,
  611. COLOR_YUV2BGRA_YUYV = COLOR_YUV2BGRA_YUY2,
  612. COLOR_YUV2RGBA_YUNV = COLOR_YUV2RGBA_YUY2,
  613. COLOR_YUV2BGRA_YUNV = COLOR_YUV2BGRA_YUY2,
  614. COLOR_YUV2GRAY_UYVY = 123,
  615. COLOR_YUV2GRAY_YUY2 = 124,
  616. //CV_YUV2GRAY_VYUY = CV_YUV2GRAY_UYVY,
  617. COLOR_YUV2GRAY_Y422 = COLOR_YUV2GRAY_UYVY,
  618. COLOR_YUV2GRAY_UYNV = COLOR_YUV2GRAY_UYVY,
  619. COLOR_YUV2GRAY_YVYU = COLOR_YUV2GRAY_YUY2,
  620. COLOR_YUV2GRAY_YUYV = COLOR_YUV2GRAY_YUY2,
  621. COLOR_YUV2GRAY_YUNV = COLOR_YUV2GRAY_YUY2,
  622. //! alpha premultiplication
  623. COLOR_RGBA2mRGBA = 125,
  624. COLOR_mRGBA2RGBA = 126,
  625. //! RGB to YUV 4:2:0 family
  626. COLOR_RGB2YUV_I420 = 127,
  627. COLOR_BGR2YUV_I420 = 128,
  628. COLOR_RGB2YUV_IYUV = COLOR_RGB2YUV_I420,
  629. COLOR_BGR2YUV_IYUV = COLOR_BGR2YUV_I420,
  630. COLOR_RGBA2YUV_I420 = 129,
  631. COLOR_BGRA2YUV_I420 = 130,
  632. COLOR_RGBA2YUV_IYUV = COLOR_RGBA2YUV_I420,
  633. COLOR_BGRA2YUV_IYUV = COLOR_BGRA2YUV_I420,
  634. COLOR_RGB2YUV_YV12 = 131,
  635. COLOR_BGR2YUV_YV12 = 132,
  636. COLOR_RGBA2YUV_YV12 = 133,
  637. COLOR_BGRA2YUV_YV12 = 134,
  638. //! Demosaicing
  639. COLOR_BayerBG2BGR = 46,
  640. COLOR_BayerGB2BGR = 47,
  641. COLOR_BayerRG2BGR = 48,
  642. COLOR_BayerGR2BGR = 49,
  643. COLOR_BayerBG2RGB = COLOR_BayerRG2BGR,
  644. COLOR_BayerGB2RGB = COLOR_BayerGR2BGR,
  645. COLOR_BayerRG2RGB = COLOR_BayerBG2BGR,
  646. COLOR_BayerGR2RGB = COLOR_BayerGB2BGR,
  647. COLOR_BayerBG2GRAY = 86,
  648. COLOR_BayerGB2GRAY = 87,
  649. COLOR_BayerRG2GRAY = 88,
  650. COLOR_BayerGR2GRAY = 89,
  651. //! Demosaicing using Variable Number of Gradients
  652. COLOR_BayerBG2BGR_VNG = 62,
  653. COLOR_BayerGB2BGR_VNG = 63,
  654. COLOR_BayerRG2BGR_VNG = 64,
  655. COLOR_BayerGR2BGR_VNG = 65,
  656. COLOR_BayerBG2RGB_VNG = COLOR_BayerRG2BGR_VNG,
  657. COLOR_BayerGB2RGB_VNG = COLOR_BayerGR2BGR_VNG,
  658. COLOR_BayerRG2RGB_VNG = COLOR_BayerBG2BGR_VNG,
  659. COLOR_BayerGR2RGB_VNG = COLOR_BayerGB2BGR_VNG,
  660. //! Edge-Aware Demosaicing
  661. COLOR_BayerBG2BGR_EA = 135,
  662. COLOR_BayerGB2BGR_EA = 136,
  663. COLOR_BayerRG2BGR_EA = 137,
  664. COLOR_BayerGR2BGR_EA = 138,
  665. COLOR_BayerBG2RGB_EA = COLOR_BayerRG2BGR_EA,
  666. COLOR_BayerGB2RGB_EA = COLOR_BayerGR2BGR_EA,
  667. COLOR_BayerRG2RGB_EA = COLOR_BayerBG2BGR_EA,
  668. COLOR_BayerGR2RGB_EA = COLOR_BayerGB2BGR_EA,
  669. //! Demosaicing with alpha channel
  670. COLOR_BayerBG2BGRA = 139,
  671. COLOR_BayerGB2BGRA = 140,
  672. COLOR_BayerRG2BGRA = 141,
  673. COLOR_BayerGR2BGRA = 142,
  674. COLOR_BayerBG2RGBA = COLOR_BayerRG2BGRA,
  675. COLOR_BayerGB2RGBA = COLOR_BayerGR2BGRA,
  676. COLOR_BayerRG2RGBA = COLOR_BayerBG2BGRA,
  677. COLOR_BayerGR2RGBA = COLOR_BayerGB2BGRA,
  678. COLOR_COLORCVT_MAX = 143
  679. };
  680. //! @addtogroup imgproc_shape
  681. //! @{
  682. //! types of intersection between rectangles
  683. enum RectanglesIntersectTypes {
  684. INTERSECT_NONE = 0, //!< No intersection
  685. INTERSECT_PARTIAL = 1, //!< There is a partial intersection
  686. INTERSECT_FULL = 2 //!< One of the rectangle is fully enclosed in the other
  687. };
  688. /** @brief finds arbitrary template in the grayscale image using Generalized Hough Transform
  689. */
  690. class CV_EXPORTS_W GeneralizedHough : public Algorithm
  691. {
  692. public:
  693. //! set template to search
  694. CV_WRAP virtual void setTemplate(InputArray templ, Point templCenter = Point(-1, -1)) = 0;
  695. CV_WRAP virtual void setTemplate(InputArray edges, InputArray dx, InputArray dy, Point templCenter = Point(-1, -1)) = 0;
  696. //! find template on image
  697. CV_WRAP virtual void detect(InputArray image, OutputArray positions, OutputArray votes = noArray()) = 0;
  698. CV_WRAP virtual void detect(InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes = noArray()) = 0;
  699. //! Canny low threshold.
  700. CV_WRAP virtual void setCannyLowThresh(int cannyLowThresh) = 0;
  701. CV_WRAP virtual int getCannyLowThresh() const = 0;
  702. //! Canny high threshold.
  703. CV_WRAP virtual void setCannyHighThresh(int cannyHighThresh) = 0;
  704. CV_WRAP virtual int getCannyHighThresh() const = 0;
  705. //! Minimum distance between the centers of the detected objects.
  706. CV_WRAP virtual void setMinDist(double minDist) = 0;
  707. CV_WRAP virtual double getMinDist() const = 0;
  708. //! Inverse ratio of the accumulator resolution to the image resolution.
  709. CV_WRAP virtual void setDp(double dp) = 0;
  710. CV_WRAP virtual double getDp() const = 0;
  711. //! Maximal size of inner buffers.
  712. CV_WRAP virtual void setMaxBufferSize(int maxBufferSize) = 0;
  713. CV_WRAP virtual int getMaxBufferSize() const = 0;
  714. };
  715. /** @brief finds arbitrary template in the grayscale image using Generalized Hough Transform
  716. Detects position only without translation and rotation @cite Ballard1981 .
  717. */
  718. class CV_EXPORTS_W GeneralizedHoughBallard : public GeneralizedHough
  719. {
  720. public:
  721. //! R-Table levels.
  722. CV_WRAP virtual void setLevels(int levels) = 0;
  723. CV_WRAP virtual int getLevels() const = 0;
  724. //! The accumulator threshold for the template centers at the detection stage. The smaller it is, the more false positions may be detected.
  725. CV_WRAP virtual void setVotesThreshold(int votesThreshold) = 0;
  726. CV_WRAP virtual int getVotesThreshold() const = 0;
  727. };
  728. /** @brief finds arbitrary template in the grayscale image using Generalized Hough Transform
  729. Detects position, translation and rotation @cite Guil1999 .
  730. */
  731. class CV_EXPORTS_W GeneralizedHoughGuil : public GeneralizedHough
  732. {
  733. public:
  734. //! Angle difference in degrees between two points in feature.
  735. CV_WRAP virtual void setXi(double xi) = 0;
  736. CV_WRAP virtual double getXi() const = 0;
  737. //! Feature table levels.
  738. CV_WRAP virtual void setLevels(int levels) = 0;
  739. CV_WRAP virtual int getLevels() const = 0;
  740. //! Maximal difference between angles that treated as equal.
  741. CV_WRAP virtual void setAngleEpsilon(double angleEpsilon) = 0;
  742. CV_WRAP virtual double getAngleEpsilon() const = 0;
  743. //! Minimal rotation angle to detect in degrees.
  744. CV_WRAP virtual void setMinAngle(double minAngle) = 0;
  745. CV_WRAP virtual double getMinAngle() const = 0;
  746. //! Maximal rotation angle to detect in degrees.
  747. CV_WRAP virtual void setMaxAngle(double maxAngle) = 0;
  748. CV_WRAP virtual double getMaxAngle() const = 0;
  749. //! Angle step in degrees.
  750. CV_WRAP virtual void setAngleStep(double angleStep) = 0;
  751. CV_WRAP virtual double getAngleStep() const = 0;
  752. //! Angle votes threshold.
  753. CV_WRAP virtual void setAngleThresh(int angleThresh) = 0;
  754. CV_WRAP virtual int getAngleThresh() const = 0;
  755. //! Minimal scale to detect.
  756. CV_WRAP virtual void setMinScale(double minScale) = 0;
  757. CV_WRAP virtual double getMinScale() const = 0;
  758. //! Maximal scale to detect.
  759. CV_WRAP virtual void setMaxScale(double maxScale) = 0;
  760. CV_WRAP virtual double getMaxScale() const = 0;
  761. //! Scale step.
  762. CV_WRAP virtual void setScaleStep(double scaleStep) = 0;
  763. CV_WRAP virtual double getScaleStep() const = 0;
  764. //! Scale votes threshold.
  765. CV_WRAP virtual void setScaleThresh(int scaleThresh) = 0;
  766. CV_WRAP virtual int getScaleThresh() const = 0;
  767. //! Position votes threshold.
  768. CV_WRAP virtual void setPosThresh(int posThresh) = 0;
  769. CV_WRAP virtual int getPosThresh() const = 0;
  770. };
  771. //! @} imgproc_shape
  772. //! @addtogroup imgproc_hist
  773. //! @{
  774. /** @brief Base class for Contrast Limited Adaptive Histogram Equalization.
  775. */
  776. class CV_EXPORTS_W CLAHE : public Algorithm
  777. {
  778. public:
  779. /** @brief Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.
  780. @param src Source image of type CV_8UC1 or CV_16UC1.
  781. @param dst Destination image.
  782. */
  783. CV_WRAP virtual void apply(InputArray src, OutputArray dst) = 0;
  784. /** @brief Sets threshold for contrast limiting.
  785. @param clipLimit threshold value.
  786. */
  787. CV_WRAP virtual void setClipLimit(double clipLimit) = 0;
  788. //! Returns threshold value for contrast limiting.
  789. CV_WRAP virtual double getClipLimit() const = 0;
  790. /** @brief Sets size of grid for histogram equalization. Input image will be divided into
  791. equally sized rectangular tiles.
  792. @param tileGridSize defines the number of tiles in row and column.
  793. */
  794. CV_WRAP virtual void setTilesGridSize(Size tileGridSize) = 0;
  795. //!@brief Returns Size defines the number of tiles in row and column.
  796. CV_WRAP virtual Size getTilesGridSize() const = 0;
  797. CV_WRAP virtual void collectGarbage() = 0;
  798. };
  799. //! @} imgproc_hist
  800. //! @addtogroup imgproc_subdiv2d
  801. //! @{
  802. class CV_EXPORTS_W Subdiv2D
  803. {
  804. public:
  805. /** Subdiv2D point location cases */
  806. enum { PTLOC_ERROR = -2, //!< Point location error
  807. PTLOC_OUTSIDE_RECT = -1, //!< Point outside the subdivision bounding rect
  808. PTLOC_INSIDE = 0, //!< Point inside some facet
  809. PTLOC_VERTEX = 1, //!< Point coincides with one of the subdivision vertices
  810. PTLOC_ON_EDGE = 2 //!< Point on some edge
  811. };
  812. /** Subdiv2D edge type navigation (see: getEdge()) */
  813. enum { NEXT_AROUND_ORG = 0x00,
  814. NEXT_AROUND_DST = 0x22,
  815. PREV_AROUND_ORG = 0x11,
  816. PREV_AROUND_DST = 0x33,
  817. NEXT_AROUND_LEFT = 0x13,
  818. NEXT_AROUND_RIGHT = 0x31,
  819. PREV_AROUND_LEFT = 0x20,
  820. PREV_AROUND_RIGHT = 0x02
  821. };
  822. /** creates an empty Subdiv2D object.
  823. To create a new empty Delaunay subdivision you need to use the #initDelaunay function.
  824. */
  825. CV_WRAP Subdiv2D();
  826. /** @overload
  827. @param rect Rectangle that includes all of the 2D points that are to be added to the subdivision.
  828. The function creates an empty Delaunay subdivision where 2D points can be added using the function
  829. insert() . All of the points to be added must be within the specified rectangle, otherwise a runtime
  830. error is raised.
  831. */
  832. CV_WRAP Subdiv2D(Rect rect);
  833. /** @brief Creates a new empty Delaunay subdivision
  834. @param rect Rectangle that includes all of the 2D points that are to be added to the subdivision.
  835. */
  836. CV_WRAP void initDelaunay(Rect rect);
  837. /** @brief Insert a single point into a Delaunay triangulation.
  838. @param pt Point to insert.
  839. The function inserts a single point into a subdivision and modifies the subdivision topology
  840. appropriately. If a point with the same coordinates exists already, no new point is added.
  841. @returns the ID of the point.
  842. @note If the point is outside of the triangulation specified rect a runtime error is raised.
  843. */
  844. CV_WRAP int insert(Point2f pt);
  845. /** @brief Insert multiple points into a Delaunay triangulation.
  846. @param ptvec Points to insert.
  847. The function inserts a vector of points into a subdivision and modifies the subdivision topology
  848. appropriately.
  849. */
  850. CV_WRAP void insert(const std::vector<Point2f>& ptvec);
  851. /** @brief Returns the location of a point within a Delaunay triangulation.
  852. @param pt Point to locate.
  853. @param edge Output edge that the point belongs to or is located to the right of it.
  854. @param vertex Optional output vertex the input point coincides with.
  855. The function locates the input point within the subdivision and gives one of the triangle edges
  856. or vertices.
  857. @returns an integer which specify one of the following five cases for point location:
  858. - The point falls into some facet. The function returns #PTLOC_INSIDE and edge will contain one of
  859. edges of the facet.
  860. - The point falls onto the edge. The function returns #PTLOC_ON_EDGE and edge will contain this edge.
  861. - The point coincides with one of the subdivision vertices. The function returns #PTLOC_VERTEX and
  862. vertex will contain a pointer to the vertex.
  863. - The point is outside the subdivision reference rectangle. The function returns #PTLOC_OUTSIDE_RECT
  864. and no pointers are filled.
  865. - One of input arguments is invalid. A runtime error is raised or, if silent or "parent" error
  866. processing mode is selected, #PTLOC_ERROR is returned.
  867. */
  868. CV_WRAP int locate(Point2f pt, CV_OUT int& edge, CV_OUT int& vertex);
  869. /** @brief Finds the subdivision vertex closest to the given point.
  870. @param pt Input point.
  871. @param nearestPt Output subdivision vertex point.
  872. The function is another function that locates the input point within the subdivision. It finds the
  873. subdivision vertex that is the closest to the input point. It is not necessarily one of vertices
  874. of the facet containing the input point, though the facet (located using locate() ) is used as a
  875. starting point.
  876. @returns vertex ID.
  877. */
  878. CV_WRAP int findNearest(Point2f pt, CV_OUT Point2f* nearestPt = 0);
  879. /** @brief Returns a list of all edges.
  880. @param edgeList Output vector.
  881. The function gives each edge as a 4 numbers vector, where each two are one of the edge
  882. vertices. i.e. org_x = v[0], org_y = v[1], dst_x = v[2], dst_y = v[3].
  883. */
  884. CV_WRAP void getEdgeList(CV_OUT std::vector<Vec4f>& edgeList) const;
  885. /** @brief Returns a list of the leading edge ID connected to each triangle.
  886. @param leadingEdgeList Output vector.
  887. The function gives one edge ID for each triangle.
  888. */
  889. CV_WRAP void getLeadingEdgeList(CV_OUT std::vector<int>& leadingEdgeList) const;
  890. /** @brief Returns a list of all triangles.
  891. @param triangleList Output vector.
  892. The function gives each triangle as a 6 numbers vector, where each two are one of the triangle
  893. vertices. i.e. p1_x = v[0], p1_y = v[1], p2_x = v[2], p2_y = v[3], p3_x = v[4], p3_y = v[5].
  894. */
  895. CV_WRAP void getTriangleList(CV_OUT std::vector<Vec6f>& triangleList) const;
  896. /** @brief Returns a list of all Voronoi facets.
  897. @param idx Vector of vertices IDs to consider. For all vertices you can pass empty vector.
  898. @param facetList Output vector of the Voronoi facets.
  899. @param facetCenters Output vector of the Voronoi facets center points.
  900. */
  901. CV_WRAP void getVoronoiFacetList(const std::vector<int>& idx, CV_OUT std::vector<std::vector<Point2f> >& facetList,
  902. CV_OUT std::vector<Point2f>& facetCenters);
  903. /** @brief Returns vertex location from vertex ID.
  904. @param vertex vertex ID.
  905. @param firstEdge Optional. The first edge ID which is connected to the vertex.
  906. @returns vertex (x,y)
  907. */
  908. CV_WRAP Point2f getVertex(int vertex, CV_OUT int* firstEdge = 0) const;
  909. /** @brief Returns one of the edges related to the given edge.
  910. @param edge Subdivision edge ID.
  911. @param nextEdgeType Parameter specifying which of the related edges to return.
  912. The following values are possible:
  913. - NEXT_AROUND_ORG next around the edge origin ( eOnext on the picture below if e is the input edge)
  914. - NEXT_AROUND_DST next around the edge vertex ( eDnext )
  915. - PREV_AROUND_ORG previous around the edge origin (reversed eRnext )
  916. - PREV_AROUND_DST previous around the edge destination (reversed eLnext )
  917. - NEXT_AROUND_LEFT next around the left facet ( eLnext )
  918. - NEXT_AROUND_RIGHT next around the right facet ( eRnext )
  919. - PREV_AROUND_LEFT previous around the left facet (reversed eOnext )
  920. - PREV_AROUND_RIGHT previous around the right facet (reversed eDnext )
  921. ![sample output](pics/quadedge.png)
  922. @returns edge ID related to the input edge.
  923. */
  924. CV_WRAP int getEdge( int edge, int nextEdgeType ) const;
  925. /** @brief Returns next edge around the edge origin.
  926. @param edge Subdivision edge ID.
  927. @returns an integer which is next edge ID around the edge origin: eOnext on the
  928. picture above if e is the input edge).
  929. */
  930. CV_WRAP int nextEdge(int edge) const;
  931. /** @brief Returns another edge of the same quad-edge.
  932. @param edge Subdivision edge ID.
  933. @param rotate Parameter specifying which of the edges of the same quad-edge as the input
  934. one to return. The following values are possible:
  935. - 0 - the input edge ( e on the picture below if e is the input edge)
  936. - 1 - the rotated edge ( eRot )
  937. - 2 - the reversed edge (reversed e (in green))
  938. - 3 - the reversed rotated edge (reversed eRot (in green))
  939. @returns one of the edges ID of the same quad-edge as the input edge.
  940. */
  941. CV_WRAP int rotateEdge(int edge, int rotate) const;
  942. CV_WRAP int symEdge(int edge) const;
  943. /** @brief Returns the edge origin.
  944. @param edge Subdivision edge ID.
  945. @param orgpt Output vertex location.
  946. @returns vertex ID.
  947. */
  948. CV_WRAP int edgeOrg(int edge, CV_OUT Point2f* orgpt = 0) const;
  949. /** @brief Returns the edge destination.
  950. @param edge Subdivision edge ID.
  951. @param dstpt Output vertex location.
  952. @returns vertex ID.
  953. */
  954. CV_WRAP int edgeDst(int edge, CV_OUT Point2f* dstpt = 0) const;
  955. protected:
  956. int newEdge();
  957. void deleteEdge(int edge);
  958. int newPoint(Point2f pt, bool isvirtual, int firstEdge = 0);
  959. void deletePoint(int vtx);
  960. void setEdgePoints( int edge, int orgPt, int dstPt );
  961. void splice( int edgeA, int edgeB );
  962. int connectEdges( int edgeA, int edgeB );
  963. void swapEdges( int edge );
  964. int isRightOf(Point2f pt, int edge) const;
  965. void calcVoronoi();
  966. void clearVoronoi();
  967. void checkSubdiv() const;
  968. struct CV_EXPORTS Vertex
  969. {
  970. Vertex();
  971. Vertex(Point2f pt, bool _isvirtual, int _firstEdge=0);
  972. bool isvirtual() const;
  973. bool isfree() const;
  974. int firstEdge;
  975. int type;
  976. Point2f pt;
  977. };
  978. struct CV_EXPORTS QuadEdge
  979. {
  980. QuadEdge();
  981. QuadEdge(int edgeidx);
  982. bool isfree() const;
  983. int next[4];
  984. int pt[4];
  985. };
  986. //! All of the vertices
  987. std::vector<Vertex> vtx;
  988. //! All of the edges
  989. std::vector<QuadEdge> qedges;
  990. int freeQEdge;
  991. int freePoint;
  992. bool validGeometry;
  993. int recentEdge;
  994. //! Top left corner of the bounding rect
  995. Point2f topLeft;
  996. //! Bottom right corner of the bounding rect
  997. Point2f bottomRight;
  998. };
  999. //! @} imgproc_subdiv2d
  1000. //! @addtogroup imgproc_feature
  1001. //! @{
  1002. /** @brief Line segment detector class
  1003. following the algorithm described at @cite Rafael12 .
  1004. @note Implementation has been removed due original code license conflict
  1005. */
  1006. class CV_EXPORTS_W LineSegmentDetector : public Algorithm
  1007. {
  1008. public:
  1009. /** @brief Finds lines in the input image.
  1010. This is the output of the default parameters of the algorithm on the above shown image.
  1011. ![image](pics/building_lsd.png)
  1012. @param _image A grayscale (CV_8UC1) input image. If only a roi needs to be selected, use:
  1013. `lsd_ptr-\>detect(image(roi), lines, ...); lines += Scalar(roi.x, roi.y, roi.x, roi.y);`
  1014. @param _lines A vector of Vec4i or Vec4f elements specifying the beginning and ending point of a line. Where
  1015. Vec4i/Vec4f is (x1, y1, x2, y2), point 1 is the start, point 2 - end. Returned lines are strictly
  1016. oriented depending on the gradient.
  1017. @param width Vector of widths of the regions, where the lines are found. E.g. Width of line.
  1018. @param prec Vector of precisions with which the lines are found.
  1019. @param nfa Vector containing number of false alarms in the line region, with precision of 10%. The
  1020. bigger the value, logarithmically better the detection.
  1021. - -1 corresponds to 10 mean false alarms
  1022. - 0 corresponds to 1 mean false alarm
  1023. - 1 corresponds to 0.1 mean false alarms
  1024. This vector will be calculated only when the objects type is #LSD_REFINE_ADV.
  1025. */
  1026. CV_WRAP virtual void detect(InputArray _image, OutputArray _lines,
  1027. OutputArray width = noArray(), OutputArray prec = noArray(),
  1028. OutputArray nfa = noArray()) = 0;
  1029. /** @brief Draws the line segments on a given image.
  1030. @param _image The image, where the lines will be drawn. Should be bigger or equal to the image,
  1031. where the lines were found.
  1032. @param lines A vector of the lines that needed to be drawn.
  1033. */
  1034. CV_WRAP virtual void drawSegments(InputOutputArray _image, InputArray lines) = 0;
  1035. /** @brief Draws two groups of lines in blue and red, counting the non overlapping (mismatching) pixels.
  1036. @param size The size of the image, where lines1 and lines2 were found.
  1037. @param lines1 The first group of lines that needs to be drawn. It is visualized in blue color.
  1038. @param lines2 The second group of lines. They visualized in red color.
  1039. @param _image Optional image, where the lines will be drawn. The image should be color(3-channel)
  1040. in order for lines1 and lines2 to be drawn in the above mentioned colors.
  1041. */
  1042. CV_WRAP virtual int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputOutputArray _image = noArray()) = 0;
  1043. virtual ~LineSegmentDetector() { }
  1044. };
  1045. /** @brief Creates a smart pointer to a LineSegmentDetector object and initializes it.
  1046. The LineSegmentDetector algorithm is defined using the standard values. Only advanced users may want
  1047. to edit those, as to tailor it for their own application.
  1048. @param _refine The way found lines will be refined, see #LineSegmentDetectorModes
  1049. @param _scale The scale of the image that will be used to find the lines. Range (0..1].
  1050. @param _sigma_scale Sigma for Gaussian filter. It is computed as sigma = _sigma_scale/_scale.
  1051. @param _quant Bound to the quantization error on the gradient norm.
  1052. @param _ang_th Gradient angle tolerance in degrees.
  1053. @param _log_eps Detection threshold: -log10(NFA) \> log_eps. Used only when advance refinement
  1054. is chosen.
  1055. @param _density_th Minimal density of aligned region points in the enclosing rectangle.
  1056. @param _n_bins Number of bins in pseudo-ordering of gradient modulus.
  1057. @note Implementation has been removed due original code license conflict
  1058. */
  1059. CV_EXPORTS_W Ptr<LineSegmentDetector> createLineSegmentDetector(
  1060. int _refine = LSD_REFINE_STD, double _scale = 0.8,
  1061. double _sigma_scale = 0.6, double _quant = 2.0, double _ang_th = 22.5,
  1062. double _log_eps = 0, double _density_th = 0.7, int _n_bins = 1024);
  1063. //! @} imgproc_feature
  1064. //! @addtogroup imgproc_filter
  1065. //! @{
  1066. /** @brief Returns Gaussian filter coefficients.
  1067. The function computes and returns the \f$\texttt{ksize} \times 1\f$ matrix of Gaussian filter
  1068. coefficients:
  1069. \f[G_i= \alpha *e^{-(i-( \texttt{ksize} -1)/2)^2/(2* \texttt{sigma}^2)},\f]
  1070. where \f$i=0..\texttt{ksize}-1\f$ and \f$\alpha\f$ is the scale factor chosen so that \f$\sum_i G_i=1\f$.
  1071. Two of such generated kernels can be passed to sepFilter2D. Those functions automatically recognize
  1072. smoothing kernels (a symmetrical kernel with sum of weights equal to 1) and handle them accordingly.
  1073. You may also use the higher-level GaussianBlur.
  1074. @param ksize Aperture size. It should be odd ( \f$\texttt{ksize} \mod 2 = 1\f$ ) and positive.
  1075. @param sigma Gaussian standard deviation. If it is non-positive, it is computed from ksize as
  1076. `sigma = 0.3*((ksize-1)*0.5 - 1) + 0.8`.
  1077. @param ktype Type of filter coefficients. It can be CV_32F or CV_64F .
  1078. @sa sepFilter2D, getDerivKernels, getStructuringElement, GaussianBlur
  1079. */
  1080. CV_EXPORTS_W Mat getGaussianKernel( int ksize, double sigma, int ktype = CV_64F );
  1081. /** @brief Returns filter coefficients for computing spatial image derivatives.
  1082. The function computes and returns the filter coefficients for spatial image derivatives. When
  1083. `ksize=CV_SCHARR`, the Scharr \f$3 \times 3\f$ kernels are generated (see #Scharr). Otherwise, Sobel
  1084. kernels are generated (see #Sobel). The filters are normally passed to #sepFilter2D or to
  1085. @param kx Output matrix of row filter coefficients. It has the type ktype .
  1086. @param ky Output matrix of column filter coefficients. It has the type ktype .
  1087. @param dx Derivative order in respect of x.
  1088. @param dy Derivative order in respect of y.
  1089. @param ksize Aperture size. It can be CV_SCHARR, 1, 3, 5, or 7.
  1090. @param normalize Flag indicating whether to normalize (scale down) the filter coefficients or not.
  1091. Theoretically, the coefficients should have the denominator \f$=2^{ksize*2-dx-dy-2}\f$. If you are
  1092. going to filter floating-point images, you are likely to use the normalized kernels. But if you
  1093. compute derivatives of an 8-bit image, store the results in a 16-bit image, and wish to preserve
  1094. all the fractional bits, you may want to set normalize=false .
  1095. @param ktype Type of filter coefficients. It can be CV_32f or CV_64F .
  1096. */
  1097. CV_EXPORTS_W void getDerivKernels( OutputArray kx, OutputArray ky,
  1098. int dx, int dy, int ksize,
  1099. bool normalize = false, int ktype = CV_32F );
  1100. /** @brief Returns Gabor filter coefficients.
  1101. For more details about gabor filter equations and parameters, see: [Gabor
  1102. Filter](http://en.wikipedia.org/wiki/Gabor_filter).
  1103. @param ksize Size of the filter returned.
  1104. @param sigma Standard deviation of the gaussian envelope.
  1105. @param theta Orientation of the normal to the parallel stripes of a Gabor function.
  1106. @param lambd Wavelength of the sinusoidal factor.
  1107. @param gamma Spatial aspect ratio.
  1108. @param psi Phase offset.
  1109. @param ktype Type of filter coefficients. It can be CV_32F or CV_64F .
  1110. */
  1111. CV_EXPORTS_W Mat getGaborKernel( Size ksize, double sigma, double theta, double lambd,
  1112. double gamma, double psi = CV_PI*0.5, int ktype = CV_64F );
  1113. //! returns "magic" border value for erosion and dilation. It is automatically transformed to Scalar::all(-DBL_MAX) for dilation.
  1114. static inline Scalar morphologyDefaultBorderValue() { return Scalar::all(DBL_MAX); }
  1115. /** @brief Returns a structuring element of the specified size and shape for morphological operations.
  1116. The function constructs and returns the structuring element that can be further passed to #erode,
  1117. #dilate or #morphologyEx. But you can also construct an arbitrary binary mask yourself and use it as
  1118. the structuring element.
  1119. @param shape Element shape that could be one of #MorphShapes
  1120. @param ksize Size of the structuring element.
  1121. @param anchor Anchor position within the element. The default value \f$(-1, -1)\f$ means that the
  1122. anchor is at the center. Note that only the shape of a cross-shaped element depends on the anchor
  1123. position. In other cases the anchor just regulates how much the result of the morphological
  1124. operation is shifted.
  1125. */
  1126. CV_EXPORTS_W Mat getStructuringElement(int shape, Size ksize, Point anchor = Point(-1,-1));
  1127. /** @example samples/cpp/tutorial_code/ImgProc/Smoothing/Smoothing.cpp
  1128. Sample code for simple filters
  1129. ![Sample screenshot](Smoothing_Tutorial_Result_Median_Filter.jpg)
  1130. Check @ref tutorial_gausian_median_blur_bilateral_filter "the corresponding tutorial" for more details
  1131. */
  1132. /** @brief Blurs an image using the median filter.
  1133. The function smoothes an image using the median filter with the \f$\texttt{ksize} \times
  1134. \texttt{ksize}\f$ aperture. Each channel of a multi-channel image is processed independently.
  1135. In-place operation is supported.
  1136. @note The median filter uses #BORDER_REPLICATE internally to cope with border pixels, see #BorderTypes
  1137. @param src input 1-, 3-, or 4-channel image; when ksize is 3 or 5, the image depth should be
  1138. CV_8U, CV_16U, or CV_32F, for larger aperture sizes, it can only be CV_8U.
  1139. @param dst destination array of the same size and type as src.
  1140. @param ksize aperture linear size; it must be odd and greater than 1, for example: 3, 5, 7 ...
  1141. @sa bilateralFilter, blur, boxFilter, GaussianBlur
  1142. */
  1143. CV_EXPORTS_W void medianBlur( InputArray src, OutputArray dst, int ksize );
  1144. /** @brief Blurs an image using a Gaussian filter.
  1145. The function convolves the source image with the specified Gaussian kernel. In-place filtering is
  1146. supported.
  1147. @param src input image; the image can have any number of channels, which are processed
  1148. independently, but the depth should be CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
  1149. @param dst output image of the same size and type as src.
  1150. @param ksize Gaussian kernel size. ksize.width and ksize.height can differ but they both must be
  1151. positive and odd. Or, they can be zero's and then they are computed from sigma.
  1152. @param sigmaX Gaussian kernel standard deviation in X direction.
  1153. @param sigmaY Gaussian kernel standard deviation in Y direction; if sigmaY is zero, it is set to be
  1154. equal to sigmaX, if both sigmas are zeros, they are computed from ksize.width and ksize.height,
  1155. respectively (see #getGaussianKernel for details); to fully control the result regardless of
  1156. possible future modifications of all this semantics, it is recommended to specify all of ksize,
  1157. sigmaX, and sigmaY.
  1158. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1159. @sa sepFilter2D, filter2D, blur, boxFilter, bilateralFilter, medianBlur
  1160. */
  1161. CV_EXPORTS_W void GaussianBlur( InputArray src, OutputArray dst, Size ksize,
  1162. double sigmaX, double sigmaY = 0,
  1163. int borderType = BORDER_DEFAULT );
  1164. /** @brief Applies the bilateral filter to an image.
  1165. The function applies bilateral filtering to the input image, as described in
  1166. http://www.dai.ed.ac.uk/CVonline/LOCAL_COPIES/MANDUCHI1/Bilateral_Filtering.html
  1167. bilateralFilter can reduce unwanted noise very well while keeping edges fairly sharp. However, it is
  1168. very slow compared to most filters.
  1169. _Sigma values_: For simplicity, you can set the 2 sigma values to be the same. If they are small (\<
  1170. 10), the filter will not have much effect, whereas if they are large (\> 150), they will have a very
  1171. strong effect, making the image look "cartoonish".
  1172. _Filter size_: Large filters (d \> 5) are very slow, so it is recommended to use d=5 for real-time
  1173. applications, and perhaps d=9 for offline applications that need heavy noise filtering.
  1174. This filter does not work inplace.
  1175. @param src Source 8-bit or floating-point, 1-channel or 3-channel image.
  1176. @param dst Destination image of the same size and type as src .
  1177. @param d Diameter of each pixel neighborhood that is used during filtering. If it is non-positive,
  1178. it is computed from sigmaSpace.
  1179. @param sigmaColor Filter sigma in the color space. A larger value of the parameter means that
  1180. farther colors within the pixel neighborhood (see sigmaSpace) will be mixed together, resulting
  1181. in larger areas of semi-equal color.
  1182. @param sigmaSpace Filter sigma in the coordinate space. A larger value of the parameter means that
  1183. farther pixels will influence each other as long as their colors are close enough (see sigmaColor
  1184. ). When d\>0, it specifies the neighborhood size regardless of sigmaSpace. Otherwise, d is
  1185. proportional to sigmaSpace.
  1186. @param borderType border mode used to extrapolate pixels outside of the image, see #BorderTypes
  1187. */
  1188. CV_EXPORTS_W void bilateralFilter( InputArray src, OutputArray dst, int d,
  1189. double sigmaColor, double sigmaSpace,
  1190. int borderType = BORDER_DEFAULT );
  1191. /** @brief Blurs an image using the box filter.
  1192. The function smooths an image using the kernel:
  1193. \f[\texttt{K} = \alpha \begin{bmatrix} 1 & 1 & 1 & \cdots & 1 & 1 \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \hdotsfor{6} \\ 1 & 1 & 1 & \cdots & 1 & 1 \end{bmatrix}\f]
  1194. where
  1195. \f[\alpha = \begin{cases} \frac{1}{\texttt{ksize.width*ksize.height}} & \texttt{when } \texttt{normalize=true} \\1 & \texttt{otherwise}\end{cases}\f]
  1196. Unnormalized box filter is useful for computing various integral characteristics over each pixel
  1197. neighborhood, such as covariance matrices of image derivatives (used in dense optical flow
  1198. algorithms, and so on). If you need to compute pixel sums over variable-size windows, use #integral.
  1199. @param src input image.
  1200. @param dst output image of the same size and type as src.
  1201. @param ddepth the output image depth (-1 to use src.depth()).
  1202. @param ksize blurring kernel size.
  1203. @param anchor anchor point; default value Point(-1,-1) means that the anchor is at the kernel
  1204. center.
  1205. @param normalize flag, specifying whether the kernel is normalized by its area or not.
  1206. @param borderType border mode used to extrapolate pixels outside of the image, see #BorderTypes. #BORDER_WRAP is not supported.
  1207. @sa blur, bilateralFilter, GaussianBlur, medianBlur, integral
  1208. */
  1209. CV_EXPORTS_W void boxFilter( InputArray src, OutputArray dst, int ddepth,
  1210. Size ksize, Point anchor = Point(-1,-1),
  1211. bool normalize = true,
  1212. int borderType = BORDER_DEFAULT );
  1213. /** @brief Calculates the normalized sum of squares of the pixel values overlapping the filter.
  1214. For every pixel \f$ (x, y) \f$ in the source image, the function calculates the sum of squares of those neighboring
  1215. pixel values which overlap the filter placed over the pixel \f$ (x, y) \f$.
  1216. The unnormalized square box filter can be useful in computing local image statistics such as the the local
  1217. variance and standard deviation around the neighborhood of a pixel.
  1218. @param src input image
  1219. @param dst output image of the same size and type as _src
  1220. @param ddepth the output image depth (-1 to use src.depth())
  1221. @param ksize kernel size
  1222. @param anchor kernel anchor point. The default value of Point(-1, -1) denotes that the anchor is at the kernel
  1223. center.
  1224. @param normalize flag, specifying whether the kernel is to be normalized by it's area or not.
  1225. @param borderType border mode used to extrapolate pixels outside of the image, see #BorderTypes. #BORDER_WRAP is not supported.
  1226. @sa boxFilter
  1227. */
  1228. CV_EXPORTS_W void sqrBoxFilter( InputArray src, OutputArray dst, int ddepth,
  1229. Size ksize, Point anchor = Point(-1, -1),
  1230. bool normalize = true,
  1231. int borderType = BORDER_DEFAULT );
  1232. /** @brief Blurs an image using the normalized box filter.
  1233. The function smooths an image using the kernel:
  1234. \f[\texttt{K} = \frac{1}{\texttt{ksize.width*ksize.height}} \begin{bmatrix} 1 & 1 & 1 & \cdots & 1 & 1 \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \hdotsfor{6} \\ 1 & 1 & 1 & \cdots & 1 & 1 \\ \end{bmatrix}\f]
  1235. The call `blur(src, dst, ksize, anchor, borderType)` is equivalent to `boxFilter(src, dst, src.type(), ksize,
  1236. anchor, true, borderType)`.
  1237. @param src input image; it can have any number of channels, which are processed independently, but
  1238. the depth should be CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
  1239. @param dst output image of the same size and type as src.
  1240. @param ksize blurring kernel size.
  1241. @param anchor anchor point; default value Point(-1,-1) means that the anchor is at the kernel
  1242. center.
  1243. @param borderType border mode used to extrapolate pixels outside of the image, see #BorderTypes. #BORDER_WRAP is not supported.
  1244. @sa boxFilter, bilateralFilter, GaussianBlur, medianBlur
  1245. */
  1246. CV_EXPORTS_W void blur( InputArray src, OutputArray dst,
  1247. Size ksize, Point anchor = Point(-1,-1),
  1248. int borderType = BORDER_DEFAULT );
  1249. /** @brief Convolves an image with the kernel.
  1250. The function applies an arbitrary linear filter to an image. In-place operation is supported. When
  1251. the aperture is partially outside the image, the function interpolates outlier pixel values
  1252. according to the specified border mode.
  1253. The function does actually compute correlation, not the convolution:
  1254. \f[\texttt{dst} (x,y) = \sum _{ \substack{0\leq x' < \texttt{kernel.cols}\\{0\leq y' < \texttt{kernel.rows}}}} \texttt{kernel} (x',y')* \texttt{src} (x+x'- \texttt{anchor.x} ,y+y'- \texttt{anchor.y} )\f]
  1255. That is, the kernel is not mirrored around the anchor point. If you need a real convolution, flip
  1256. the kernel using #flip and set the new anchor to `(kernel.cols - anchor.x - 1, kernel.rows -
  1257. anchor.y - 1)`.
  1258. The function uses the DFT-based algorithm in case of sufficiently large kernels (~`11 x 11` or
  1259. larger) and the direct algorithm for small kernels.
  1260. @param src input image.
  1261. @param dst output image of the same size and the same number of channels as src.
  1262. @param ddepth desired depth of the destination image, see @ref filter_depths "combinations"
  1263. @param kernel convolution kernel (or rather a correlation kernel), a single-channel floating point
  1264. matrix; if you want to apply different kernels to different channels, split the image into
  1265. separate color planes using split and process them individually.
  1266. @param anchor anchor of the kernel that indicates the relative position of a filtered point within
  1267. the kernel; the anchor should lie within the kernel; default value (-1,-1) means that the anchor
  1268. is at the kernel center.
  1269. @param delta optional value added to the filtered pixels before storing them in dst.
  1270. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1271. @sa sepFilter2D, dft, matchTemplate
  1272. */
  1273. CV_EXPORTS_W void filter2D( InputArray src, OutputArray dst, int ddepth,
  1274. InputArray kernel, Point anchor = Point(-1,-1),
  1275. double delta = 0, int borderType = BORDER_DEFAULT );
  1276. /** @brief Applies a separable linear filter to an image.
  1277. The function applies a separable linear filter to the image. That is, first, every row of src is
  1278. filtered with the 1D kernel kernelX. Then, every column of the result is filtered with the 1D
  1279. kernel kernelY. The final result shifted by delta is stored in dst .
  1280. @param src Source image.
  1281. @param dst Destination image of the same size and the same number of channels as src .
  1282. @param ddepth Destination image depth, see @ref filter_depths "combinations"
  1283. @param kernelX Coefficients for filtering each row.
  1284. @param kernelY Coefficients for filtering each column.
  1285. @param anchor Anchor position within the kernel. The default value \f$(-1,-1)\f$ means that the anchor
  1286. is at the kernel center.
  1287. @param delta Value added to the filtered results before storing them.
  1288. @param borderType Pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1289. @sa filter2D, Sobel, GaussianBlur, boxFilter, blur
  1290. */
  1291. CV_EXPORTS_W void sepFilter2D( InputArray src, OutputArray dst, int ddepth,
  1292. InputArray kernelX, InputArray kernelY,
  1293. Point anchor = Point(-1,-1),
  1294. double delta = 0, int borderType = BORDER_DEFAULT );
  1295. /** @example samples/cpp/tutorial_code/ImgTrans/Sobel_Demo.cpp
  1296. Sample code using Sobel and/or Scharr OpenCV functions to make a simple Edge Detector
  1297. ![Sample screenshot](Sobel_Derivatives_Tutorial_Result.jpg)
  1298. Check @ref tutorial_sobel_derivatives "the corresponding tutorial" for more details
  1299. */
  1300. /** @brief Calculates the first, second, third, or mixed image derivatives using an extended Sobel operator.
  1301. In all cases except one, the \f$\texttt{ksize} \times \texttt{ksize}\f$ separable kernel is used to
  1302. calculate the derivative. When \f$\texttt{ksize = 1}\f$, the \f$3 \times 1\f$ or \f$1 \times 3\f$
  1303. kernel is used (that is, no Gaussian smoothing is done). `ksize = 1` can only be used for the first
  1304. or the second x- or y- derivatives.
  1305. There is also the special value `ksize = #CV_SCHARR (-1)` that corresponds to the \f$3\times3\f$ Scharr
  1306. filter that may give more accurate results than the \f$3\times3\f$ Sobel. The Scharr aperture is
  1307. \f[\vecthreethree{-3}{0}{3}{-10}{0}{10}{-3}{0}{3}\f]
  1308. for the x-derivative, or transposed for the y-derivative.
  1309. The function calculates an image derivative by convolving the image with the appropriate kernel:
  1310. \f[\texttt{dst} = \frac{\partial^{xorder+yorder} \texttt{src}}{\partial x^{xorder} \partial y^{yorder}}\f]
  1311. The Sobel operators combine Gaussian smoothing and differentiation, so the result is more or less
  1312. resistant to the noise. Most often, the function is called with ( xorder = 1, yorder = 0, ksize = 3)
  1313. or ( xorder = 0, yorder = 1, ksize = 3) to calculate the first x- or y- image derivative. The first
  1314. case corresponds to a kernel of:
  1315. \f[\vecthreethree{-1}{0}{1}{-2}{0}{2}{-1}{0}{1}\f]
  1316. The second case corresponds to a kernel of:
  1317. \f[\vecthreethree{-1}{-2}{-1}{0}{0}{0}{1}{2}{1}\f]
  1318. @param src input image.
  1319. @param dst output image of the same size and the same number of channels as src .
  1320. @param ddepth output image depth, see @ref filter_depths "combinations"; in the case of
  1321. 8-bit input images it will result in truncated derivatives.
  1322. @param dx order of the derivative x.
  1323. @param dy order of the derivative y.
  1324. @param ksize size of the extended Sobel kernel; it must be 1, 3, 5, or 7.
  1325. @param scale optional scale factor for the computed derivative values; by default, no scaling is
  1326. applied (see #getDerivKernels for details).
  1327. @param delta optional delta value that is added to the results prior to storing them in dst.
  1328. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1329. @sa Scharr, Laplacian, sepFilter2D, filter2D, GaussianBlur, cartToPolar
  1330. */
  1331. CV_EXPORTS_W void Sobel( InputArray src, OutputArray dst, int ddepth,
  1332. int dx, int dy, int ksize = 3,
  1333. double scale = 1, double delta = 0,
  1334. int borderType = BORDER_DEFAULT );
  1335. /** @brief Calculates the first order image derivative in both x and y using a Sobel operator
  1336. Equivalent to calling:
  1337. @code
  1338. Sobel( src, dx, CV_16SC1, 1, 0, 3 );
  1339. Sobel( src, dy, CV_16SC1, 0, 1, 3 );
  1340. @endcode
  1341. @param src input image.
  1342. @param dx output image with first-order derivative in x.
  1343. @param dy output image with first-order derivative in y.
  1344. @param ksize size of Sobel kernel. It must be 3.
  1345. @param borderType pixel extrapolation method, see #BorderTypes.
  1346. Only #BORDER_DEFAULT=#BORDER_REFLECT_101 and #BORDER_REPLICATE are supported.
  1347. @sa Sobel
  1348. */
  1349. CV_EXPORTS_W void spatialGradient( InputArray src, OutputArray dx,
  1350. OutputArray dy, int ksize = 3,
  1351. int borderType = BORDER_DEFAULT );
  1352. /** @brief Calculates the first x- or y- image derivative using Scharr operator.
  1353. The function computes the first x- or y- spatial image derivative using the Scharr operator. The
  1354. call
  1355. \f[\texttt{Scharr(src, dst, ddepth, dx, dy, scale, delta, borderType)}\f]
  1356. is equivalent to
  1357. \f[\texttt{Sobel(src, dst, ddepth, dx, dy, CV_SCHARR, scale, delta, borderType)} .\f]
  1358. @param src input image.
  1359. @param dst output image of the same size and the same number of channels as src.
  1360. @param ddepth output image depth, see @ref filter_depths "combinations"
  1361. @param dx order of the derivative x.
  1362. @param dy order of the derivative y.
  1363. @param scale optional scale factor for the computed derivative values; by default, no scaling is
  1364. applied (see #getDerivKernels for details).
  1365. @param delta optional delta value that is added to the results prior to storing them in dst.
  1366. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1367. @sa cartToPolar
  1368. */
  1369. CV_EXPORTS_W void Scharr( InputArray src, OutputArray dst, int ddepth,
  1370. int dx, int dy, double scale = 1, double delta = 0,
  1371. int borderType = BORDER_DEFAULT );
  1372. /** @example samples/cpp/laplace.cpp
  1373. An example using Laplace transformations for edge detection
  1374. */
  1375. /** @brief Calculates the Laplacian of an image.
  1376. The function calculates the Laplacian of the source image by adding up the second x and y
  1377. derivatives calculated using the Sobel operator:
  1378. \f[\texttt{dst} = \Delta \texttt{src} = \frac{\partial^2 \texttt{src}}{\partial x^2} + \frac{\partial^2 \texttt{src}}{\partial y^2}\f]
  1379. This is done when `ksize > 1`. When `ksize == 1`, the Laplacian is computed by filtering the image
  1380. with the following \f$3 \times 3\f$ aperture:
  1381. \f[\vecthreethree {0}{1}{0}{1}{-4}{1}{0}{1}{0}\f]
  1382. @param src Source image.
  1383. @param dst Destination image of the same size and the same number of channels as src .
  1384. @param ddepth Desired depth of the destination image.
  1385. @param ksize Aperture size used to compute the second-derivative filters. See #getDerivKernels for
  1386. details. The size must be positive and odd.
  1387. @param scale Optional scale factor for the computed Laplacian values. By default, no scaling is
  1388. applied. See #getDerivKernels for details.
  1389. @param delta Optional delta value that is added to the results prior to storing them in dst .
  1390. @param borderType Pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1391. @sa Sobel, Scharr
  1392. */
  1393. CV_EXPORTS_W void Laplacian( InputArray src, OutputArray dst, int ddepth,
  1394. int ksize = 1, double scale = 1, double delta = 0,
  1395. int borderType = BORDER_DEFAULT );
  1396. //! @} imgproc_filter
  1397. //! @addtogroup imgproc_feature
  1398. //! @{
  1399. /** @example samples/cpp/edge.cpp
  1400. This program demonstrates usage of the Canny edge detector
  1401. Check @ref tutorial_canny_detector "the corresponding tutorial" for more details
  1402. */
  1403. /** @brief Finds edges in an image using the Canny algorithm @cite Canny86 .
  1404. The function finds edges in the input image and marks them in the output map edges using the
  1405. Canny algorithm. The smallest value between threshold1 and threshold2 is used for edge linking. The
  1406. largest value is used to find initial segments of strong edges. See
  1407. <http://en.wikipedia.org/wiki/Canny_edge_detector>
  1408. @param image 8-bit input image.
  1409. @param edges output edge map; single channels 8-bit image, which has the same size as image .
  1410. @param threshold1 first threshold for the hysteresis procedure.
  1411. @param threshold2 second threshold for the hysteresis procedure.
  1412. @param apertureSize aperture size for the Sobel operator.
  1413. @param L2gradient a flag, indicating whether a more accurate \f$L_2\f$ norm
  1414. \f$=\sqrt{(dI/dx)^2 + (dI/dy)^2}\f$ should be used to calculate the image gradient magnitude (
  1415. L2gradient=true ), or whether the default \f$L_1\f$ norm \f$=|dI/dx|+|dI/dy|\f$ is enough (
  1416. L2gradient=false ).
  1417. */
  1418. CV_EXPORTS_W void Canny( InputArray image, OutputArray edges,
  1419. double threshold1, double threshold2,
  1420. int apertureSize = 3, bool L2gradient = false );
  1421. /** \overload
  1422. Finds edges in an image using the Canny algorithm with custom image gradient.
  1423. @param dx 16-bit x derivative of input image (CV_16SC1 or CV_16SC3).
  1424. @param dy 16-bit y derivative of input image (same type as dx).
  1425. @param edges output edge map; single channels 8-bit image, which has the same size as image .
  1426. @param threshold1 first threshold for the hysteresis procedure.
  1427. @param threshold2 second threshold for the hysteresis procedure.
  1428. @param L2gradient a flag, indicating whether a more accurate \f$L_2\f$ norm
  1429. \f$=\sqrt{(dI/dx)^2 + (dI/dy)^2}\f$ should be used to calculate the image gradient magnitude (
  1430. L2gradient=true ), or whether the default \f$L_1\f$ norm \f$=|dI/dx|+|dI/dy|\f$ is enough (
  1431. L2gradient=false ).
  1432. */
  1433. CV_EXPORTS_W void Canny( InputArray dx, InputArray dy,
  1434. OutputArray edges,
  1435. double threshold1, double threshold2,
  1436. bool L2gradient = false );
  1437. /** @brief Calculates the minimal eigenvalue of gradient matrices for corner detection.
  1438. The function is similar to cornerEigenValsAndVecs but it calculates and stores only the minimal
  1439. eigenvalue of the covariance matrix of derivatives, that is, \f$\min(\lambda_1, \lambda_2)\f$ in terms
  1440. of the formulae in the cornerEigenValsAndVecs description.
  1441. @param src Input single-channel 8-bit or floating-point image.
  1442. @param dst Image to store the minimal eigenvalues. It has the type CV_32FC1 and the same size as
  1443. src .
  1444. @param blockSize Neighborhood size (see the details on #cornerEigenValsAndVecs ).
  1445. @param ksize Aperture parameter for the Sobel operator.
  1446. @param borderType Pixel extrapolation method. See #BorderTypes. #BORDER_WRAP is not supported.
  1447. */
  1448. CV_EXPORTS_W void cornerMinEigenVal( InputArray src, OutputArray dst,
  1449. int blockSize, int ksize = 3,
  1450. int borderType = BORDER_DEFAULT );
  1451. /** @brief Harris corner detector.
  1452. The function runs the Harris corner detector on the image. Similarly to cornerMinEigenVal and
  1453. cornerEigenValsAndVecs , for each pixel \f$(x, y)\f$ it calculates a \f$2\times2\f$ gradient covariance
  1454. matrix \f$M^{(x,y)}\f$ over a \f$\texttt{blockSize} \times \texttt{blockSize}\f$ neighborhood. Then, it
  1455. computes the following characteristic:
  1456. \f[\texttt{dst} (x,y) = \mathrm{det} M^{(x,y)} - k \cdot \left ( \mathrm{tr} M^{(x,y)} \right )^2\f]
  1457. Corners in the image can be found as the local maxima of this response map.
  1458. @param src Input single-channel 8-bit or floating-point image.
  1459. @param dst Image to store the Harris detector responses. It has the type CV_32FC1 and the same
  1460. size as src .
  1461. @param blockSize Neighborhood size (see the details on #cornerEigenValsAndVecs ).
  1462. @param ksize Aperture parameter for the Sobel operator.
  1463. @param k Harris detector free parameter. See the formula above.
  1464. @param borderType Pixel extrapolation method. See #BorderTypes. #BORDER_WRAP is not supported.
  1465. */
  1466. CV_EXPORTS_W void cornerHarris( InputArray src, OutputArray dst, int blockSize,
  1467. int ksize, double k,
  1468. int borderType = BORDER_DEFAULT );
  1469. /** @brief Calculates eigenvalues and eigenvectors of image blocks for corner detection.
  1470. For every pixel \f$p\f$ , the function cornerEigenValsAndVecs considers a blockSize \f$\times\f$ blockSize
  1471. neighborhood \f$S(p)\f$ . It calculates the covariation matrix of derivatives over the neighborhood as:
  1472. \f[M = \begin{bmatrix} \sum _{S(p)}(dI/dx)^2 & \sum _{S(p)}dI/dx dI/dy \\ \sum _{S(p)}dI/dx dI/dy & \sum _{S(p)}(dI/dy)^2 \end{bmatrix}\f]
  1473. where the derivatives are computed using the Sobel operator.
  1474. After that, it finds eigenvectors and eigenvalues of \f$M\f$ and stores them in the destination image as
  1475. \f$(\lambda_1, \lambda_2, x_1, y_1, x_2, y_2)\f$ where
  1476. - \f$\lambda_1, \lambda_2\f$ are the non-sorted eigenvalues of \f$M\f$
  1477. - \f$x_1, y_1\f$ are the eigenvectors corresponding to \f$\lambda_1\f$
  1478. - \f$x_2, y_2\f$ are the eigenvectors corresponding to \f$\lambda_2\f$
  1479. The output of the function can be used for robust edge or corner detection.
  1480. @param src Input single-channel 8-bit or floating-point image.
  1481. @param dst Image to store the results. It has the same size as src and the type CV_32FC(6) .
  1482. @param blockSize Neighborhood size (see details below).
  1483. @param ksize Aperture parameter for the Sobel operator.
  1484. @param borderType Pixel extrapolation method. See #BorderTypes. #BORDER_WRAP is not supported.
  1485. @sa cornerMinEigenVal, cornerHarris, preCornerDetect
  1486. */
  1487. CV_EXPORTS_W void cornerEigenValsAndVecs( InputArray src, OutputArray dst,
  1488. int blockSize, int ksize,
  1489. int borderType = BORDER_DEFAULT );
  1490. /** @brief Calculates a feature map for corner detection.
  1491. The function calculates the complex spatial derivative-based function of the source image
  1492. \f[\texttt{dst} = (D_x \texttt{src} )^2 \cdot D_{yy} \texttt{src} + (D_y \texttt{src} )^2 \cdot D_{xx} \texttt{src} - 2 D_x \texttt{src} \cdot D_y \texttt{src} \cdot D_{xy} \texttt{src}\f]
  1493. where \f$D_x\f$,\f$D_y\f$ are the first image derivatives, \f$D_{xx}\f$,\f$D_{yy}\f$ are the second image
  1494. derivatives, and \f$D_{xy}\f$ is the mixed derivative.
  1495. The corners can be found as local maximums of the functions, as shown below:
  1496. @code
  1497. Mat corners, dilated_corners;
  1498. preCornerDetect(image, corners, 3);
  1499. // dilation with 3x3 rectangular structuring element
  1500. dilate(corners, dilated_corners, Mat(), 1);
  1501. Mat corner_mask = corners == dilated_corners;
  1502. @endcode
  1503. @param src Source single-channel 8-bit of floating-point image.
  1504. @param dst Output image that has the type CV_32F and the same size as src .
  1505. @param ksize %Aperture size of the Sobel .
  1506. @param borderType Pixel extrapolation method. See #BorderTypes. #BORDER_WRAP is not supported.
  1507. */
  1508. CV_EXPORTS_W void preCornerDetect( InputArray src, OutputArray dst, int ksize,
  1509. int borderType = BORDER_DEFAULT );
  1510. /** @brief Refines the corner locations.
  1511. The function iterates to find the sub-pixel accurate location of corners or radial saddle
  1512. points as described in @cite forstner1987fast, and as shown on the figure below.
  1513. ![image](pics/cornersubpix.png)
  1514. Sub-pixel accurate corner locator is based on the observation that every vector from the center \f$q\f$
  1515. to a point \f$p\f$ located within a neighborhood of \f$q\f$ is orthogonal to the image gradient at \f$p\f$
  1516. subject to image and measurement noise. Consider the expression:
  1517. \f[\epsilon _i = {DI_{p_i}}^T \cdot (q - p_i)\f]
  1518. where \f${DI_{p_i}}\f$ is an image gradient at one of the points \f$p_i\f$ in a neighborhood of \f$q\f$ . The
  1519. value of \f$q\f$ is to be found so that \f$\epsilon_i\f$ is minimized. A system of equations may be set up
  1520. with \f$\epsilon_i\f$ set to zero:
  1521. \f[\sum _i(DI_{p_i} \cdot {DI_{p_i}}^T) \cdot q - \sum _i(DI_{p_i} \cdot {DI_{p_i}}^T \cdot p_i)\f]
  1522. where the gradients are summed within a neighborhood ("search window") of \f$q\f$ . Calling the first
  1523. gradient term \f$G\f$ and the second gradient term \f$b\f$ gives:
  1524. \f[q = G^{-1} \cdot b\f]
  1525. The algorithm sets the center of the neighborhood window at this new center \f$q\f$ and then iterates
  1526. until the center stays within a set threshold.
  1527. @param image Input single-channel, 8-bit or float image.
  1528. @param corners Initial coordinates of the input corners and refined coordinates provided for
  1529. output.
  1530. @param winSize Half of the side length of the search window. For example, if winSize=Size(5,5) ,
  1531. then a \f$(5*2+1) \times (5*2+1) = 11 \times 11\f$ search window is used.
  1532. @param zeroZone Half of the size of the dead region in the middle of the search zone over which
  1533. the summation in the formula below is not done. It is used sometimes to avoid possible
  1534. singularities of the autocorrelation matrix. The value of (-1,-1) indicates that there is no such
  1535. a size.
  1536. @param criteria Criteria for termination of the iterative process of corner refinement. That is,
  1537. the process of corner position refinement stops either after criteria.maxCount iterations or when
  1538. the corner position moves by less than criteria.epsilon on some iteration.
  1539. */
  1540. CV_EXPORTS_W void cornerSubPix( InputArray image, InputOutputArray corners,
  1541. Size winSize, Size zeroZone,
  1542. TermCriteria criteria );
  1543. /** @brief Determines strong corners on an image.
  1544. The function finds the most prominent corners in the image or in the specified image region, as
  1545. described in @cite Shi94
  1546. - Function calculates the corner quality measure at every source image pixel using the
  1547. #cornerMinEigenVal or #cornerHarris .
  1548. - Function performs a non-maximum suppression (the local maximums in *3 x 3* neighborhood are
  1549. retained).
  1550. - The corners with the minimal eigenvalue less than
  1551. \f$\texttt{qualityLevel} \cdot \max_{x,y} qualityMeasureMap(x,y)\f$ are rejected.
  1552. - The remaining corners are sorted by the quality measure in the descending order.
  1553. - Function throws away each corner for which there is a stronger corner at a distance less than
  1554. maxDistance.
  1555. The function can be used to initialize a point-based tracker of an object.
  1556. @note If the function is called with different values A and B of the parameter qualityLevel , and
  1557. A \> B, the vector of returned corners with qualityLevel=A will be the prefix of the output vector
  1558. with qualityLevel=B .
  1559. @param image Input 8-bit or floating-point 32-bit, single-channel image.
  1560. @param corners Output vector of detected corners.
  1561. @param maxCorners Maximum number of corners to return. If there are more corners than are found,
  1562. the strongest of them is returned. `maxCorners <= 0` implies that no limit on the maximum is set
  1563. and all detected corners are returned.
  1564. @param qualityLevel Parameter characterizing the minimal accepted quality of image corners. The
  1565. parameter value is multiplied by the best corner quality measure, which is the minimal eigenvalue
  1566. (see #cornerMinEigenVal ) or the Harris function response (see #cornerHarris ). The corners with the
  1567. quality measure less than the product are rejected. For example, if the best corner has the
  1568. quality measure = 1500, and the qualityLevel=0.01 , then all the corners with the quality measure
  1569. less than 15 are rejected.
  1570. @param minDistance Minimum possible Euclidean distance between the returned corners.
  1571. @param mask Optional region of interest. If the image is not empty (it needs to have the type
  1572. CV_8UC1 and the same size as image ), it specifies the region in which the corners are detected.
  1573. @param blockSize Size of an average block for computing a derivative covariation matrix over each
  1574. pixel neighborhood. See cornerEigenValsAndVecs .
  1575. @param useHarrisDetector Parameter indicating whether to use a Harris detector (see #cornerHarris)
  1576. or #cornerMinEigenVal.
  1577. @param k Free parameter of the Harris detector.
  1578. @sa cornerMinEigenVal, cornerHarris, calcOpticalFlowPyrLK, estimateRigidTransform,
  1579. */
  1580. CV_EXPORTS_W void goodFeaturesToTrack( InputArray image, OutputArray corners,
  1581. int maxCorners, double qualityLevel, double minDistance,
  1582. InputArray mask = noArray(), int blockSize = 3,
  1583. bool useHarrisDetector = false, double k = 0.04 );
  1584. CV_EXPORTS_W void goodFeaturesToTrack( InputArray image, OutputArray corners,
  1585. int maxCorners, double qualityLevel, double minDistance,
  1586. InputArray mask, int blockSize,
  1587. int gradientSize, bool useHarrisDetector = false,
  1588. double k = 0.04 );
  1589. /** @example samples/cpp/tutorial_code/ImgTrans/houghlines.cpp
  1590. An example using the Hough line detector
  1591. ![Sample input image](Hough_Lines_Tutorial_Original_Image.jpg) ![Output image](Hough_Lines_Tutorial_Result.jpg)
  1592. */
  1593. /** @brief Finds lines in a binary image using the standard Hough transform.
  1594. The function implements the standard or standard multi-scale Hough transform algorithm for line
  1595. detection. See <http://homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm> for a good explanation of Hough
  1596. transform.
  1597. @param image 8-bit, single-channel binary source image. The image may be modified by the function.
  1598. @param lines Output vector of lines. Each line is represented by a 2 or 3 element vector
  1599. \f$(\rho, \theta)\f$ or \f$(\rho, \theta, \textrm{votes})\f$ . \f$\rho\f$ is the distance from the coordinate origin \f$(0,0)\f$ (top-left corner of
  1600. the image). \f$\theta\f$ is the line rotation angle in radians (
  1601. \f$0 \sim \textrm{vertical line}, \pi/2 \sim \textrm{horizontal line}\f$ ).
  1602. \f$\textrm{votes}\f$ is the value of accumulator.
  1603. @param rho Distance resolution of the accumulator in pixels.
  1604. @param theta Angle resolution of the accumulator in radians.
  1605. @param threshold Accumulator threshold parameter. Only those lines are returned that get enough
  1606. votes ( \f$>\texttt{threshold}\f$ ).
  1607. @param srn For the multi-scale Hough transform, it is a divisor for the distance resolution rho .
  1608. The coarse accumulator distance resolution is rho and the accurate accumulator resolution is
  1609. rho/srn . If both srn=0 and stn=0 , the classical Hough transform is used. Otherwise, both these
  1610. parameters should be positive.
  1611. @param stn For the multi-scale Hough transform, it is a divisor for the distance resolution theta.
  1612. @param min_theta For standard and multi-scale Hough transform, minimum angle to check for lines.
  1613. Must fall between 0 and max_theta.
  1614. @param max_theta For standard and multi-scale Hough transform, maximum angle to check for lines.
  1615. Must fall between min_theta and CV_PI.
  1616. */
  1617. CV_EXPORTS_W void HoughLines( InputArray image, OutputArray lines,
  1618. double rho, double theta, int threshold,
  1619. double srn = 0, double stn = 0,
  1620. double min_theta = 0, double max_theta = CV_PI );
  1621. /** @brief Finds line segments in a binary image using the probabilistic Hough transform.
  1622. The function implements the probabilistic Hough transform algorithm for line detection, described
  1623. in @cite Matas00
  1624. See the line detection example below:
  1625. @include snippets/imgproc_HoughLinesP.cpp
  1626. This is a sample picture the function parameters have been tuned for:
  1627. ![image](pics/building.jpg)
  1628. And this is the output of the above program in case of the probabilistic Hough transform:
  1629. ![image](pics/houghp.png)
  1630. @param image 8-bit, single-channel binary source image. The image may be modified by the function.
  1631. @param lines Output vector of lines. Each line is represented by a 4-element vector
  1632. \f$(x_1, y_1, x_2, y_2)\f$ , where \f$(x_1,y_1)\f$ and \f$(x_2, y_2)\f$ are the ending points of each detected
  1633. line segment.
  1634. @param rho Distance resolution of the accumulator in pixels.
  1635. @param theta Angle resolution of the accumulator in radians.
  1636. @param threshold Accumulator threshold parameter. Only those lines are returned that get enough
  1637. votes ( \f$>\texttt{threshold}\f$ ).
  1638. @param minLineLength Minimum line length. Line segments shorter than that are rejected.
  1639. @param maxLineGap Maximum allowed gap between points on the same line to link them.
  1640. @sa LineSegmentDetector
  1641. */
  1642. CV_EXPORTS_W void HoughLinesP( InputArray image, OutputArray lines,
  1643. double rho, double theta, int threshold,
  1644. double minLineLength = 0, double maxLineGap = 0 );
  1645. /** @brief Finds lines in a set of points using the standard Hough transform.
  1646. The function finds lines in a set of points using a modification of the Hough transform.
  1647. @include snippets/imgproc_HoughLinesPointSet.cpp
  1648. @param _point Input vector of points. Each vector must be encoded as a Point vector \f$(x,y)\f$. Type must be CV_32FC2 or CV_32SC2.
  1649. @param _lines Output vector of found lines. Each vector is encoded as a vector<Vec3d> \f$(votes, rho, theta)\f$.
  1650. The larger the value of 'votes', the higher the reliability of the Hough line.
  1651. @param lines_max Max count of hough lines.
  1652. @param threshold Accumulator threshold parameter. Only those lines are returned that get enough
  1653. votes ( \f$>\texttt{threshold}\f$ )
  1654. @param min_rho Minimum Distance value of the accumulator in pixels.
  1655. @param max_rho Maximum Distance value of the accumulator in pixels.
  1656. @param rho_step Distance resolution of the accumulator in pixels.
  1657. @param min_theta Minimum angle value of the accumulator in radians.
  1658. @param max_theta Maximum angle value of the accumulator in radians.
  1659. @param theta_step Angle resolution of the accumulator in radians.
  1660. */
  1661. CV_EXPORTS_W void HoughLinesPointSet( InputArray _point, OutputArray _lines, int lines_max, int threshold,
  1662. double min_rho, double max_rho, double rho_step,
  1663. double min_theta, double max_theta, double theta_step );
  1664. /** @example samples/cpp/tutorial_code/ImgTrans/houghcircles.cpp
  1665. An example using the Hough circle detector
  1666. */
  1667. /** @brief Finds circles in a grayscale image using the Hough transform.
  1668. The function finds circles in a grayscale image using a modification of the Hough transform.
  1669. Example: :
  1670. @include snippets/imgproc_HoughLinesCircles.cpp
  1671. @note Usually the function detects the centers of circles well. However, it may fail to find correct
  1672. radii. You can assist to the function by specifying the radius range ( minRadius and maxRadius ) if
  1673. you know it. Or, you may set maxRadius to a negative number to return centers only without radius
  1674. search, and find the correct radius using an additional procedure.
  1675. @param image 8-bit, single-channel, grayscale input image.
  1676. @param circles Output vector of found circles. Each vector is encoded as 3 or 4 element
  1677. floating-point vector \f$(x, y, radius)\f$ or \f$(x, y, radius, votes)\f$ .
  1678. @param method Detection method, see #HoughModes. Currently, the only implemented method is #HOUGH_GRADIENT
  1679. @param dp Inverse ratio of the accumulator resolution to the image resolution. For example, if
  1680. dp=1 , the accumulator has the same resolution as the input image. If dp=2 , the accumulator has
  1681. half as big width and height.
  1682. @param minDist Minimum distance between the centers of the detected circles. If the parameter is
  1683. too small, multiple neighbor circles may be falsely detected in addition to a true one. If it is
  1684. too large, some circles may be missed.
  1685. @param param1 First method-specific parameter. In case of #HOUGH_GRADIENT , it is the higher
  1686. threshold of the two passed to the Canny edge detector (the lower one is twice smaller).
  1687. @param param2 Second method-specific parameter. In case of #HOUGH_GRADIENT , it is the
  1688. accumulator threshold for the circle centers at the detection stage. The smaller it is, the more
  1689. false circles may be detected. Circles, corresponding to the larger accumulator values, will be
  1690. returned first.
  1691. @param minRadius Minimum circle radius.
  1692. @param maxRadius Maximum circle radius. If <= 0, uses the maximum image dimension. If < 0, returns
  1693. centers without finding the radius.
  1694. @sa fitEllipse, minEnclosingCircle
  1695. */
  1696. CV_EXPORTS_W void HoughCircles( InputArray image, OutputArray circles,
  1697. int method, double dp, double minDist,
  1698. double param1 = 100, double param2 = 100,
  1699. int minRadius = 0, int maxRadius = 0 );
  1700. //! @} imgproc_feature
  1701. //! @addtogroup imgproc_filter
  1702. //! @{
  1703. /** @example samples/cpp/tutorial_code/ImgProc/Morphology_2.cpp
  1704. Advanced morphology Transformations sample code
  1705. ![Sample screenshot](Morphology_2_Tutorial_Result.jpg)
  1706. Check @ref tutorial_opening_closing_hats "the corresponding tutorial" for more details
  1707. */
  1708. /** @brief Erodes an image by using a specific structuring element.
  1709. The function erodes the source image using the specified structuring element that determines the
  1710. shape of a pixel neighborhood over which the minimum is taken:
  1711. \f[\texttt{dst} (x,y) = \min _{(x',y'): \, \texttt{element} (x',y') \ne0 } \texttt{src} (x+x',y+y')\f]
  1712. The function supports the in-place mode. Erosion can be applied several ( iterations ) times. In
  1713. case of multi-channel images, each channel is processed independently.
  1714. @param src input image; the number of channels can be arbitrary, but the depth should be one of
  1715. CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
  1716. @param dst output image of the same size and type as src.
  1717. @param kernel structuring element used for erosion; if `element=Mat()`, a `3 x 3` rectangular
  1718. structuring element is used. Kernel can be created using #getStructuringElement.
  1719. @param anchor position of the anchor within the element; default value (-1, -1) means that the
  1720. anchor is at the element center.
  1721. @param iterations number of times erosion is applied.
  1722. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1723. @param borderValue border value in case of a constant border
  1724. @sa dilate, morphologyEx, getStructuringElement
  1725. */
  1726. CV_EXPORTS_W void erode( InputArray src, OutputArray dst, InputArray kernel,
  1727. Point anchor = Point(-1,-1), int iterations = 1,
  1728. int borderType = BORDER_CONSTANT,
  1729. const Scalar& borderValue = morphologyDefaultBorderValue() );
  1730. /** @example samples/cpp/tutorial_code/ImgProc/Morphology_1.cpp
  1731. Erosion and Dilation sample code
  1732. ![Sample Screenshot-Erosion](Morphology_1_Tutorial_Erosion_Result.jpg)![Sample Screenshot-Dilation](Morphology_1_Tutorial_Dilation_Result.jpg)
  1733. Check @ref tutorial_erosion_dilatation "the corresponding tutorial" for more details
  1734. */
  1735. /** @brief Dilates an image by using a specific structuring element.
  1736. The function dilates the source image using the specified structuring element that determines the
  1737. shape of a pixel neighborhood over which the maximum is taken:
  1738. \f[\texttt{dst} (x,y) = \max _{(x',y'): \, \texttt{element} (x',y') \ne0 } \texttt{src} (x+x',y+y')\f]
  1739. The function supports the in-place mode. Dilation can be applied several ( iterations ) times. In
  1740. case of multi-channel images, each channel is processed independently.
  1741. @param src input image; the number of channels can be arbitrary, but the depth should be one of
  1742. CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
  1743. @param dst output image of the same size and type as src.
  1744. @param kernel structuring element used for dilation; if elemenat=Mat(), a 3 x 3 rectangular
  1745. structuring element is used. Kernel can be created using #getStructuringElement
  1746. @param anchor position of the anchor within the element; default value (-1, -1) means that the
  1747. anchor is at the element center.
  1748. @param iterations number of times dilation is applied.
  1749. @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not suported.
  1750. @param borderValue border value in case of a constant border
  1751. @sa erode, morphologyEx, getStructuringElement
  1752. */
  1753. CV_EXPORTS_W void dilate( InputArray src, OutputArray dst, InputArray kernel,
  1754. Point anchor = Point(-1,-1), int iterations = 1,
  1755. int borderType = BORDER_CONSTANT,
  1756. const Scalar& borderValue = morphologyDefaultBorderValue() );
  1757. /** @brief Performs advanced morphological transformations.
  1758. The function cv::morphologyEx can perform advanced morphological transformations using an erosion and dilation as
  1759. basic operations.
  1760. Any of the operations can be done in-place. In case of multi-channel images, each channel is
  1761. processed independently.
  1762. @param src Source image. The number of channels can be arbitrary. The depth should be one of
  1763. CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.
  1764. @param dst Destination image of the same size and type as source image.
  1765. @param op Type of a morphological operation, see #MorphTypes
  1766. @param kernel Structuring element. It can be created using #getStructuringElement.
  1767. @param anchor Anchor position with the kernel. Negative values mean that the anchor is at the
  1768. kernel center.
  1769. @param iterations Number of times erosion and dilation are applied.
  1770. @param borderType Pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
  1771. @param borderValue Border value in case of a constant border. The default value has a special
  1772. meaning.
  1773. @sa dilate, erode, getStructuringElement
  1774. @note The number of iterations is the number of times erosion or dilatation operation will be applied.
  1775. For instance, an opening operation (#MORPH_OPEN) with two iterations is equivalent to apply
  1776. successively: erode -> erode -> dilate -> dilate (and not erode -> dilate -> erode -> dilate).
  1777. */
  1778. CV_EXPORTS_W void morphologyEx( InputArray src, OutputArray dst,
  1779. int op, InputArray kernel,
  1780. Point anchor = Point(-1,-1), int iterations = 1,
  1781. int borderType = BORDER_CONSTANT,
  1782. const Scalar& borderValue = morphologyDefaultBorderValue() );
  1783. //! @} imgproc_filter
  1784. //! @addtogroup imgproc_transform
  1785. //! @{
  1786. /** @brief Resizes an image.
  1787. The function resize resizes the image src down to or up to the specified size. Note that the
  1788. initial dst type or size are not taken into account. Instead, the size and type are derived from
  1789. the `src`,`dsize`,`fx`, and `fy`. If you want to resize src so that it fits the pre-created dst,
  1790. you may call the function as follows:
  1791. @code
  1792. // explicitly specify dsize=dst.size(); fx and fy will be computed from that.
  1793. resize(src, dst, dst.size(), 0, 0, interpolation);
  1794. @endcode
  1795. If you want to decimate the image by factor of 2 in each direction, you can call the function this
  1796. way:
  1797. @code
  1798. // specify fx and fy and let the function compute the destination image size.
  1799. resize(src, dst, Size(), 0.5, 0.5, interpolation);
  1800. @endcode
  1801. To shrink an image, it will generally look best with #INTER_AREA interpolation, whereas to
  1802. enlarge an image, it will generally look best with c#INTER_CUBIC (slow) or #INTER_LINEAR
  1803. (faster but still looks OK).
  1804. @param src input image.
  1805. @param dst output image; it has the size dsize (when it is non-zero) or the size computed from
  1806. src.size(), fx, and fy; the type of dst is the same as of src.
  1807. @param dsize output image size; if it equals zero, it is computed as:
  1808. \f[\texttt{dsize = Size(round(fx*src.cols), round(fy*src.rows))}\f]
  1809. Either dsize or both fx and fy must be non-zero.
  1810. @param fx scale factor along the horizontal axis; when it equals 0, it is computed as
  1811. \f[\texttt{(double)dsize.width/src.cols}\f]
  1812. @param fy scale factor along the vertical axis; when it equals 0, it is computed as
  1813. \f[\texttt{(double)dsize.height/src.rows}\f]
  1814. @param interpolation interpolation method, see #InterpolationFlags
  1815. @sa warpAffine, warpPerspective, remap
  1816. */
  1817. CV_EXPORTS_W void resize( InputArray src, OutputArray dst,
  1818. Size dsize, double fx = 0, double fy = 0,
  1819. int interpolation = INTER_LINEAR );
  1820. /** @brief Applies an affine transformation to an image.
  1821. The function warpAffine transforms the source image using the specified matrix:
  1822. \f[\texttt{dst} (x,y) = \texttt{src} ( \texttt{M} _{11} x + \texttt{M} _{12} y + \texttt{M} _{13}, \texttt{M} _{21} x + \texttt{M} _{22} y + \texttt{M} _{23})\f]
  1823. when the flag #WARP_INVERSE_MAP is set. Otherwise, the transformation is first inverted
  1824. with #invertAffineTransform and then put in the formula above instead of M. The function cannot
  1825. operate in-place.
  1826. @param src input image.
  1827. @param dst output image that has the size dsize and the same type as src .
  1828. @param M \f$2\times 3\f$ transformation matrix.
  1829. @param dsize size of the output image.
  1830. @param flags combination of interpolation methods (see #InterpolationFlags) and the optional
  1831. flag #WARP_INVERSE_MAP that means that M is the inverse transformation (
  1832. \f$\texttt{dst}\rightarrow\texttt{src}\f$ ).
  1833. @param borderMode pixel extrapolation method (see #BorderTypes); when
  1834. borderMode=#BORDER_TRANSPARENT, it means that the pixels in the destination image corresponding to
  1835. the "outliers" in the source image are not modified by the function.
  1836. @param borderValue value used in case of a constant border; by default, it is 0.
  1837. @sa warpPerspective, resize, remap, getRectSubPix, transform
  1838. */
  1839. CV_EXPORTS_W void warpAffine( InputArray src, OutputArray dst,
  1840. InputArray M, Size dsize,
  1841. int flags = INTER_LINEAR,
  1842. int borderMode = BORDER_CONSTANT,
  1843. const Scalar& borderValue = Scalar());
  1844. /** @example samples/cpp/warpPerspective_demo.cpp
  1845. An example program shows using cv::getPerspectiveTransform and cv::warpPerspective for image warping
  1846. */
  1847. /** @brief Applies a perspective transformation to an image.
  1848. The function warpPerspective transforms the source image using the specified matrix:
  1849. \f[\texttt{dst} (x,y) = \texttt{src} \left ( \frac{M_{11} x + M_{12} y + M_{13}}{M_{31} x + M_{32} y + M_{33}} ,
  1850. \frac{M_{21} x + M_{22} y + M_{23}}{M_{31} x + M_{32} y + M_{33}} \right )\f]
  1851. when the flag #WARP_INVERSE_MAP is set. Otherwise, the transformation is first inverted with invert
  1852. and then put in the formula above instead of M. The function cannot operate in-place.
  1853. @param src input image.
  1854. @param dst output image that has the size dsize and the same type as src .
  1855. @param M \f$3\times 3\f$ transformation matrix.
  1856. @param dsize size of the output image.
  1857. @param flags combination of interpolation methods (#INTER_LINEAR or #INTER_NEAREST) and the
  1858. optional flag #WARP_INVERSE_MAP, that sets M as the inverse transformation (
  1859. \f$\texttt{dst}\rightarrow\texttt{src}\f$ ).
  1860. @param borderMode pixel extrapolation method (#BORDER_CONSTANT or #BORDER_REPLICATE).
  1861. @param borderValue value used in case of a constant border; by default, it equals 0.
  1862. @sa warpAffine, resize, remap, getRectSubPix, perspectiveTransform
  1863. */
  1864. CV_EXPORTS_W void warpPerspective( InputArray src, OutputArray dst,
  1865. InputArray M, Size dsize,
  1866. int flags = INTER_LINEAR,
  1867. int borderMode = BORDER_CONSTANT,
  1868. const Scalar& borderValue = Scalar());
  1869. /** @brief Applies a generic geometrical transformation to an image.
  1870. The function remap transforms the source image using the specified map:
  1871. \f[\texttt{dst} (x,y) = \texttt{src} (map_x(x,y),map_y(x,y))\f]
  1872. where values of pixels with non-integer coordinates are computed using one of available
  1873. interpolation methods. \f$map_x\f$ and \f$map_y\f$ can be encoded as separate floating-point maps
  1874. in \f$map_1\f$ and \f$map_2\f$ respectively, or interleaved floating-point maps of \f$(x,y)\f$ in
  1875. \f$map_1\f$, or fixed-point maps created by using convertMaps. The reason you might want to
  1876. convert from floating to fixed-point representations of a map is that they can yield much faster
  1877. (\~2x) remapping operations. In the converted case, \f$map_1\f$ contains pairs (cvFloor(x),
  1878. cvFloor(y)) and \f$map_2\f$ contains indices in a table of interpolation coefficients.
  1879. This function cannot operate in-place.
  1880. @param src Source image.
  1881. @param dst Destination image. It has the same size as map1 and the same type as src .
  1882. @param map1 The first map of either (x,y) points or just x values having the type CV_16SC2 ,
  1883. CV_32FC1, or CV_32FC2. See convertMaps for details on converting a floating point
  1884. representation to fixed-point for speed.
  1885. @param map2 The second map of y values having the type CV_16UC1, CV_32FC1, or none (empty map
  1886. if map1 is (x,y) points), respectively.
  1887. @param interpolation Interpolation method (see #InterpolationFlags). The methods #INTER_AREA
  1888. and #INTER_LINEAR_EXACT are not supported by this function.
  1889. @param borderMode Pixel extrapolation method (see #BorderTypes). When
  1890. borderMode=#BORDER_TRANSPARENT, it means that the pixels in the destination image that
  1891. corresponds to the "outliers" in the source image are not modified by the function.
  1892. @param borderValue Value used in case of a constant border. By default, it is 0.
  1893. @note
  1894. Due to current implementation limitations the size of an input and output images should be less than 32767x32767.
  1895. */
  1896. CV_EXPORTS_W void remap( InputArray src, OutputArray dst,
  1897. InputArray map1, InputArray map2,
  1898. int interpolation, int borderMode = BORDER_CONSTANT,
  1899. const Scalar& borderValue = Scalar());
  1900. /** @brief Converts image transformation maps from one representation to another.
  1901. The function converts a pair of maps for remap from one representation to another. The following
  1902. options ( (map1.type(), map2.type()) \f$\rightarrow\f$ (dstmap1.type(), dstmap2.type()) ) are
  1903. supported:
  1904. - \f$\texttt{(CV_32FC1, CV_32FC1)} \rightarrow \texttt{(CV_16SC2, CV_16UC1)}\f$. This is the
  1905. most frequently used conversion operation, in which the original floating-point maps (see remap )
  1906. are converted to a more compact and much faster fixed-point representation. The first output array
  1907. contains the rounded coordinates and the second array (created only when nninterpolation=false )
  1908. contains indices in the interpolation tables.
  1909. - \f$\texttt{(CV_32FC2)} \rightarrow \texttt{(CV_16SC2, CV_16UC1)}\f$. The same as above but
  1910. the original maps are stored in one 2-channel matrix.
  1911. - Reverse conversion. Obviously, the reconstructed floating-point maps will not be exactly the same
  1912. as the originals.
  1913. @param map1 The first input map of type CV_16SC2, CV_32FC1, or CV_32FC2 .
  1914. @param map2 The second input map of type CV_16UC1, CV_32FC1, or none (empty matrix),
  1915. respectively.
  1916. @param dstmap1 The first output map that has the type dstmap1type and the same size as src .
  1917. @param dstmap2 The second output map.
  1918. @param dstmap1type Type of the first output map that should be CV_16SC2, CV_32FC1, or
  1919. CV_32FC2 .
  1920. @param nninterpolation Flag indicating whether the fixed-point maps are used for the
  1921. nearest-neighbor or for a more complex interpolation.
  1922. @sa remap, undistort, initUndistortRectifyMap
  1923. */
  1924. CV_EXPORTS_W void convertMaps( InputArray map1, InputArray map2,
  1925. OutputArray dstmap1, OutputArray dstmap2,
  1926. int dstmap1type, bool nninterpolation = false );
  1927. /** @brief Calculates an affine matrix of 2D rotation.
  1928. The function calculates the following matrix:
  1929. \f[\begin{bmatrix} \alpha & \beta & (1- \alpha ) \cdot \texttt{center.x} - \beta \cdot \texttt{center.y} \\ - \beta & \alpha & \beta \cdot \texttt{center.x} + (1- \alpha ) \cdot \texttt{center.y} \end{bmatrix}\f]
  1930. where
  1931. \f[\begin{array}{l} \alpha = \texttt{scale} \cdot \cos \texttt{angle} , \\ \beta = \texttt{scale} \cdot \sin \texttt{angle} \end{array}\f]
  1932. The transformation maps the rotation center to itself. If this is not the target, adjust the shift.
  1933. @param center Center of the rotation in the source image.
  1934. @param angle Rotation angle in degrees. Positive values mean counter-clockwise rotation (the
  1935. coordinate origin is assumed to be the top-left corner).
  1936. @param scale Isotropic scale factor.
  1937. @sa getAffineTransform, warpAffine, transform
  1938. */
  1939. CV_EXPORTS_W Mat getRotationMatrix2D( Point2f center, double angle, double scale );
  1940. //! returns 3x3 perspective transformation for the corresponding 4 point pairs.
  1941. CV_EXPORTS Mat getPerspectiveTransform( const Point2f src[], const Point2f dst[] );
  1942. /** @brief Calculates an affine transform from three pairs of the corresponding points.
  1943. The function calculates the \f$2 \times 3\f$ matrix of an affine transform so that:
  1944. \f[\begin{bmatrix} x'_i \\ y'_i \end{bmatrix} = \texttt{map_matrix} \cdot \begin{bmatrix} x_i \\ y_i \\ 1 \end{bmatrix}\f]
  1945. where
  1946. \f[dst(i)=(x'_i,y'_i), src(i)=(x_i, y_i), i=0,1,2\f]
  1947. @param src Coordinates of triangle vertices in the source image.
  1948. @param dst Coordinates of the corresponding triangle vertices in the destination image.
  1949. @sa warpAffine, transform
  1950. */
  1951. CV_EXPORTS Mat getAffineTransform( const Point2f src[], const Point2f dst[] );
  1952. /** @brief Inverts an affine transformation.
  1953. The function computes an inverse affine transformation represented by \f$2 \times 3\f$ matrix M:
  1954. \f[\begin{bmatrix} a_{11} & a_{12} & b_1 \\ a_{21} & a_{22} & b_2 \end{bmatrix}\f]
  1955. The result is also a \f$2 \times 3\f$ matrix of the same type as M.
  1956. @param M Original affine transformation.
  1957. @param iM Output reverse affine transformation.
  1958. */
  1959. CV_EXPORTS_W void invertAffineTransform( InputArray M, OutputArray iM );
  1960. /** @brief Calculates a perspective transform from four pairs of the corresponding points.
  1961. The function calculates the \f$3 \times 3\f$ matrix of a perspective transform so that:
  1962. \f[\begin{bmatrix} t_i x'_i \\ t_i y'_i \\ t_i \end{bmatrix} = \texttt{map_matrix} \cdot \begin{bmatrix} x_i \\ y_i \\ 1 \end{bmatrix}\f]
  1963. where
  1964. \f[dst(i)=(x'_i,y'_i), src(i)=(x_i, y_i), i=0,1,2,3\f]
  1965. @param src Coordinates of quadrangle vertices in the source image.
  1966. @param dst Coordinates of the corresponding quadrangle vertices in the destination image.
  1967. @sa findHomography, warpPerspective, perspectiveTransform
  1968. */
  1969. CV_EXPORTS_W Mat getPerspectiveTransform( InputArray src, InputArray dst );
  1970. CV_EXPORTS_W Mat getAffineTransform( InputArray src, InputArray dst );
  1971. /** @brief Retrieves a pixel rectangle from an image with sub-pixel accuracy.
  1972. The function getRectSubPix extracts pixels from src:
  1973. \f[patch(x, y) = src(x + \texttt{center.x} - ( \texttt{dst.cols} -1)*0.5, y + \texttt{center.y} - ( \texttt{dst.rows} -1)*0.5)\f]
  1974. where the values of the pixels at non-integer coordinates are retrieved using bilinear
  1975. interpolation. Every channel of multi-channel images is processed independently. Also
  1976. the image should be a single channel or three channel image. While the center of the
  1977. rectangle must be inside the image, parts of the rectangle may be outside.
  1978. @param image Source image.
  1979. @param patchSize Size of the extracted patch.
  1980. @param center Floating point coordinates of the center of the extracted rectangle within the
  1981. source image. The center must be inside the image.
  1982. @param patch Extracted patch that has the size patchSize and the same number of channels as src .
  1983. @param patchType Depth of the extracted pixels. By default, they have the same depth as src .
  1984. @sa warpAffine, warpPerspective
  1985. */
  1986. CV_EXPORTS_W void getRectSubPix( InputArray image, Size patchSize,
  1987. Point2f center, OutputArray patch, int patchType = -1 );
  1988. /** @example samples/cpp/polar_transforms.cpp
  1989. An example using the cv::linearPolar and cv::logPolar operations
  1990. */
  1991. /** @brief Remaps an image to semilog-polar coordinates space.
  1992. @deprecated This function produces same result as cv::warpPolar(src, dst, src.size(), center, maxRadius, flags+WARP_POLAR_LOG);
  1993. @internal
  1994. Transform the source image using the following transformation (See @ref polar_remaps_reference_image "Polar remaps reference image d)"):
  1995. \f[\begin{array}{l}
  1996. dst( \rho , \phi ) = src(x,y) \\
  1997. dst.size() \leftarrow src.size()
  1998. \end{array}\f]
  1999. where
  2000. \f[\begin{array}{l}
  2001. I = (dx,dy) = (x - center.x,y - center.y) \\
  2002. \rho = M \cdot log_e(\texttt{magnitude} (I)) ,\\
  2003. \phi = Kangle \cdot \texttt{angle} (I) \\
  2004. \end{array}\f]
  2005. and
  2006. \f[\begin{array}{l}
  2007. M = src.cols / log_e(maxRadius) \\
  2008. Kangle = src.rows / 2\Pi \\
  2009. \end{array}\f]
  2010. The function emulates the human "foveal" vision and can be used for fast scale and
  2011. rotation-invariant template matching, for object tracking and so forth.
  2012. @param src Source image
  2013. @param dst Destination image. It will have same size and type as src.
  2014. @param center The transformation center; where the output precision is maximal
  2015. @param M Magnitude scale parameter. It determines the radius of the bounding circle to transform too.
  2016. @param flags A combination of interpolation methods, see #InterpolationFlags
  2017. @note
  2018. - The function can not operate in-place.
  2019. - To calculate magnitude and angle in degrees #cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
  2020. @sa cv::linearPolar
  2021. @endinternal
  2022. */
  2023. CV_EXPORTS_W void logPolar( InputArray src, OutputArray dst,
  2024. Point2f center, double M, int flags );
  2025. /** @brief Remaps an image to polar coordinates space.
  2026. @deprecated This function produces same result as cv::warpPolar(src, dst, src.size(), center, maxRadius, flags)
  2027. @internal
  2028. Transform the source image using the following transformation (See @ref polar_remaps_reference_image "Polar remaps reference image c)"):
  2029. \f[\begin{array}{l}
  2030. dst( \rho , \phi ) = src(x,y) \\
  2031. dst.size() \leftarrow src.size()
  2032. \end{array}\f]
  2033. where
  2034. \f[\begin{array}{l}
  2035. I = (dx,dy) = (x - center.x,y - center.y) \\
  2036. \rho = Kmag \cdot \texttt{magnitude} (I) ,\\
  2037. \phi = angle \cdot \texttt{angle} (I)
  2038. \end{array}\f]
  2039. and
  2040. \f[\begin{array}{l}
  2041. Kx = src.cols / maxRadius \\
  2042. Ky = src.rows / 2\Pi
  2043. \end{array}\f]
  2044. @param src Source image
  2045. @param dst Destination image. It will have same size and type as src.
  2046. @param center The transformation center;
  2047. @param maxRadius The radius of the bounding circle to transform. It determines the inverse magnitude scale parameter too.
  2048. @param flags A combination of interpolation methods, see #InterpolationFlags
  2049. @note
  2050. - The function can not operate in-place.
  2051. - To calculate magnitude and angle in degrees #cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
  2052. @sa cv::logPolar
  2053. @endinternal
  2054. */
  2055. CV_EXPORTS_W void linearPolar( InputArray src, OutputArray dst,
  2056. Point2f center, double maxRadius, int flags );
  2057. /** \brief Remaps an image to polar or semilog-polar coordinates space
  2058. @anchor polar_remaps_reference_image
  2059. ![Polar remaps reference](pics/polar_remap_doc.png)
  2060. Transform the source image using the following transformation:
  2061. \f[
  2062. dst(\rho , \phi ) = src(x,y)
  2063. \f]
  2064. where
  2065. \f[
  2066. \begin{array}{l}
  2067. \vec{I} = (x - center.x, \;y - center.y) \\
  2068. \phi = Kangle \cdot \texttt{angle} (\vec{I}) \\
  2069. \rho = \left\{\begin{matrix}
  2070. Klin \cdot \texttt{magnitude} (\vec{I}) & default \\
  2071. Klog \cdot log_e(\texttt{magnitude} (\vec{I})) & if \; semilog \\
  2072. \end{matrix}\right.
  2073. \end{array}
  2074. \f]
  2075. and
  2076. \f[
  2077. \begin{array}{l}
  2078. Kangle = dsize.height / 2\Pi \\
  2079. Klin = dsize.width / maxRadius \\
  2080. Klog = dsize.width / log_e(maxRadius) \\
  2081. \end{array}
  2082. \f]
  2083. \par Linear vs semilog mapping
  2084. Polar mapping can be linear or semi-log. Add one of #WarpPolarMode to `flags` to specify the polar mapping mode.
  2085. Linear is the default mode.
  2086. The semilog mapping emulates the human "foveal" vision that permit very high acuity on the line of sight (central vision)
  2087. in contrast to peripheral vision where acuity is minor.
  2088. \par Option on `dsize`:
  2089. - if both values in `dsize <=0 ` (default),
  2090. the destination image will have (almost) same area of source bounding circle:
  2091. \f[\begin{array}{l}
  2092. dsize.area \leftarrow (maxRadius^2 \cdot \Pi) \\
  2093. dsize.width = \texttt{cvRound}(maxRadius) \\
  2094. dsize.height = \texttt{cvRound}(maxRadius \cdot \Pi) \\
  2095. \end{array}\f]
  2096. - if only `dsize.height <= 0`,
  2097. the destination image area will be proportional to the bounding circle area but scaled by `Kx * Kx`:
  2098. \f[\begin{array}{l}
  2099. dsize.height = \texttt{cvRound}(dsize.width \cdot \Pi) \\
  2100. \end{array}
  2101. \f]
  2102. - if both values in `dsize > 0 `,
  2103. the destination image will have the given size therefore the area of the bounding circle will be scaled to `dsize`.
  2104. \par Reverse mapping
  2105. You can get reverse mapping adding #WARP_INVERSE_MAP to `flags`
  2106. \snippet polar_transforms.cpp InverseMap
  2107. In addiction, to calculate the original coordinate from a polar mapped coordinate \f$(rho, phi)->(x, y)\f$:
  2108. \snippet polar_transforms.cpp InverseCoordinate
  2109. @param src Source image.
  2110. @param dst Destination image. It will have same type as src.
  2111. @param dsize The destination image size (see description for valid options).
  2112. @param center The transformation center.
  2113. @param maxRadius The radius of the bounding circle to transform. It determines the inverse magnitude scale parameter too.
  2114. @param flags A combination of interpolation methods, #InterpolationFlags + #WarpPolarMode.
  2115. - Add #WARP_POLAR_LINEAR to select linear polar mapping (default)
  2116. - Add #WARP_POLAR_LOG to select semilog polar mapping
  2117. - Add #WARP_INVERSE_MAP for reverse mapping.
  2118. @note
  2119. - The function can not operate in-place.
  2120. - To calculate magnitude and angle in degrees #cartToPolar is used internally thus angles are measured from 0 to 360 with accuracy about 0.3 degrees.
  2121. - This function uses #remap. Due to current implementation limitations the size of an input and output images should be less than 32767x32767.
  2122. @sa cv::remap
  2123. */
  2124. CV_EXPORTS_W void warpPolar(InputArray src, OutputArray dst, Size dsize,
  2125. Point2f center, double maxRadius, int flags);
  2126. //! @} imgproc_transform
  2127. //! @addtogroup imgproc_misc
  2128. //! @{
  2129. /** @overload */
  2130. CV_EXPORTS_W void integral( InputArray src, OutputArray sum, int sdepth = -1 );
  2131. /** @overload */
  2132. CV_EXPORTS_AS(integral2) void integral( InputArray src, OutputArray sum,
  2133. OutputArray sqsum, int sdepth = -1, int sqdepth = -1 );
  2134. /** @brief Calculates the integral of an image.
  2135. The function calculates one or more integral images for the source image as follows:
  2136. \f[\texttt{sum} (X,Y) = \sum _{x<X,y<Y} \texttt{image} (x,y)\f]
  2137. \f[\texttt{sqsum} (X,Y) = \sum _{x<X,y<Y} \texttt{image} (x,y)^2\f]
  2138. \f[\texttt{tilted} (X,Y) = \sum _{y<Y,abs(x-X+1) \leq Y-y-1} \texttt{image} (x,y)\f]
  2139. Using these integral images, you can calculate sum, mean, and standard deviation over a specific
  2140. up-right or rotated rectangular region of the image in a constant time, for example:
  2141. \f[\sum _{x_1 \leq x < x_2, \, y_1 \leq y < y_2} \texttt{image} (x,y) = \texttt{sum} (x_2,y_2)- \texttt{sum} (x_1,y_2)- \texttt{sum} (x_2,y_1)+ \texttt{sum} (x_1,y_1)\f]
  2142. It makes possible to do a fast blurring or fast block correlation with a variable window size, for
  2143. example. In case of multi-channel images, sums for each channel are accumulated independently.
  2144. As a practical example, the next figure shows the calculation of the integral of a straight
  2145. rectangle Rect(3,3,3,2) and of a tilted rectangle Rect(5,1,2,3) . The selected pixels in the
  2146. original image are shown, as well as the relative pixels in the integral images sum and tilted .
  2147. ![integral calculation example](pics/integral.png)
  2148. @param src input image as \f$W \times H\f$, 8-bit or floating-point (32f or 64f).
  2149. @param sum integral image as \f$(W+1)\times (H+1)\f$ , 32-bit integer or floating-point (32f or 64f).
  2150. @param sqsum integral image for squared pixel values; it is \f$(W+1)\times (H+1)\f$, double-precision
  2151. floating-point (64f) array.
  2152. @param tilted integral for the image rotated by 45 degrees; it is \f$(W+1)\times (H+1)\f$ array with
  2153. the same data type as sum.
  2154. @param sdepth desired depth of the integral and the tilted integral images, CV_32S, CV_32F, or
  2155. CV_64F.
  2156. @param sqdepth desired depth of the integral image of squared pixel values, CV_32F or CV_64F.
  2157. */
  2158. CV_EXPORTS_AS(integral3) void integral( InputArray src, OutputArray sum,
  2159. OutputArray sqsum, OutputArray tilted,
  2160. int sdepth = -1, int sqdepth = -1 );
  2161. //! @} imgproc_misc
  2162. //! @addtogroup imgproc_motion
  2163. //! @{
  2164. /** @brief Adds an image to the accumulator image.
  2165. The function adds src or some of its elements to dst :
  2166. \f[\texttt{dst} (x,y) \leftarrow \texttt{dst} (x,y) + \texttt{src} (x,y) \quad \text{if} \quad \texttt{mask} (x,y) \ne 0\f]
  2167. The function supports multi-channel images. Each channel is processed independently.
  2168. The function cv::accumulate can be used, for example, to collect statistics of a scene background
  2169. viewed by a still camera and for the further foreground-background segmentation.
  2170. @param src Input image of type CV_8UC(n), CV_16UC(n), CV_32FC(n) or CV_64FC(n), where n is a positive integer.
  2171. @param dst %Accumulator image with the same number of channels as input image, and a depth of CV_32F or CV_64F.
  2172. @param mask Optional operation mask.
  2173. @sa accumulateSquare, accumulateProduct, accumulateWeighted
  2174. */
  2175. CV_EXPORTS_W void accumulate( InputArray src, InputOutputArray dst,
  2176. InputArray mask = noArray() );
  2177. /** @brief Adds the square of a source image to the accumulator image.
  2178. The function adds the input image src or its selected region, raised to a power of 2, to the
  2179. accumulator dst :
  2180. \f[\texttt{dst} (x,y) \leftarrow \texttt{dst} (x,y) + \texttt{src} (x,y)^2 \quad \text{if} \quad \texttt{mask} (x,y) \ne 0\f]
  2181. The function supports multi-channel images. Each channel is processed independently.
  2182. @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  2183. @param dst %Accumulator image with the same number of channels as input image, 32-bit or 64-bit
  2184. floating-point.
  2185. @param mask Optional operation mask.
  2186. @sa accumulateSquare, accumulateProduct, accumulateWeighted
  2187. */
  2188. CV_EXPORTS_W void accumulateSquare( InputArray src, InputOutputArray dst,
  2189. InputArray mask = noArray() );
  2190. /** @brief Adds the per-element product of two input images to the accumulator image.
  2191. The function adds the product of two images or their selected regions to the accumulator dst :
  2192. \f[\texttt{dst} (x,y) \leftarrow \texttt{dst} (x,y) + \texttt{src1} (x,y) \cdot \texttt{src2} (x,y) \quad \text{if} \quad \texttt{mask} (x,y) \ne 0\f]
  2193. The function supports multi-channel images. Each channel is processed independently.
  2194. @param src1 First input image, 1- or 3-channel, 8-bit or 32-bit floating point.
  2195. @param src2 Second input image of the same type and the same size as src1 .
  2196. @param dst %Accumulator image with the same number of channels as input images, 32-bit or 64-bit
  2197. floating-point.
  2198. @param mask Optional operation mask.
  2199. @sa accumulate, accumulateSquare, accumulateWeighted
  2200. */
  2201. CV_EXPORTS_W void accumulateProduct( InputArray src1, InputArray src2,
  2202. InputOutputArray dst, InputArray mask=noArray() );
  2203. /** @brief Updates a running average.
  2204. The function calculates the weighted sum of the input image src and the accumulator dst so that dst
  2205. becomes a running average of a frame sequence:
  2206. \f[\texttt{dst} (x,y) \leftarrow (1- \texttt{alpha} ) \cdot \texttt{dst} (x,y) + \texttt{alpha} \cdot \texttt{src} (x,y) \quad \text{if} \quad \texttt{mask} (x,y) \ne 0\f]
  2207. That is, alpha regulates the update speed (how fast the accumulator "forgets" about earlier images).
  2208. The function supports multi-channel images. Each channel is processed independently.
  2209. @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  2210. @param dst %Accumulator image with the same number of channels as input image, 32-bit or 64-bit
  2211. floating-point.
  2212. @param alpha Weight of the input image.
  2213. @param mask Optional operation mask.
  2214. @sa accumulate, accumulateSquare, accumulateProduct
  2215. */
  2216. CV_EXPORTS_W void accumulateWeighted( InputArray src, InputOutputArray dst,
  2217. double alpha, InputArray mask = noArray() );
  2218. /** @brief The function is used to detect translational shifts that occur between two images.
  2219. The operation takes advantage of the Fourier shift theorem for detecting the translational shift in
  2220. the frequency domain. It can be used for fast image registration as well as motion estimation. For
  2221. more information please see <http://en.wikipedia.org/wiki/Phase_correlation>
  2222. Calculates the cross-power spectrum of two supplied source arrays. The arrays are padded if needed
  2223. with getOptimalDFTSize.
  2224. The function performs the following equations:
  2225. - First it applies a Hanning window (see <http://en.wikipedia.org/wiki/Hann_function>) to each
  2226. image to remove possible edge effects. This window is cached until the array size changes to speed
  2227. up processing time.
  2228. - Next it computes the forward DFTs of each source array:
  2229. \f[\mathbf{G}_a = \mathcal{F}\{src_1\}, \; \mathbf{G}_b = \mathcal{F}\{src_2\}\f]
  2230. where \f$\mathcal{F}\f$ is the forward DFT.
  2231. - It then computes the cross-power spectrum of each frequency domain array:
  2232. \f[R = \frac{ \mathbf{G}_a \mathbf{G}_b^*}{|\mathbf{G}_a \mathbf{G}_b^*|}\f]
  2233. - Next the cross-correlation is converted back into the time domain via the inverse DFT:
  2234. \f[r = \mathcal{F}^{-1}\{R\}\f]
  2235. - Finally, it computes the peak location and computes a 5x5 weighted centroid around the peak to
  2236. achieve sub-pixel accuracy.
  2237. \f[(\Delta x, \Delta y) = \texttt{weightedCentroid} \{\arg \max_{(x, y)}\{r\}\}\f]
  2238. - If non-zero, the response parameter is computed as the sum of the elements of r within the 5x5
  2239. centroid around the peak location. It is normalized to a maximum of 1 (meaning there is a single
  2240. peak) and will be smaller when there are multiple peaks.
  2241. @param src1 Source floating point array (CV_32FC1 or CV_64FC1)
  2242. @param src2 Source floating point array (CV_32FC1 or CV_64FC1)
  2243. @param window Floating point array with windowing coefficients to reduce edge effects (optional).
  2244. @param response Signal power within the 5x5 centroid around the peak, between 0 and 1 (optional).
  2245. @returns detected phase shift (sub-pixel) between the two arrays.
  2246. @sa dft, getOptimalDFTSize, idft, mulSpectrums createHanningWindow
  2247. */
  2248. CV_EXPORTS_W Point2d phaseCorrelate(InputArray src1, InputArray src2,
  2249. InputArray window = noArray(), CV_OUT double* response = 0);
  2250. /** @brief This function computes a Hanning window coefficients in two dimensions.
  2251. See (http://en.wikipedia.org/wiki/Hann_function) and (http://en.wikipedia.org/wiki/Window_function)
  2252. for more information.
  2253. An example is shown below:
  2254. @code
  2255. // create hanning window of size 100x100 and type CV_32F
  2256. Mat hann;
  2257. createHanningWindow(hann, Size(100, 100), CV_32F);
  2258. @endcode
  2259. @param dst Destination array to place Hann coefficients in
  2260. @param winSize The window size specifications (both width and height must be > 1)
  2261. @param type Created array type
  2262. */
  2263. CV_EXPORTS_W void createHanningWindow(OutputArray dst, Size winSize, int type);
  2264. //! @} imgproc_motion
  2265. //! @addtogroup imgproc_misc
  2266. //! @{
  2267. /** @brief Applies a fixed-level threshold to each array element.
  2268. The function applies fixed-level thresholding to a multiple-channel array. The function is typically
  2269. used to get a bi-level (binary) image out of a grayscale image ( #compare could be also used for
  2270. this purpose) or for removing a noise, that is, filtering out pixels with too small or too large
  2271. values. There are several types of thresholding supported by the function. They are determined by
  2272. type parameter.
  2273. Also, the special values #THRESH_OTSU or #THRESH_TRIANGLE may be combined with one of the
  2274. above values. In these cases, the function determines the optimal threshold value using the Otsu's
  2275. or Triangle algorithm and uses it instead of the specified thresh.
  2276. @note Currently, the Otsu's and Triangle methods are implemented only for 8-bit single-channel images.
  2277. @param src input array (multiple-channel, 8-bit or 32-bit floating point).
  2278. @param dst output array of the same size and type and the same number of channels as src.
  2279. @param thresh threshold value.
  2280. @param maxval maximum value to use with the #THRESH_BINARY and #THRESH_BINARY_INV thresholding
  2281. types.
  2282. @param type thresholding type (see #ThresholdTypes).
  2283. @return the computed threshold value if Otsu's or Triangle methods used.
  2284. @sa adaptiveThreshold, findContours, compare, min, max
  2285. */
  2286. CV_EXPORTS_W double threshold( InputArray src, OutputArray dst,
  2287. double thresh, double maxval, int type );
  2288. /** @brief Applies an adaptive threshold to an array.
  2289. The function transforms a grayscale image to a binary image according to the formulae:
  2290. - **THRESH_BINARY**
  2291. \f[dst(x,y) = \fork{\texttt{maxValue}}{if \(src(x,y) > T(x,y)\)}{0}{otherwise}\f]
  2292. - **THRESH_BINARY_INV**
  2293. \f[dst(x,y) = \fork{0}{if \(src(x,y) > T(x,y)\)}{\texttt{maxValue}}{otherwise}\f]
  2294. where \f$T(x,y)\f$ is a threshold calculated individually for each pixel (see adaptiveMethod parameter).
  2295. The function can process the image in-place.
  2296. @param src Source 8-bit single-channel image.
  2297. @param dst Destination image of the same size and the same type as src.
  2298. @param maxValue Non-zero value assigned to the pixels for which the condition is satisfied
  2299. @param adaptiveMethod Adaptive thresholding algorithm to use, see #AdaptiveThresholdTypes.
  2300. The #BORDER_REPLICATE | #BORDER_ISOLATED is used to process boundaries.
  2301. @param thresholdType Thresholding type that must be either #THRESH_BINARY or #THRESH_BINARY_INV,
  2302. see #ThresholdTypes.
  2303. @param blockSize Size of a pixel neighborhood that is used to calculate a threshold value for the
  2304. pixel: 3, 5, 7, and so on.
  2305. @param C Constant subtracted from the mean or weighted mean (see the details below). Normally, it
  2306. is positive but may be zero or negative as well.
  2307. @sa threshold, blur, GaussianBlur
  2308. */
  2309. CV_EXPORTS_W void adaptiveThreshold( InputArray src, OutputArray dst,
  2310. double maxValue, int adaptiveMethod,
  2311. int thresholdType, int blockSize, double C );
  2312. //! @} imgproc_misc
  2313. //! @addtogroup imgproc_filter
  2314. //! @{
  2315. /** @example samples/cpp/tutorial_code/ImgProc/Pyramids/Pyramids.cpp
  2316. An example using pyrDown and pyrUp functions
  2317. */
  2318. /** @brief Blurs an image and downsamples it.
  2319. By default, size of the output image is computed as `Size((src.cols+1)/2, (src.rows+1)/2)`, but in
  2320. any case, the following conditions should be satisfied:
  2321. \f[\begin{array}{l} | \texttt{dstsize.width} *2-src.cols| \leq 2 \\ | \texttt{dstsize.height} *2-src.rows| \leq 2 \end{array}\f]
  2322. The function performs the downsampling step of the Gaussian pyramid construction. First, it
  2323. convolves the source image with the kernel:
  2324. \f[\frac{1}{256} \begin{bmatrix} 1 & 4 & 6 & 4 & 1 \\ 4 & 16 & 24 & 16 & 4 \\ 6 & 24 & 36 & 24 & 6 \\ 4 & 16 & 24 & 16 & 4 \\ 1 & 4 & 6 & 4 & 1 \end{bmatrix}\f]
  2325. Then, it downsamples the image by rejecting even rows and columns.
  2326. @param src input image.
  2327. @param dst output image; it has the specified size and the same type as src.
  2328. @param dstsize size of the output image.
  2329. @param borderType Pixel extrapolation method, see #BorderTypes (#BORDER_CONSTANT isn't supported)
  2330. */
  2331. CV_EXPORTS_W void pyrDown( InputArray src, OutputArray dst,
  2332. const Size& dstsize = Size(), int borderType = BORDER_DEFAULT );
  2333. /** @brief Upsamples an image and then blurs it.
  2334. By default, size of the output image is computed as `Size(src.cols\*2, (src.rows\*2)`, but in any
  2335. case, the following conditions should be satisfied:
  2336. \f[\begin{array}{l} | \texttt{dstsize.width} -src.cols*2| \leq ( \texttt{dstsize.width} \mod 2) \\ | \texttt{dstsize.height} -src.rows*2| \leq ( \texttt{dstsize.height} \mod 2) \end{array}\f]
  2337. The function performs the upsampling step of the Gaussian pyramid construction, though it can
  2338. actually be used to construct the Laplacian pyramid. First, it upsamples the source image by
  2339. injecting even zero rows and columns and then convolves the result with the same kernel as in
  2340. pyrDown multiplied by 4.
  2341. @param src input image.
  2342. @param dst output image. It has the specified size and the same type as src .
  2343. @param dstsize size of the output image.
  2344. @param borderType Pixel extrapolation method, see #BorderTypes (only #BORDER_DEFAULT is supported)
  2345. */
  2346. CV_EXPORTS_W void pyrUp( InputArray src, OutputArray dst,
  2347. const Size& dstsize = Size(), int borderType = BORDER_DEFAULT );
  2348. /** @brief Constructs the Gaussian pyramid for an image.
  2349. The function constructs a vector of images and builds the Gaussian pyramid by recursively applying
  2350. pyrDown to the previously built pyramid layers, starting from `dst[0]==src`.
  2351. @param src Source image. Check pyrDown for the list of supported types.
  2352. @param dst Destination vector of maxlevel+1 images of the same type as src. dst[0] will be the
  2353. same as src. dst[1] is the next pyramid layer, a smoothed and down-sized src, and so on.
  2354. @param maxlevel 0-based index of the last (the smallest) pyramid layer. It must be non-negative.
  2355. @param borderType Pixel extrapolation method, see #BorderTypes (#BORDER_CONSTANT isn't supported)
  2356. */
  2357. CV_EXPORTS void buildPyramid( InputArray src, OutputArrayOfArrays dst,
  2358. int maxlevel, int borderType = BORDER_DEFAULT );
  2359. //! @} imgproc_filter
  2360. //! @addtogroup imgproc_transform
  2361. //! @{
  2362. /** @brief Transforms an image to compensate for lens distortion.
  2363. The function transforms an image to compensate radial and tangential lens distortion.
  2364. The function is simply a combination of #initUndistortRectifyMap (with unity R ) and #remap
  2365. (with bilinear interpolation). See the former function for details of the transformation being
  2366. performed.
  2367. Those pixels in the destination image, for which there is no correspondent pixels in the source
  2368. image, are filled with zeros (black color).
  2369. A particular subset of the source image that will be visible in the corrected image can be regulated
  2370. by newCameraMatrix. You can use #getOptimalNewCameraMatrix to compute the appropriate
  2371. newCameraMatrix depending on your requirements.
  2372. The camera matrix and the distortion parameters can be determined using #calibrateCamera. If
  2373. the resolution of images is different from the resolution used at the calibration stage, \f$f_x,
  2374. f_y, c_x\f$ and \f$c_y\f$ need to be scaled accordingly, while the distortion coefficients remain
  2375. the same.
  2376. @param src Input (distorted) image.
  2377. @param dst Output (corrected) image that has the same size and type as src .
  2378. @param cameraMatrix Input camera matrix \f$A = \vecthreethree{f_x}{0}{c_x}{0}{f_y}{c_y}{0}{0}{1}\f$ .
  2379. @param distCoeffs Input vector of distortion coefficients
  2380. \f$(k_1, k_2, p_1, p_2[, k_3[, k_4, k_5, k_6[, s_1, s_2, s_3, s_4[, \tau_x, \tau_y]]]])\f$
  2381. of 4, 5, 8, 12 or 14 elements. If the vector is NULL/empty, the zero distortion coefficients are assumed.
  2382. @param newCameraMatrix Camera matrix of the distorted image. By default, it is the same as
  2383. cameraMatrix but you may additionally scale and shift the result by using a different matrix.
  2384. */
  2385. CV_EXPORTS_W void undistort( InputArray src, OutputArray dst,
  2386. InputArray cameraMatrix,
  2387. InputArray distCoeffs,
  2388. InputArray newCameraMatrix = noArray() );
  2389. /** @brief Computes the undistortion and rectification transformation map.
  2390. The function computes the joint undistortion and rectification transformation and represents the
  2391. result in the form of maps for remap. The undistorted image looks like original, as if it is
  2392. captured with a camera using the camera matrix =newCameraMatrix and zero distortion. In case of a
  2393. monocular camera, newCameraMatrix is usually equal to cameraMatrix, or it can be computed by
  2394. #getOptimalNewCameraMatrix for a better control over scaling. In case of a stereo camera,
  2395. newCameraMatrix is normally set to P1 or P2 computed by #stereoRectify .
  2396. Also, this new camera is oriented differently in the coordinate space, according to R. That, for
  2397. example, helps to align two heads of a stereo camera so that the epipolar lines on both images
  2398. become horizontal and have the same y- coordinate (in case of a horizontally aligned stereo camera).
  2399. The function actually builds the maps for the inverse mapping algorithm that is used by remap. That
  2400. is, for each pixel \f$(u, v)\f$ in the destination (corrected and rectified) image, the function
  2401. computes the corresponding coordinates in the source image (that is, in the original image from
  2402. camera). The following process is applied:
  2403. \f[
  2404. \begin{array}{l}
  2405. x \leftarrow (u - {c'}_x)/{f'}_x \\
  2406. y \leftarrow (v - {c'}_y)/{f'}_y \\
  2407. {[X\,Y\,W]} ^T \leftarrow R^{-1}*[x \, y \, 1]^T \\
  2408. x' \leftarrow X/W \\
  2409. y' \leftarrow Y/W \\
  2410. r^2 \leftarrow x'^2 + y'^2 \\
  2411. x'' \leftarrow x' \frac{1 + k_1 r^2 + k_2 r^4 + k_3 r^6}{1 + k_4 r^2 + k_5 r^4 + k_6 r^6}
  2412. + 2p_1 x' y' + p_2(r^2 + 2 x'^2) + s_1 r^2 + s_2 r^4\\
  2413. y'' \leftarrow y' \frac{1 + k_1 r^2 + k_2 r^4 + k_3 r^6}{1 + k_4 r^2 + k_5 r^4 + k_6 r^6}
  2414. + p_1 (r^2 + 2 y'^2) + 2 p_2 x' y' + s_3 r^2 + s_4 r^4 \\
  2415. s\vecthree{x'''}{y'''}{1} =
  2416. \vecthreethree{R_{33}(\tau_x, \tau_y)}{0}{-R_{13}((\tau_x, \tau_y)}
  2417. {0}{R_{33}(\tau_x, \tau_y)}{-R_{23}(\tau_x, \tau_y)}
  2418. {0}{0}{1} R(\tau_x, \tau_y) \vecthree{x''}{y''}{1}\\
  2419. map_x(u,v) \leftarrow x''' f_x + c_x \\
  2420. map_y(u,v) \leftarrow y''' f_y + c_y
  2421. \end{array}
  2422. \f]
  2423. where \f$(k_1, k_2, p_1, p_2[, k_3[, k_4, k_5, k_6[, s_1, s_2, s_3, s_4[, \tau_x, \tau_y]]]])\f$
  2424. are the distortion coefficients.
  2425. In case of a stereo camera, this function is called twice: once for each camera head, after
  2426. stereoRectify, which in its turn is called after #stereoCalibrate. But if the stereo camera
  2427. was not calibrated, it is still possible to compute the rectification transformations directly from
  2428. the fundamental matrix using #stereoRectifyUncalibrated. For each camera, the function computes
  2429. homography H as the rectification transformation in a pixel domain, not a rotation matrix R in 3D
  2430. space. R can be computed from H as
  2431. \f[\texttt{R} = \texttt{cameraMatrix} ^{-1} \cdot \texttt{H} \cdot \texttt{cameraMatrix}\f]
  2432. where cameraMatrix can be chosen arbitrarily.
  2433. @param cameraMatrix Input camera matrix \f$A=\vecthreethree{f_x}{0}{c_x}{0}{f_y}{c_y}{0}{0}{1}\f$ .
  2434. @param distCoeffs Input vector of distortion coefficients
  2435. \f$(k_1, k_2, p_1, p_2[, k_3[, k_4, k_5, k_6[, s_1, s_2, s_3, s_4[, \tau_x, \tau_y]]]])\f$
  2436. of 4, 5, 8, 12 or 14 elements. If the vector is NULL/empty, the zero distortion coefficients are assumed.
  2437. @param R Optional rectification transformation in the object space (3x3 matrix). R1 or R2 ,
  2438. computed by #stereoRectify can be passed here. If the matrix is empty, the identity transformation
  2439. is assumed. In cvInitUndistortMap R assumed to be an identity matrix.
  2440. @param newCameraMatrix New camera matrix \f$A'=\vecthreethree{f_x'}{0}{c_x'}{0}{f_y'}{c_y'}{0}{0}{1}\f$.
  2441. @param size Undistorted image size.
  2442. @param m1type Type of the first output map that can be CV_32FC1, CV_32FC2 or CV_16SC2, see #convertMaps
  2443. @param map1 The first output map.
  2444. @param map2 The second output map.
  2445. */
  2446. CV_EXPORTS_W void initUndistortRectifyMap( InputArray cameraMatrix, InputArray distCoeffs,
  2447. InputArray R, InputArray newCameraMatrix,
  2448. Size size, int m1type, OutputArray map1, OutputArray map2 );
  2449. //! initializes maps for #remap for wide-angle
  2450. CV_EXPORTS_W float initWideAngleProjMap( InputArray cameraMatrix, InputArray distCoeffs,
  2451. Size imageSize, int destImageWidth,
  2452. int m1type, OutputArray map1, OutputArray map2,
  2453. int projType = PROJ_SPHERICAL_EQRECT, double alpha = 0);
  2454. /** @brief Returns the default new camera matrix.
  2455. The function returns the camera matrix that is either an exact copy of the input cameraMatrix (when
  2456. centerPrinicipalPoint=false ), or the modified one (when centerPrincipalPoint=true).
  2457. In the latter case, the new camera matrix will be:
  2458. \f[\begin{bmatrix} f_x && 0 && ( \texttt{imgSize.width} -1)*0.5 \\ 0 && f_y && ( \texttt{imgSize.height} -1)*0.5 \\ 0 && 0 && 1 \end{bmatrix} ,\f]
  2459. where \f$f_x\f$ and \f$f_y\f$ are \f$(0,0)\f$ and \f$(1,1)\f$ elements of cameraMatrix, respectively.
  2460. By default, the undistortion functions in OpenCV (see #initUndistortRectifyMap, #undistort) do not
  2461. move the principal point. However, when you work with stereo, it is important to move the principal
  2462. points in both views to the same y-coordinate (which is required by most of stereo correspondence
  2463. algorithms), and may be to the same x-coordinate too. So, you can form the new camera matrix for
  2464. each view where the principal points are located at the center.
  2465. @param cameraMatrix Input camera matrix.
  2466. @param imgsize Camera view image size in pixels.
  2467. @param centerPrincipalPoint Location of the principal point in the new camera matrix. The
  2468. parameter indicates whether this location should be at the image center or not.
  2469. */
  2470. CV_EXPORTS_W Mat getDefaultNewCameraMatrix( InputArray cameraMatrix, Size imgsize = Size(),
  2471. bool centerPrincipalPoint = false );
  2472. /** @brief Computes the ideal point coordinates from the observed point coordinates.
  2473. The function is similar to #undistort and #initUndistortRectifyMap but it operates on a
  2474. sparse set of points instead of a raster image. Also the function performs a reverse transformation
  2475. to projectPoints. In case of a 3D object, it does not reconstruct its 3D coordinates, but for a
  2476. planar object, it does, up to a translation vector, if the proper R is specified.
  2477. For each observed point coordinate \f$(u, v)\f$ the function computes:
  2478. \f[
  2479. \begin{array}{l}
  2480. x^{"} \leftarrow (u - c_x)/f_x \\
  2481. y^{"} \leftarrow (v - c_y)/f_y \\
  2482. (x',y') = undistort(x^{"},y^{"}, \texttt{distCoeffs}) \\
  2483. {[X\,Y\,W]} ^T \leftarrow R*[x' \, y' \, 1]^T \\
  2484. x \leftarrow X/W \\
  2485. y \leftarrow Y/W \\
  2486. \text{only performed if P is specified:} \\
  2487. u' \leftarrow x {f'}_x + {c'}_x \\
  2488. v' \leftarrow y {f'}_y + {c'}_y
  2489. \end{array}
  2490. \f]
  2491. where *undistort* is an approximate iterative algorithm that estimates the normalized original
  2492. point coordinates out of the normalized distorted point coordinates ("normalized" means that the
  2493. coordinates do not depend on the camera matrix).
  2494. The function can be used for both a stereo camera head or a monocular camera (when R is empty).
  2495. @param src Observed point coordinates, 2xN/Nx2 1-channel or 1xN/Nx1 2-channel (CV_32FC2 or CV_64FC2) (or
  2496. vector\<Point2f\> ).
  2497. @param dst Output ideal point coordinates (1xN/Nx1 2-channel or vector\<Point2f\> ) after undistortion and reverse perspective
  2498. transformation. If matrix P is identity or omitted, dst will contain normalized point coordinates.
  2499. @param cameraMatrix Camera matrix \f$\vecthreethree{f_x}{0}{c_x}{0}{f_y}{c_y}{0}{0}{1}\f$ .
  2500. @param distCoeffs Input vector of distortion coefficients
  2501. \f$(k_1, k_2, p_1, p_2[, k_3[, k_4, k_5, k_6[, s_1, s_2, s_3, s_4[, \tau_x, \tau_y]]]])\f$
  2502. of 4, 5, 8, 12 or 14 elements. If the vector is NULL/empty, the zero distortion coefficients are assumed.
  2503. @param R Rectification transformation in the object space (3x3 matrix). R1 or R2 computed by
  2504. #stereoRectify can be passed here. If the matrix is empty, the identity transformation is used.
  2505. @param P New camera matrix (3x3) or new projection matrix (3x4) \f$\begin{bmatrix} {f'}_x & 0 & {c'}_x & t_x \\ 0 & {f'}_y & {c'}_y & t_y \\ 0 & 0 & 1 & t_z \end{bmatrix}\f$. P1 or P2 computed by
  2506. #stereoRectify can be passed here. If the matrix is empty, the identity new camera matrix is used.
  2507. */
  2508. CV_EXPORTS_W void undistortPoints( InputArray src, OutputArray dst,
  2509. InputArray cameraMatrix, InputArray distCoeffs,
  2510. InputArray R = noArray(), InputArray P = noArray() );
  2511. /** @overload
  2512. @note Default version of #undistortPoints does 5 iterations to compute undistorted points.
  2513. */
  2514. CV_EXPORTS_AS(undistortPointsIter) void undistortPoints( InputArray src, OutputArray dst,
  2515. InputArray cameraMatrix, InputArray distCoeffs,
  2516. InputArray R, InputArray P, TermCriteria criteria );
  2517. //! @} imgproc_transform
  2518. //! @addtogroup imgproc_hist
  2519. //! @{
  2520. /** @example samples/cpp/demhist.cpp
  2521. An example for creating histograms of an image
  2522. */
  2523. /** @brief Calculates a histogram of a set of arrays.
  2524. The function cv::calcHist calculates the histogram of one or more arrays. The elements of a tuple used
  2525. to increment a histogram bin are taken from the corresponding input arrays at the same location. The
  2526. sample below shows how to compute a 2D Hue-Saturation histogram for a color image. :
  2527. @include snippets/imgproc_calcHist.cpp
  2528. @param images Source arrays. They all should have the same depth, CV_8U, CV_16U or CV_32F , and the same
  2529. size. Each of them can have an arbitrary number of channels.
  2530. @param nimages Number of source images.
  2531. @param channels List of the dims channels used to compute the histogram. The first array channels
  2532. are numerated from 0 to images[0].channels()-1 , the second array channels are counted from
  2533. images[0].channels() to images[0].channels() + images[1].channels()-1, and so on.
  2534. @param mask Optional mask. If the matrix is not empty, it must be an 8-bit array of the same size
  2535. as images[i] . The non-zero mask elements mark the array elements counted in the histogram.
  2536. @param hist Output histogram, which is a dense or sparse dims -dimensional array.
  2537. @param dims Histogram dimensionality that must be positive and not greater than CV_MAX_DIMS
  2538. (equal to 32 in the current OpenCV version).
  2539. @param histSize Array of histogram sizes in each dimension.
  2540. @param ranges Array of the dims arrays of the histogram bin boundaries in each dimension. When the
  2541. histogram is uniform ( uniform =true), then for each dimension i it is enough to specify the lower
  2542. (inclusive) boundary \f$L_0\f$ of the 0-th histogram bin and the upper (exclusive) boundary
  2543. \f$U_{\texttt{histSize}[i]-1}\f$ for the last histogram bin histSize[i]-1 . That is, in case of a
  2544. uniform histogram each of ranges[i] is an array of 2 elements. When the histogram is not uniform (
  2545. uniform=false ), then each of ranges[i] contains histSize[i]+1 elements:
  2546. \f$L_0, U_0=L_1, U_1=L_2, ..., U_{\texttt{histSize[i]}-2}=L_{\texttt{histSize[i]}-1}, U_{\texttt{histSize[i]}-1}\f$
  2547. . The array elements, that are not between \f$L_0\f$ and \f$U_{\texttt{histSize[i]}-1}\f$ , are not
  2548. counted in the histogram.
  2549. @param uniform Flag indicating whether the histogram is uniform or not (see above).
  2550. @param accumulate Accumulation flag. If it is set, the histogram is not cleared in the beginning
  2551. when it is allocated. This feature enables you to compute a single histogram from several sets of
  2552. arrays, or to update the histogram in time.
  2553. */
  2554. CV_EXPORTS void calcHist( const Mat* images, int nimages,
  2555. const int* channels, InputArray mask,
  2556. OutputArray hist, int dims, const int* histSize,
  2557. const float** ranges, bool uniform = true, bool accumulate = false );
  2558. /** @overload
  2559. this variant uses %SparseMat for output
  2560. */
  2561. CV_EXPORTS void calcHist( const Mat* images, int nimages,
  2562. const int* channels, InputArray mask,
  2563. SparseMat& hist, int dims,
  2564. const int* histSize, const float** ranges,
  2565. bool uniform = true, bool accumulate = false );
  2566. /** @overload */
  2567. CV_EXPORTS_W void calcHist( InputArrayOfArrays images,
  2568. const std::vector<int>& channels,
  2569. InputArray mask, OutputArray hist,
  2570. const std::vector<int>& histSize,
  2571. const std::vector<float>& ranges,
  2572. bool accumulate = false );
  2573. /** @brief Calculates the back projection of a histogram.
  2574. The function cv::calcBackProject calculates the back project of the histogram. That is, similarly to
  2575. #calcHist , at each location (x, y) the function collects the values from the selected channels
  2576. in the input images and finds the corresponding histogram bin. But instead of incrementing it, the
  2577. function reads the bin value, scales it by scale , and stores in backProject(x,y) . In terms of
  2578. statistics, the function computes probability of each element value in respect with the empirical
  2579. probability distribution represented by the histogram. See how, for example, you can find and track
  2580. a bright-colored object in a scene:
  2581. - Before tracking, show the object to the camera so that it covers almost the whole frame.
  2582. Calculate a hue histogram. The histogram may have strong maximums, corresponding to the dominant
  2583. colors in the object.
  2584. - When tracking, calculate a back projection of a hue plane of each input video frame using that
  2585. pre-computed histogram. Threshold the back projection to suppress weak colors. It may also make
  2586. sense to suppress pixels with non-sufficient color saturation and too dark or too bright pixels.
  2587. - Find connected components in the resulting picture and choose, for example, the largest
  2588. component.
  2589. This is an approximate algorithm of the CamShift color object tracker.
  2590. @param images Source arrays. They all should have the same depth, CV_8U, CV_16U or CV_32F , and the same
  2591. size. Each of them can have an arbitrary number of channels.
  2592. @param nimages Number of source images.
  2593. @param channels The list of channels used to compute the back projection. The number of channels
  2594. must match the histogram dimensionality. The first array channels are numerated from 0 to
  2595. images[0].channels()-1 , the second array channels are counted from images[0].channels() to
  2596. images[0].channels() + images[1].channels()-1, and so on.
  2597. @param hist Input histogram that can be dense or sparse.
  2598. @param backProject Destination back projection array that is a single-channel array of the same
  2599. size and depth as images[0] .
  2600. @param ranges Array of arrays of the histogram bin boundaries in each dimension. See #calcHist .
  2601. @param scale Optional scale factor for the output back projection.
  2602. @param uniform Flag indicating whether the histogram is uniform or not (see above).
  2603. @sa calcHist, compareHist
  2604. */
  2605. CV_EXPORTS void calcBackProject( const Mat* images, int nimages,
  2606. const int* channels, InputArray hist,
  2607. OutputArray backProject, const float** ranges,
  2608. double scale = 1, bool uniform = true );
  2609. /** @overload */
  2610. CV_EXPORTS void calcBackProject( const Mat* images, int nimages,
  2611. const int* channels, const SparseMat& hist,
  2612. OutputArray backProject, const float** ranges,
  2613. double scale = 1, bool uniform = true );
  2614. /** @overload */
  2615. CV_EXPORTS_W void calcBackProject( InputArrayOfArrays images, const std::vector<int>& channels,
  2616. InputArray hist, OutputArray dst,
  2617. const std::vector<float>& ranges,
  2618. double scale );
  2619. /** @brief Compares two histograms.
  2620. The function cv::compareHist compares two dense or two sparse histograms using the specified method.
  2621. The function returns \f$d(H_1, H_2)\f$ .
  2622. While the function works well with 1-, 2-, 3-dimensional dense histograms, it may not be suitable
  2623. for high-dimensional sparse histograms. In such histograms, because of aliasing and sampling
  2624. problems, the coordinates of non-zero histogram bins can slightly shift. To compare such histograms
  2625. or more general sparse configurations of weighted points, consider using the #EMD function.
  2626. @param H1 First compared histogram.
  2627. @param H2 Second compared histogram of the same size as H1 .
  2628. @param method Comparison method, see #HistCompMethods
  2629. */
  2630. CV_EXPORTS_W double compareHist( InputArray H1, InputArray H2, int method );
  2631. /** @overload */
  2632. CV_EXPORTS double compareHist( const SparseMat& H1, const SparseMat& H2, int method );
  2633. /** @brief Equalizes the histogram of a grayscale image.
  2634. The function equalizes the histogram of the input image using the following algorithm:
  2635. - Calculate the histogram \f$H\f$ for src .
  2636. - Normalize the histogram so that the sum of histogram bins is 255.
  2637. - Compute the integral of the histogram:
  2638. \f[H'_i = \sum _{0 \le j < i} H(j)\f]
  2639. - Transform the image using \f$H'\f$ as a look-up table: \f$\texttt{dst}(x,y) = H'(\texttt{src}(x,y))\f$
  2640. The algorithm normalizes the brightness and increases the contrast of the image.
  2641. @param src Source 8-bit single channel image.
  2642. @param dst Destination image of the same size and type as src .
  2643. */
  2644. CV_EXPORTS_W void equalizeHist( InputArray src, OutputArray dst );
  2645. /** @brief Creates a smart pointer to a cv::CLAHE class and initializes it.
  2646. @param clipLimit Threshold for contrast limiting.
  2647. @param tileGridSize Size of grid for histogram equalization. Input image will be divided into
  2648. equally sized rectangular tiles. tileGridSize defines the number of tiles in row and column.
  2649. */
  2650. CV_EXPORTS_W Ptr<CLAHE> createCLAHE(double clipLimit = 40.0, Size tileGridSize = Size(8, 8));
  2651. /** @brief Computes the "minimal work" distance between two weighted point configurations.
  2652. The function computes the earth mover distance and/or a lower boundary of the distance between the
  2653. two weighted point configurations. One of the applications described in @cite RubnerSept98,
  2654. @cite Rubner2000 is multi-dimensional histogram comparison for image retrieval. EMD is a transportation
  2655. problem that is solved using some modification of a simplex algorithm, thus the complexity is
  2656. exponential in the worst case, though, on average it is much faster. In the case of a real metric
  2657. the lower boundary can be calculated even faster (using linear-time algorithm) and it can be used
  2658. to determine roughly whether the two signatures are far enough so that they cannot relate to the
  2659. same object.
  2660. @param signature1 First signature, a \f$\texttt{size1}\times \texttt{dims}+1\f$ floating-point matrix.
  2661. Each row stores the point weight followed by the point coordinates. The matrix is allowed to have
  2662. a single column (weights only) if the user-defined cost matrix is used. The weights must be
  2663. non-negative and have at least one non-zero value.
  2664. @param signature2 Second signature of the same format as signature1 , though the number of rows
  2665. may be different. The total weights may be different. In this case an extra "dummy" point is added
  2666. to either signature1 or signature2. The weights must be non-negative and have at least one non-zero
  2667. value.
  2668. @param distType Used metric. See #DistanceTypes.
  2669. @param cost User-defined \f$\texttt{size1}\times \texttt{size2}\f$ cost matrix. Also, if a cost matrix
  2670. is used, lower boundary lowerBound cannot be calculated because it needs a metric function.
  2671. @param lowerBound Optional input/output parameter: lower boundary of a distance between the two
  2672. signatures that is a distance between mass centers. The lower boundary may not be calculated if
  2673. the user-defined cost matrix is used, the total weights of point configurations are not equal, or
  2674. if the signatures consist of weights only (the signature matrices have a single column). You
  2675. **must** initialize \*lowerBound . If the calculated distance between mass centers is greater or
  2676. equal to \*lowerBound (it means that the signatures are far enough), the function does not
  2677. calculate EMD. In any case \*lowerBound is set to the calculated distance between mass centers on
  2678. return. Thus, if you want to calculate both distance between mass centers and EMD, \*lowerBound
  2679. should be set to 0.
  2680. @param flow Resultant \f$\texttt{size1} \times \texttt{size2}\f$ flow matrix: \f$\texttt{flow}_{i,j}\f$ is
  2681. a flow from \f$i\f$ -th point of signature1 to \f$j\f$ -th point of signature2 .
  2682. */
  2683. CV_EXPORTS float EMD( InputArray signature1, InputArray signature2,
  2684. int distType, InputArray cost=noArray(),
  2685. float* lowerBound = 0, OutputArray flow = noArray() );
  2686. CV_EXPORTS_AS(EMD) float wrapperEMD( InputArray signature1, InputArray signature2,
  2687. int distType, InputArray cost=noArray(),
  2688. CV_IN_OUT Ptr<float> lowerBound = Ptr<float>(), OutputArray flow = noArray() );
  2689. //! @} imgproc_hist
  2690. /** @example samples/cpp/watershed.cpp
  2691. An example using the watershed algorithm
  2692. */
  2693. /** @brief Performs a marker-based image segmentation using the watershed algorithm.
  2694. The function implements one of the variants of watershed, non-parametric marker-based segmentation
  2695. algorithm, described in @cite Meyer92 .
  2696. Before passing the image to the function, you have to roughly outline the desired regions in the
  2697. image markers with positive (\>0) indices. So, every region is represented as one or more connected
  2698. components with the pixel values 1, 2, 3, and so on. Such markers can be retrieved from a binary
  2699. mask using #findContours and #drawContours (see the watershed.cpp demo). The markers are "seeds" of
  2700. the future image regions. All the other pixels in markers , whose relation to the outlined regions
  2701. is not known and should be defined by the algorithm, should be set to 0's. In the function output,
  2702. each pixel in markers is set to a value of the "seed" components or to -1 at boundaries between the
  2703. regions.
  2704. @note Any two neighbor connected components are not necessarily separated by a watershed boundary
  2705. (-1's pixels); for example, they can touch each other in the initial marker image passed to the
  2706. function.
  2707. @param image Input 8-bit 3-channel image.
  2708. @param markers Input/output 32-bit single-channel image (map) of markers. It should have the same
  2709. size as image .
  2710. @sa findContours
  2711. @ingroup imgproc_misc
  2712. */
  2713. CV_EXPORTS_W void watershed( InputArray image, InputOutputArray markers );
  2714. //! @addtogroup imgproc_filter
  2715. //! @{
  2716. /** @brief Performs initial step of meanshift segmentation of an image.
  2717. The function implements the filtering stage of meanshift segmentation, that is, the output of the
  2718. function is the filtered "posterized" image with color gradients and fine-grain texture flattened.
  2719. At every pixel (X,Y) of the input image (or down-sized input image, see below) the function executes
  2720. meanshift iterations, that is, the pixel (X,Y) neighborhood in the joint space-color hyperspace is
  2721. considered:
  2722. \f[(x,y): X- \texttt{sp} \le x \le X+ \texttt{sp} , Y- \texttt{sp} \le y \le Y+ \texttt{sp} , ||(R,G,B)-(r,g,b)|| \le \texttt{sr}\f]
  2723. where (R,G,B) and (r,g,b) are the vectors of color components at (X,Y) and (x,y), respectively
  2724. (though, the algorithm does not depend on the color space used, so any 3-component color space can
  2725. be used instead). Over the neighborhood the average spatial value (X',Y') and average color vector
  2726. (R',G',B') are found and they act as the neighborhood center on the next iteration:
  2727. \f[(X,Y)~(X',Y'), (R,G,B)~(R',G',B').\f]
  2728. After the iterations over, the color components of the initial pixel (that is, the pixel from where
  2729. the iterations started) are set to the final value (average color at the last iteration):
  2730. \f[I(X,Y) <- (R*,G*,B*)\f]
  2731. When maxLevel \> 0, the gaussian pyramid of maxLevel+1 levels is built, and the above procedure is
  2732. run on the smallest layer first. After that, the results are propagated to the larger layer and the
  2733. iterations are run again only on those pixels where the layer colors differ by more than sr from the
  2734. lower-resolution layer of the pyramid. That makes boundaries of color regions sharper. Note that the
  2735. results will be actually different from the ones obtained by running the meanshift procedure on the
  2736. whole original image (i.e. when maxLevel==0).
  2737. @param src The source 8-bit, 3-channel image.
  2738. @param dst The destination image of the same format and the same size as the source.
  2739. @param sp The spatial window radius.
  2740. @param sr The color window radius.
  2741. @param maxLevel Maximum level of the pyramid for the segmentation.
  2742. @param termcrit Termination criteria: when to stop meanshift iterations.
  2743. */
  2744. CV_EXPORTS_W void pyrMeanShiftFiltering( InputArray src, OutputArray dst,
  2745. double sp, double sr, int maxLevel = 1,
  2746. TermCriteria termcrit=TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5,1) );
  2747. //! @}
  2748. //! @addtogroup imgproc_misc
  2749. //! @{
  2750. /** @example samples/cpp/grabcut.cpp
  2751. An example using the GrabCut algorithm
  2752. ![Sample Screenshot](grabcut_output1.jpg)
  2753. */
  2754. /** @brief Runs the GrabCut algorithm.
  2755. The function implements the [GrabCut image segmentation algorithm](http://en.wikipedia.org/wiki/GrabCut).
  2756. @param img Input 8-bit 3-channel image.
  2757. @param mask Input/output 8-bit single-channel mask. The mask is initialized by the function when
  2758. mode is set to #GC_INIT_WITH_RECT. Its elements may have one of the #GrabCutClasses.
  2759. @param rect ROI containing a segmented object. The pixels outside of the ROI are marked as
  2760. "obvious background". The parameter is only used when mode==#GC_INIT_WITH_RECT .
  2761. @param bgdModel Temporary array for the background model. Do not modify it while you are
  2762. processing the same image.
  2763. @param fgdModel Temporary arrays for the foreground model. Do not modify it while you are
  2764. processing the same image.
  2765. @param iterCount Number of iterations the algorithm should make before returning the result. Note
  2766. that the result can be refined with further calls with mode==#GC_INIT_WITH_MASK or
  2767. mode==GC_EVAL .
  2768. @param mode Operation mode that could be one of the #GrabCutModes
  2769. */
  2770. CV_EXPORTS_W void grabCut( InputArray img, InputOutputArray mask, Rect rect,
  2771. InputOutputArray bgdModel, InputOutputArray fgdModel,
  2772. int iterCount, int mode = GC_EVAL );
  2773. /** @example samples/cpp/distrans.cpp
  2774. An example on using the distance transform
  2775. */
  2776. /** @brief Calculates the distance to the closest zero pixel for each pixel of the source image.
  2777. The function cv::distanceTransform calculates the approximate or precise distance from every binary
  2778. image pixel to the nearest zero pixel. For zero image pixels, the distance will obviously be zero.
  2779. When maskSize == #DIST_MASK_PRECISE and distanceType == #DIST_L2 , the function runs the
  2780. algorithm described in @cite Felzenszwalb04 . This algorithm is parallelized with the TBB library.
  2781. In other cases, the algorithm @cite Borgefors86 is used. This means that for a pixel the function
  2782. finds the shortest path to the nearest zero pixel consisting of basic shifts: horizontal, vertical,
  2783. diagonal, or knight's move (the latest is available for a \f$5\times 5\f$ mask). The overall
  2784. distance is calculated as a sum of these basic distances. Since the distance function should be
  2785. symmetric, all of the horizontal and vertical shifts must have the same cost (denoted as a ), all
  2786. the diagonal shifts must have the same cost (denoted as `b`), and all knight's moves must have the
  2787. same cost (denoted as `c`). For the #DIST_C and #DIST_L1 types, the distance is calculated
  2788. precisely, whereas for #DIST_L2 (Euclidean distance) the distance can be calculated only with a
  2789. relative error (a \f$5\times 5\f$ mask gives more accurate results). For `a`,`b`, and `c`, OpenCV
  2790. uses the values suggested in the original paper:
  2791. - DIST_L1: `a = 1, b = 2`
  2792. - DIST_L2:
  2793. - `3 x 3`: `a=0.955, b=1.3693`
  2794. - `5 x 5`: `a=1, b=1.4, c=2.1969`
  2795. - DIST_C: `a = 1, b = 1`
  2796. Typically, for a fast, coarse distance estimation #DIST_L2, a \f$3\times 3\f$ mask is used. For a
  2797. more accurate distance estimation #DIST_L2, a \f$5\times 5\f$ mask or the precise algorithm is used.
  2798. Note that both the precise and the approximate algorithms are linear on the number of pixels.
  2799. This variant of the function does not only compute the minimum distance for each pixel \f$(x, y)\f$
  2800. but also identifies the nearest connected component consisting of zero pixels
  2801. (labelType==#DIST_LABEL_CCOMP) or the nearest zero pixel (labelType==#DIST_LABEL_PIXEL). Index of the
  2802. component/pixel is stored in `labels(x, y)`. When labelType==#DIST_LABEL_CCOMP, the function
  2803. automatically finds connected components of zero pixels in the input image and marks them with
  2804. distinct labels. When labelType==#DIST_LABEL_PIXEL, the function scans through the input image and
  2805. marks all the zero pixels with distinct labels.
  2806. In this mode, the complexity is still linear. That is, the function provides a very fast way to
  2807. compute the Voronoi diagram for a binary image. Currently, the second variant can use only the
  2808. approximate distance transform algorithm, i.e. maskSize=#DIST_MASK_PRECISE is not supported
  2809. yet.
  2810. @param src 8-bit, single-channel (binary) source image.
  2811. @param dst Output image with calculated distances. It is a 8-bit or 32-bit floating-point,
  2812. single-channel image of the same size as src.
  2813. @param labels Output 2D array of labels (the discrete Voronoi diagram). It has the type
  2814. CV_32SC1 and the same size as src.
  2815. @param distanceType Type of distance, see #DistanceTypes
  2816. @param maskSize Size of the distance transform mask, see #DistanceTransformMasks.
  2817. #DIST_MASK_PRECISE is not supported by this variant. In case of the #DIST_L1 or #DIST_C distance type,
  2818. the parameter is forced to 3 because a \f$3\times 3\f$ mask gives the same result as \f$5\times
  2819. 5\f$ or any larger aperture.
  2820. @param labelType Type of the label array to build, see #DistanceTransformLabelTypes.
  2821. */
  2822. CV_EXPORTS_AS(distanceTransformWithLabels) void distanceTransform( InputArray src, OutputArray dst,
  2823. OutputArray labels, int distanceType, int maskSize,
  2824. int labelType = DIST_LABEL_CCOMP );
  2825. /** @overload
  2826. @param src 8-bit, single-channel (binary) source image.
  2827. @param dst Output image with calculated distances. It is a 8-bit or 32-bit floating-point,
  2828. single-channel image of the same size as src .
  2829. @param distanceType Type of distance, see #DistanceTypes
  2830. @param maskSize Size of the distance transform mask, see #DistanceTransformMasks. In case of the
  2831. #DIST_L1 or #DIST_C distance type, the parameter is forced to 3 because a \f$3\times 3\f$ mask gives
  2832. the same result as \f$5\times 5\f$ or any larger aperture.
  2833. @param dstType Type of output image. It can be CV_8U or CV_32F. Type CV_8U can be used only for
  2834. the first variant of the function and distanceType == #DIST_L1.
  2835. */
  2836. CV_EXPORTS_W void distanceTransform( InputArray src, OutputArray dst,
  2837. int distanceType, int maskSize, int dstType=CV_32F);
  2838. /** @example samples/cpp/ffilldemo.cpp
  2839. An example using the FloodFill technique
  2840. */
  2841. /** @overload
  2842. variant without `mask` parameter
  2843. */
  2844. CV_EXPORTS int floodFill( InputOutputArray image,
  2845. Point seedPoint, Scalar newVal, CV_OUT Rect* rect = 0,
  2846. Scalar loDiff = Scalar(), Scalar upDiff = Scalar(),
  2847. int flags = 4 );
  2848. /** @brief Fills a connected component with the given color.
  2849. The function cv::floodFill fills a connected component starting from the seed point with the specified
  2850. color. The connectivity is determined by the color/brightness closeness of the neighbor pixels. The
  2851. pixel at \f$(x,y)\f$ is considered to belong to the repainted domain if:
  2852. - in case of a grayscale image and floating range
  2853. \f[\texttt{src} (x',y')- \texttt{loDiff} \leq \texttt{src} (x,y) \leq \texttt{src} (x',y')+ \texttt{upDiff}\f]
  2854. - in case of a grayscale image and fixed range
  2855. \f[\texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)- \texttt{loDiff} \leq \texttt{src} (x,y) \leq \texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)+ \texttt{upDiff}\f]
  2856. - in case of a color image and floating range
  2857. \f[\texttt{src} (x',y')_r- \texttt{loDiff} _r \leq \texttt{src} (x,y)_r \leq \texttt{src} (x',y')_r+ \texttt{upDiff} _r,\f]
  2858. \f[\texttt{src} (x',y')_g- \texttt{loDiff} _g \leq \texttt{src} (x,y)_g \leq \texttt{src} (x',y')_g+ \texttt{upDiff} _g\f]
  2859. and
  2860. \f[\texttt{src} (x',y')_b- \texttt{loDiff} _b \leq \texttt{src} (x,y)_b \leq \texttt{src} (x',y')_b+ \texttt{upDiff} _b\f]
  2861. - in case of a color image and fixed range
  2862. \f[\texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_r- \texttt{loDiff} _r \leq \texttt{src} (x,y)_r \leq \texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_r+ \texttt{upDiff} _r,\f]
  2863. \f[\texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_g- \texttt{loDiff} _g \leq \texttt{src} (x,y)_g \leq \texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_g+ \texttt{upDiff} _g\f]
  2864. and
  2865. \f[\texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_b- \texttt{loDiff} _b \leq \texttt{src} (x,y)_b \leq \texttt{src} ( \texttt{seedPoint} .x, \texttt{seedPoint} .y)_b+ \texttt{upDiff} _b\f]
  2866. where \f$src(x',y')\f$ is the value of one of pixel neighbors that is already known to belong to the
  2867. component. That is, to be added to the connected component, a color/brightness of the pixel should
  2868. be close enough to:
  2869. - Color/brightness of one of its neighbors that already belong to the connected component in case
  2870. of a floating range.
  2871. - Color/brightness of the seed point in case of a fixed range.
  2872. Use these functions to either mark a connected component with the specified color in-place, or build
  2873. a mask and then extract the contour, or copy the region to another image, and so on.
  2874. @param image Input/output 1- or 3-channel, 8-bit, or floating-point image. It is modified by the
  2875. function unless the #FLOODFILL_MASK_ONLY flag is set in the second variant of the function. See
  2876. the details below.
  2877. @param mask Operation mask that should be a single-channel 8-bit image, 2 pixels wider and 2 pixels
  2878. taller than image. Since this is both an input and output parameter, you must take responsibility
  2879. of initializing it. Flood-filling cannot go across non-zero pixels in the input mask. For example,
  2880. an edge detector output can be used as a mask to stop filling at edges. On output, pixels in the
  2881. mask corresponding to filled pixels in the image are set to 1 or to the a value specified in flags
  2882. as described below. Additionally, the function fills the border of the mask with ones to simplify
  2883. internal processing. It is therefore possible to use the same mask in multiple calls to the function
  2884. to make sure the filled areas do not overlap.
  2885. @param seedPoint Starting point.
  2886. @param newVal New value of the repainted domain pixels.
  2887. @param loDiff Maximal lower brightness/color difference between the currently observed pixel and
  2888. one of its neighbors belonging to the component, or a seed pixel being added to the component.
  2889. @param upDiff Maximal upper brightness/color difference between the currently observed pixel and
  2890. one of its neighbors belonging to the component, or a seed pixel being added to the component.
  2891. @param rect Optional output parameter set by the function to the minimum bounding rectangle of the
  2892. repainted domain.
  2893. @param flags Operation flags. The first 8 bits contain a connectivity value. The default value of
  2894. 4 means that only the four nearest neighbor pixels (those that share an edge) are considered. A
  2895. connectivity value of 8 means that the eight nearest neighbor pixels (those that share a corner)
  2896. will be considered. The next 8 bits (8-16) contain a value between 1 and 255 with which to fill
  2897. the mask (the default value is 1). For example, 4 | ( 255 \<\< 8 ) will consider 4 nearest
  2898. neighbours and fill the mask with a value of 255. The following additional options occupy higher
  2899. bits and therefore may be further combined with the connectivity and mask fill values using
  2900. bit-wise or (|), see #FloodFillFlags.
  2901. @note Since the mask is larger than the filled image, a pixel \f$(x, y)\f$ in image corresponds to the
  2902. pixel \f$(x+1, y+1)\f$ in the mask .
  2903. @sa findContours
  2904. */
  2905. CV_EXPORTS_W int floodFill( InputOutputArray image, InputOutputArray mask,
  2906. Point seedPoint, Scalar newVal, CV_OUT Rect* rect=0,
  2907. Scalar loDiff = Scalar(), Scalar upDiff = Scalar(),
  2908. int flags = 4 );
  2909. //! Performs linear blending of two images:
  2910. //! \f[ \texttt{dst}(i,j) = \texttt{weights1}(i,j)*\texttt{src1}(i,j) + \texttt{weights2}(i,j)*\texttt{src2}(i,j) \f]
  2911. //! @param src1 It has a type of CV_8UC(n) or CV_32FC(n), where n is a positive integer.
  2912. //! @param src2 It has the same type and size as src1.
  2913. //! @param weights1 It has a type of CV_32FC1 and the same size with src1.
  2914. //! @param weights2 It has a type of CV_32FC1 and the same size with src1.
  2915. //! @param dst It is created if it does not have the same size and type with src1.
  2916. CV_EXPORTS_W void blendLinear(InputArray src1, InputArray src2, InputArray weights1, InputArray weights2, OutputArray dst);
  2917. //! @} imgproc_misc
  2918. //! @addtogroup imgproc_color_conversions
  2919. //! @{
  2920. /** @brief Converts an image from one color space to another.
  2921. The function converts an input image from one color space to another. In case of a transformation
  2922. to-from RGB color space, the order of the channels should be specified explicitly (RGB or BGR). Note
  2923. that the default color format in OpenCV is often referred to as RGB but it is actually BGR (the
  2924. bytes are reversed). So the first byte in a standard (24-bit) color image will be an 8-bit Blue
  2925. component, the second byte will be Green, and the third byte will be Red. The fourth, fifth, and
  2926. sixth bytes would then be the second pixel (Blue, then Green, then Red), and so on.
  2927. The conventional ranges for R, G, and B channel values are:
  2928. - 0 to 255 for CV_8U images
  2929. - 0 to 65535 for CV_16U images
  2930. - 0 to 1 for CV_32F images
  2931. In case of linear transformations, the range does not matter. But in case of a non-linear
  2932. transformation, an input RGB image should be normalized to the proper value range to get the correct
  2933. results, for example, for RGB \f$\rightarrow\f$ L\*u\*v\* transformation. For example, if you have a
  2934. 32-bit floating-point image directly converted from an 8-bit image without any scaling, then it will
  2935. have the 0..255 value range instead of 0..1 assumed by the function. So, before calling #cvtColor ,
  2936. you need first to scale the image down:
  2937. @code
  2938. img *= 1./255;
  2939. cvtColor(img, img, COLOR_BGR2Luv);
  2940. @endcode
  2941. If you use #cvtColor with 8-bit images, the conversion will have some information lost. For many
  2942. applications, this will not be noticeable but it is recommended to use 32-bit images in applications
  2943. that need the full range of colors or that convert an image before an operation and then convert
  2944. back.
  2945. If conversion adds the alpha channel, its value will set to the maximum of corresponding channel
  2946. range: 255 for CV_8U, 65535 for CV_16U, 1 for CV_32F.
  2947. @param src input image: 8-bit unsigned, 16-bit unsigned ( CV_16UC... ), or single-precision
  2948. floating-point.
  2949. @param dst output image of the same size and depth as src.
  2950. @param code color space conversion code (see #ColorConversionCodes).
  2951. @param dstCn number of channels in the destination image; if the parameter is 0, the number of the
  2952. channels is derived automatically from src and code.
  2953. @see @ref imgproc_color_conversions
  2954. */
  2955. CV_EXPORTS_W void cvtColor( InputArray src, OutputArray dst, int code, int dstCn = 0 );
  2956. /** @brief Converts an image from one color space to another where the source image is
  2957. stored in two planes.
  2958. This function only supports YUV420 to RGB conversion as of now.
  2959. @param src1: 8-bit image (#CV_8U) of the Y plane.
  2960. @param src2: image containing interleaved U/V plane.
  2961. @param dst: output image.
  2962. @param code: Specifies the type of conversion. It can take any of the following values:
  2963. - #COLOR_YUV2BGR_NV12
  2964. - #COLOR_YUV2RGB_NV12
  2965. - #COLOR_YUV2BGRA_NV12
  2966. - #COLOR_YUV2RGBA_NV12
  2967. - #COLOR_YUV2BGR_NV21
  2968. - #COLOR_YUV2RGB_NV21
  2969. - #COLOR_YUV2BGRA_NV21
  2970. - #COLOR_YUV2RGBA_NV21
  2971. */
  2972. CV_EXPORTS_W void cvtColorTwoPlane( InputArray src1, InputArray src2, OutputArray dst, int code );
  2973. /** @brief main function for all demosaicing processes
  2974. @param src input image: 8-bit unsigned or 16-bit unsigned.
  2975. @param dst output image of the same size and depth as src.
  2976. @param code Color space conversion code (see the description below).
  2977. @param dstCn number of channels in the destination image; if the parameter is 0, the number of the
  2978. channels is derived automatically from src and code.
  2979. The function can do the following transformations:
  2980. - Demosaicing using bilinear interpolation
  2981. #COLOR_BayerBG2BGR , #COLOR_BayerGB2BGR , #COLOR_BayerRG2BGR , #COLOR_BayerGR2BGR
  2982. #COLOR_BayerBG2GRAY , #COLOR_BayerGB2GRAY , #COLOR_BayerRG2GRAY , #COLOR_BayerGR2GRAY
  2983. - Demosaicing using Variable Number of Gradients.
  2984. #COLOR_BayerBG2BGR_VNG , #COLOR_BayerGB2BGR_VNG , #COLOR_BayerRG2BGR_VNG , #COLOR_BayerGR2BGR_VNG
  2985. - Edge-Aware Demosaicing.
  2986. #COLOR_BayerBG2BGR_EA , #COLOR_BayerGB2BGR_EA , #COLOR_BayerRG2BGR_EA , #COLOR_BayerGR2BGR_EA
  2987. - Demosaicing with alpha channel
  2988. #COLOR_BayerBG2BGRA , #COLOR_BayerGB2BGRA , #COLOR_BayerRG2BGRA , #COLOR_BayerGR2BGRA
  2989. @sa cvtColor
  2990. */
  2991. CV_EXPORTS_W void demosaicing(InputArray src, OutputArray dst, int code, int dstCn = 0);
  2992. //! @} imgproc_color_conversions
  2993. //! @addtogroup imgproc_shape
  2994. //! @{
  2995. /** @brief Calculates all of the moments up to the third order of a polygon or rasterized shape.
  2996. The function computes moments, up to the 3rd order, of a vector shape or a rasterized shape. The
  2997. results are returned in the structure cv::Moments.
  2998. @param array Raster image (single-channel, 8-bit or floating-point 2D array) or an array (
  2999. \f$1 \times N\f$ or \f$N \times 1\f$ ) of 2D points (Point or Point2f ).
  3000. @param binaryImage If it is true, all non-zero image pixels are treated as 1's. The parameter is
  3001. used for images only.
  3002. @returns moments.
  3003. @note Only applicable to contour moments calculations from Python bindings: Note that the numpy
  3004. type for the input array should be either np.int32 or np.float32.
  3005. @sa contourArea, arcLength
  3006. */
  3007. CV_EXPORTS_W Moments moments( InputArray array, bool binaryImage = false );
  3008. /** @brief Calculates seven Hu invariants.
  3009. The function calculates seven Hu invariants (introduced in @cite Hu62; see also
  3010. <http://en.wikipedia.org/wiki/Image_moment>) defined as:
  3011. \f[\begin{array}{l} hu[0]= \eta _{20}+ \eta _{02} \\ hu[1]=( \eta _{20}- \eta _{02})^{2}+4 \eta _{11}^{2} \\ hu[2]=( \eta _{30}-3 \eta _{12})^{2}+ (3 \eta _{21}- \eta _{03})^{2} \\ hu[3]=( \eta _{30}+ \eta _{12})^{2}+ ( \eta _{21}+ \eta _{03})^{2} \\ hu[4]=( \eta _{30}-3 \eta _{12})( \eta _{30}+ \eta _{12})[( \eta _{30}+ \eta _{12})^{2}-3( \eta _{21}+ \eta _{03})^{2}]+(3 \eta _{21}- \eta _{03})( \eta _{21}+ \eta _{03})[3( \eta _{30}+ \eta _{12})^{2}-( \eta _{21}+ \eta _{03})^{2}] \\ hu[5]=( \eta _{20}- \eta _{02})[( \eta _{30}+ \eta _{12})^{2}- ( \eta _{21}+ \eta _{03})^{2}]+4 \eta _{11}( \eta _{30}+ \eta _{12})( \eta _{21}+ \eta _{03}) \\ hu[6]=(3 \eta _{21}- \eta _{03})( \eta _{21}+ \eta _{03})[3( \eta _{30}+ \eta _{12})^{2}-( \eta _{21}+ \eta _{03})^{2}]-( \eta _{30}-3 \eta _{12})( \eta _{21}+ \eta _{03})[3( \eta _{30}+ \eta _{12})^{2}-( \eta _{21}+ \eta _{03})^{2}] \\ \end{array}\f]
  3012. where \f$\eta_{ji}\f$ stands for \f$\texttt{Moments::nu}_{ji}\f$ .
  3013. These values are proved to be invariants to the image scale, rotation, and reflection except the
  3014. seventh one, whose sign is changed by reflection. This invariance is proved with the assumption of
  3015. infinite image resolution. In case of raster images, the computed Hu invariants for the original and
  3016. transformed images are a bit different.
  3017. @param moments Input moments computed with moments .
  3018. @param hu Output Hu invariants.
  3019. @sa matchShapes
  3020. */
  3021. CV_EXPORTS void HuMoments( const Moments& moments, double hu[7] );
  3022. /** @overload */
  3023. CV_EXPORTS_W void HuMoments( const Moments& m, OutputArray hu );
  3024. //! @} imgproc_shape
  3025. //! @addtogroup imgproc_object
  3026. //! @{
  3027. //! type of the template matching operation
  3028. enum TemplateMatchModes {
  3029. TM_SQDIFF = 0, //!< \f[R(x,y)= \sum _{x',y'} (T(x',y')-I(x+x',y+y'))^2\f]
  3030. TM_SQDIFF_NORMED = 1, //!< \f[R(x,y)= \frac{\sum_{x',y'} (T(x',y')-I(x+x',y+y'))^2}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}}\f]
  3031. TM_CCORR = 2, //!< \f[R(x,y)= \sum _{x',y'} (T(x',y') \cdot I(x+x',y+y'))\f]
  3032. TM_CCORR_NORMED = 3, //!< \f[R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}}\f]
  3033. TM_CCOEFF = 4, //!< \f[R(x,y)= \sum _{x',y'} (T'(x',y') \cdot I'(x+x',y+y'))\f]
  3034. //!< where
  3035. //!< \f[\begin{array}{l} T'(x',y')=T(x',y') - 1/(w \cdot h) \cdot \sum _{x'',y''} T(x'',y'') \\ I'(x+x',y+y')=I(x+x',y+y') - 1/(w \cdot h) \cdot \sum _{x'',y''} I(x+x'',y+y'') \end{array}\f]
  3036. TM_CCOEFF_NORMED = 5 //!< \f[R(x,y)= \frac{ \sum_{x',y'} (T'(x',y') \cdot I'(x+x',y+y')) }{ \sqrt{\sum_{x',y'}T'(x',y')^2 \cdot \sum_{x',y'} I'(x+x',y+y')^2} }\f]
  3037. };
  3038. /** @example samples/cpp/tutorial_code/Histograms_Matching/MatchTemplate_Demo.cpp
  3039. An example using Template Matching algorithm
  3040. */
  3041. /** @brief Compares a template against overlapped image regions.
  3042. The function slides through image , compares the overlapped patches of size \f$w \times h\f$ against
  3043. templ using the specified method and stores the comparison results in result . Here are the formulae
  3044. for the available comparison methods ( \f$I\f$ denotes image, \f$T\f$ template, \f$R\f$ result ). The summation
  3045. is done over template and/or the image patch: \f$x' = 0...w-1, y' = 0...h-1\f$
  3046. After the function finishes the comparison, the best matches can be found as global minimums (when
  3047. #TM_SQDIFF was used) or maximums (when #TM_CCORR or #TM_CCOEFF was used) using the
  3048. #minMaxLoc function. In case of a color image, template summation in the numerator and each sum in
  3049. the denominator is done over all of the channels and separate mean values are used for each channel.
  3050. That is, the function can take a color template and a color image. The result will still be a
  3051. single-channel image, which is easier to analyze.
  3052. @param image Image where the search is running. It must be 8-bit or 32-bit floating-point.
  3053. @param templ Searched template. It must be not greater than the source image and have the same
  3054. data type.
  3055. @param result Map of comparison results. It must be single-channel 32-bit floating-point. If image
  3056. is \f$W \times H\f$ and templ is \f$w \times h\f$ , then result is \f$(W-w+1) \times (H-h+1)\f$ .
  3057. @param method Parameter specifying the comparison method, see #TemplateMatchModes
  3058. @param mask Mask of searched template. It must have the same datatype and size with templ. It is
  3059. not set by default. Currently, only the #TM_SQDIFF and #TM_CCORR_NORMED methods are supported.
  3060. */
  3061. CV_EXPORTS_W void matchTemplate( InputArray image, InputArray templ,
  3062. OutputArray result, int method, InputArray mask = noArray() );
  3063. //! @}
  3064. //! @addtogroup imgproc_shape
  3065. //! @{
  3066. /** @example samples/cpp/connected_components.cpp
  3067. This program demonstrates connected components and use of the trackbar
  3068. */
  3069. /** @brief computes the connected components labeled image of boolean image
  3070. image with 4 or 8 way connectivity - returns N, the total number of labels [0, N-1] where 0
  3071. represents the background label. ltype specifies the output label image type, an important
  3072. consideration based on the total number of labels or alternatively the total number of pixels in
  3073. the source image. ccltype specifies the connected components labeling algorithm to use, currently
  3074. Grana (BBDT) and Wu's (SAUF) @cite Wu2009 algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
  3075. for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
  3076. This function uses parallel version of both Grana and Wu's algorithms if at least one allowed
  3077. parallel framework is enabled and if the rows of the image are at least twice the number returned by #getNumberOfCPUs.
  3078. @param image the 8-bit single-channel image to be labeled
  3079. @param labels destination labeled image
  3080. @param connectivity 8 or 4 for 8-way or 4-way connectivity respectively
  3081. @param ltype output image label type. Currently CV_32S and CV_16U are supported.
  3082. @param ccltype connected components algorithm type (see the #ConnectedComponentsAlgorithmsTypes).
  3083. */
  3084. CV_EXPORTS_AS(connectedComponentsWithAlgorithm) int connectedComponents(InputArray image, OutputArray labels,
  3085. int connectivity, int ltype, int ccltype);
  3086. /** @overload
  3087. @param image the 8-bit single-channel image to be labeled
  3088. @param labels destination labeled image
  3089. @param connectivity 8 or 4 for 8-way or 4-way connectivity respectively
  3090. @param ltype output image label type. Currently CV_32S and CV_16U are supported.
  3091. */
  3092. CV_EXPORTS_W int connectedComponents(InputArray image, OutputArray labels,
  3093. int connectivity = 8, int ltype = CV_32S);
  3094. /** @brief computes the connected components labeled image of boolean image and also produces a statistics output for each label
  3095. image with 4 or 8 way connectivity - returns N, the total number of labels [0, N-1] where 0
  3096. represents the background label. ltype specifies the output label image type, an important
  3097. consideration based on the total number of labels or alternatively the total number of pixels in
  3098. the source image. ccltype specifies the connected components labeling algorithm to use, currently
  3099. Grana's (BBDT) and Wu's (SAUF) @cite Wu2009 algorithms are supported, see the #ConnectedComponentsAlgorithmsTypes
  3100. for details. Note that SAUF algorithm forces a row major ordering of labels while BBDT does not.
  3101. This function uses parallel version of both Grana and Wu's algorithms (statistics included) if at least one allowed
  3102. parallel framework is enabled and if the rows of the image are at least twice the number returned by #getNumberOfCPUs.
  3103. @param image the 8-bit single-channel image to be labeled
  3104. @param labels destination labeled image
  3105. @param stats statistics output for each label, including the background label.
  3106. Statistics are accessed via stats(label, COLUMN) where COLUMN is one of
  3107. #ConnectedComponentsTypes, selecting the statistic. The data type is CV_32S.
  3108. @param centroids centroid output for each label, including the background label. Centroids are
  3109. accessed via centroids(label, 0) for x and centroids(label, 1) for y. The data type CV_64F.
  3110. @param connectivity 8 or 4 for 8-way or 4-way connectivity respectively
  3111. @param ltype output image label type. Currently CV_32S and CV_16U are supported.
  3112. @param ccltype connected components algorithm type (see #ConnectedComponentsAlgorithmsTypes).
  3113. */
  3114. CV_EXPORTS_AS(connectedComponentsWithStatsWithAlgorithm) int connectedComponentsWithStats(InputArray image, OutputArray labels,
  3115. OutputArray stats, OutputArray centroids,
  3116. int connectivity, int ltype, int ccltype);
  3117. /** @overload
  3118. @param image the 8-bit single-channel image to be labeled
  3119. @param labels destination labeled image
  3120. @param stats statistics output for each label, including the background label.
  3121. Statistics are accessed via stats(label, COLUMN) where COLUMN is one of
  3122. #ConnectedComponentsTypes, selecting the statistic. The data type is CV_32S.
  3123. @param centroids centroid output for each label, including the background label. Centroids are
  3124. accessed via centroids(label, 0) for x and centroids(label, 1) for y. The data type CV_64F.
  3125. @param connectivity 8 or 4 for 8-way or 4-way connectivity respectively
  3126. @param ltype output image label type. Currently CV_32S and CV_16U are supported.
  3127. */
  3128. CV_EXPORTS_W int connectedComponentsWithStats(InputArray image, OutputArray labels,
  3129. OutputArray stats, OutputArray centroids,
  3130. int connectivity = 8, int ltype = CV_32S);
  3131. /** @brief Finds contours in a binary image.
  3132. The function retrieves contours from the binary image using the algorithm @cite Suzuki85 . The contours
  3133. are a useful tool for shape analysis and object detection and recognition. See squares.cpp in the
  3134. OpenCV sample directory.
  3135. @note Since opencv 3.2 source image is not modified by this function.
  3136. @param image Source, an 8-bit single-channel image. Non-zero pixels are treated as 1's. Zero
  3137. pixels remain 0's, so the image is treated as binary . You can use #compare, #inRange, #threshold ,
  3138. #adaptiveThreshold, #Canny, and others to create a binary image out of a grayscale or color one.
  3139. If mode equals to #RETR_CCOMP or #RETR_FLOODFILL, the input can also be a 32-bit integer image of labels (CV_32SC1).
  3140. @param contours Detected contours. Each contour is stored as a vector of points (e.g.
  3141. std::vector<std::vector<cv::Point> >).
  3142. @param hierarchy Optional output vector (e.g. std::vector<cv::Vec4i>), containing information about the image topology. It has
  3143. as many elements as the number of contours. For each i-th contour contours[i], the elements
  3144. hierarchy[i][0] , hierarchy[i][1] , hierarchy[i][2] , and hierarchy[i][3] are set to 0-based indices
  3145. in contours of the next and previous contours at the same hierarchical level, the first child
  3146. contour and the parent contour, respectively. If for the contour i there are no next, previous,
  3147. parent, or nested contours, the corresponding elements of hierarchy[i] will be negative.
  3148. @param mode Contour retrieval mode, see #RetrievalModes
  3149. @param method Contour approximation method, see #ContourApproximationModes
  3150. @param offset Optional offset by which every contour point is shifted. This is useful if the
  3151. contours are extracted from the image ROI and then they should be analyzed in the whole image
  3152. context.
  3153. */
  3154. CV_EXPORTS_W void findContours( InputOutputArray image, OutputArrayOfArrays contours,
  3155. OutputArray hierarchy, int mode,
  3156. int method, Point offset = Point());
  3157. /** @overload */
  3158. CV_EXPORTS void findContours( InputOutputArray image, OutputArrayOfArrays contours,
  3159. int mode, int method, Point offset = Point());
  3160. /** @example samples/cpp/squares.cpp
  3161. A program using pyramid scaling, Canny, contours and contour simplification to find
  3162. squares in a list of images (pic1-6.png). Returns sequence of squares detected on the image.
  3163. */
  3164. /** @example samples/tapi/squares.cpp
  3165. A program using pyramid scaling, Canny, contours and contour simplification to find
  3166. squares in the input image.
  3167. */
  3168. /** @brief Approximates a polygonal curve(s) with the specified precision.
  3169. The function cv::approxPolyDP approximates a curve or a polygon with another curve/polygon with less
  3170. vertices so that the distance between them is less or equal to the specified precision. It uses the
  3171. Douglas-Peucker algorithm <http://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm>
  3172. @param curve Input vector of a 2D point stored in std::vector or Mat
  3173. @param approxCurve Result of the approximation. The type should match the type of the input curve.
  3174. @param epsilon Parameter specifying the approximation accuracy. This is the maximum distance
  3175. between the original curve and its approximation.
  3176. @param closed If true, the approximated curve is closed (its first and last vertices are
  3177. connected). Otherwise, it is not closed.
  3178. */
  3179. CV_EXPORTS_W void approxPolyDP( InputArray curve,
  3180. OutputArray approxCurve,
  3181. double epsilon, bool closed );
  3182. /** @brief Calculates a contour perimeter or a curve length.
  3183. The function computes a curve length or a closed contour perimeter.
  3184. @param curve Input vector of 2D points, stored in std::vector or Mat.
  3185. @param closed Flag indicating whether the curve is closed or not.
  3186. */
  3187. CV_EXPORTS_W double arcLength( InputArray curve, bool closed );
  3188. /** @brief Calculates the up-right bounding rectangle of a point set or non-zero pixels of gray-scale image.
  3189. The function calculates and returns the minimal up-right bounding rectangle for the specified point set or
  3190. non-zero pixels of gray-scale image.
  3191. @param array Input gray-scale image or 2D point set, stored in std::vector or Mat.
  3192. */
  3193. CV_EXPORTS_W Rect boundingRect( InputArray array );
  3194. /** @brief Calculates a contour area.
  3195. The function computes a contour area. Similarly to moments , the area is computed using the Green
  3196. formula. Thus, the returned area and the number of non-zero pixels, if you draw the contour using
  3197. #drawContours or #fillPoly , can be different. Also, the function will most certainly give a wrong
  3198. results for contours with self-intersections.
  3199. Example:
  3200. @code
  3201. vector<Point> contour;
  3202. contour.push_back(Point2f(0, 0));
  3203. contour.push_back(Point2f(10, 0));
  3204. contour.push_back(Point2f(10, 10));
  3205. contour.push_back(Point2f(5, 4));
  3206. double area0 = contourArea(contour);
  3207. vector<Point> approx;
  3208. approxPolyDP(contour, approx, 5, true);
  3209. double area1 = contourArea(approx);
  3210. cout << "area0 =" << area0 << endl <<
  3211. "area1 =" << area1 << endl <<
  3212. "approx poly vertices" << approx.size() << endl;
  3213. @endcode
  3214. @param contour Input vector of 2D points (contour vertices), stored in std::vector or Mat.
  3215. @param oriented Oriented area flag. If it is true, the function returns a signed area value,
  3216. depending on the contour orientation (clockwise or counter-clockwise). Using this feature you can
  3217. determine orientation of a contour by taking the sign of an area. By default, the parameter is
  3218. false, which means that the absolute value is returned.
  3219. */
  3220. CV_EXPORTS_W double contourArea( InputArray contour, bool oriented = false );
  3221. /** @brief Finds a rotated rectangle of the minimum area enclosing the input 2D point set.
  3222. The function calculates and returns the minimum-area bounding rectangle (possibly rotated) for a
  3223. specified point set. Developer should keep in mind that the returned RotatedRect can contain negative
  3224. indices when data is close to the containing Mat element boundary.
  3225. @param points Input vector of 2D points, stored in std::vector\<\> or Mat
  3226. */
  3227. CV_EXPORTS_W RotatedRect minAreaRect( InputArray points );
  3228. /** @brief Finds the four vertices of a rotated rect. Useful to draw the rotated rectangle.
  3229. The function finds the four vertices of a rotated rectangle. This function is useful to draw the
  3230. rectangle. In C++, instead of using this function, you can directly use RotatedRect::points method. Please
  3231. visit the @ref tutorial_bounding_rotated_ellipses "tutorial on Creating Bounding rotated boxes and ellipses for contours" for more information.
  3232. @param box The input rotated rectangle. It may be the output of
  3233. @param points The output array of four vertices of rectangles.
  3234. */
  3235. CV_EXPORTS_W void boxPoints(RotatedRect box, OutputArray points);
  3236. /** @brief Finds a circle of the minimum area enclosing a 2D point set.
  3237. The function finds the minimal enclosing circle of a 2D point set using an iterative algorithm.
  3238. @param points Input vector of 2D points, stored in std::vector\<\> or Mat
  3239. @param center Output center of the circle.
  3240. @param radius Output radius of the circle.
  3241. */
  3242. CV_EXPORTS_W void minEnclosingCircle( InputArray points,
  3243. CV_OUT Point2f& center, CV_OUT float& radius );
  3244. /** @example samples/cpp/minarea.cpp
  3245. */
  3246. /** @brief Finds a triangle of minimum area enclosing a 2D point set and returns its area.
  3247. The function finds a triangle of minimum area enclosing the given set of 2D points and returns its
  3248. area. The output for a given 2D point set is shown in the image below. 2D points are depicted in
  3249. *red* and the enclosing triangle in *yellow*.
  3250. ![Sample output of the minimum enclosing triangle function](pics/minenclosingtriangle.png)
  3251. The implementation of the algorithm is based on O'Rourke's @cite ORourke86 and Klee and Laskowski's
  3252. @cite KleeLaskowski85 papers. O'Rourke provides a \f$\theta(n)\f$ algorithm for finding the minimal
  3253. enclosing triangle of a 2D convex polygon with n vertices. Since the #minEnclosingTriangle function
  3254. takes a 2D point set as input an additional preprocessing step of computing the convex hull of the
  3255. 2D point set is required. The complexity of the #convexHull function is \f$O(n log(n))\f$ which is higher
  3256. than \f$\theta(n)\f$. Thus the overall complexity of the function is \f$O(n log(n))\f$.
  3257. @param points Input vector of 2D points with depth CV_32S or CV_32F, stored in std::vector\<\> or Mat
  3258. @param triangle Output vector of three 2D points defining the vertices of the triangle. The depth
  3259. of the OutputArray must be CV_32F.
  3260. */
  3261. CV_EXPORTS_W double minEnclosingTriangle( InputArray points, CV_OUT OutputArray triangle );
  3262. /** @brief Compares two shapes.
  3263. The function compares two shapes. All three implemented methods use the Hu invariants (see #HuMoments)
  3264. @param contour1 First contour or grayscale image.
  3265. @param contour2 Second contour or grayscale image.
  3266. @param method Comparison method, see #ShapeMatchModes
  3267. @param parameter Method-specific parameter (not supported now).
  3268. */
  3269. CV_EXPORTS_W double matchShapes( InputArray contour1, InputArray contour2,
  3270. int method, double parameter );
  3271. /** @example samples/cpp/convexhull.cpp
  3272. An example using the convexHull functionality
  3273. */
  3274. /** @brief Finds the convex hull of a point set.
  3275. The function cv::convexHull finds the convex hull of a 2D point set using the Sklansky's algorithm @cite Sklansky82
  3276. that has *O(N logN)* complexity in the current implementation.
  3277. @param points Input 2D point set, stored in std::vector or Mat.
  3278. @param hull Output convex hull. It is either an integer vector of indices or vector of points. In
  3279. the first case, the hull elements are 0-based indices of the convex hull points in the original
  3280. array (since the set of convex hull points is a subset of the original point set). In the second
  3281. case, hull elements are the convex hull points themselves.
  3282. @param clockwise Orientation flag. If it is true, the output convex hull is oriented clockwise.
  3283. Otherwise, it is oriented counter-clockwise. The assumed coordinate system has its X axis pointing
  3284. to the right, and its Y axis pointing upwards.
  3285. @param returnPoints Operation flag. In case of a matrix, when the flag is true, the function
  3286. returns convex hull points. Otherwise, it returns indices of the convex hull points. When the
  3287. output array is std::vector, the flag is ignored, and the output depends on the type of the
  3288. vector: std::vector\<int\> implies returnPoints=false, std::vector\<Point\> implies
  3289. returnPoints=true.
  3290. @note `points` and `hull` should be different arrays, inplace processing isn't supported.
  3291. Check @ref tutorial_hull "the corresponding tutorial" for more details.
  3292. useful links:
  3293. https://www.learnopencv.com/convex-hull-using-opencv-in-python-and-c/
  3294. */
  3295. CV_EXPORTS_W void convexHull( InputArray points, OutputArray hull,
  3296. bool clockwise = false, bool returnPoints = true );
  3297. /** @brief Finds the convexity defects of a contour.
  3298. The figure below displays convexity defects of a hand contour:
  3299. ![image](pics/defects.png)
  3300. @param contour Input contour.
  3301. @param convexhull Convex hull obtained using convexHull that should contain indices of the contour
  3302. points that make the hull.
  3303. @param convexityDefects The output vector of convexity defects. In C++ and the new Python/Java
  3304. interface each convexity defect is represented as 4-element integer vector (a.k.a. #Vec4i):
  3305. (start_index, end_index, farthest_pt_index, fixpt_depth), where indices are 0-based indices
  3306. in the original contour of the convexity defect beginning, end and the farthest point, and
  3307. fixpt_depth is fixed-point approximation (with 8 fractional bits) of the distance between the
  3308. farthest contour point and the hull. That is, to get the floating-point value of the depth will be
  3309. fixpt_depth/256.0.
  3310. */
  3311. CV_EXPORTS_W void convexityDefects( InputArray contour, InputArray convexhull, OutputArray convexityDefects );
  3312. /** @brief Tests a contour convexity.
  3313. The function tests whether the input contour is convex or not. The contour must be simple, that is,
  3314. without self-intersections. Otherwise, the function output is undefined.
  3315. @param contour Input vector of 2D points, stored in std::vector\<\> or Mat
  3316. */
  3317. CV_EXPORTS_W bool isContourConvex( InputArray contour );
  3318. /** @example samples/cpp/intersectExample.cpp
  3319. Examples of how intersectConvexConvex works
  3320. */
  3321. /** @brief Finds intersection of two convex polygons
  3322. @param _p1 First polygon
  3323. @param _p2 Second polygon
  3324. @param _p12 Output polygon describing the intersecting area
  3325. @param handleNested When true, an intersection is found if one of the polygons is fully enclosed in the other.
  3326. When false, no intersection is found. If the polygons share a side or the vertex of one polygon lies on an edge
  3327. of the other, they are not considered nested and an intersection will be found regardless of the value of handleNested.
  3328. @returns Absolute value of area of intersecting polygon
  3329. @note intersectConvexConvex doesn't confirm that both polygons are convex and will return invalid results if they aren't.
  3330. */
  3331. CV_EXPORTS_W float intersectConvexConvex( InputArray _p1, InputArray _p2,
  3332. OutputArray _p12, bool handleNested = true );
  3333. /** @example samples/cpp/fitellipse.cpp
  3334. An example using the fitEllipse technique
  3335. */
  3336. /** @brief Fits an ellipse around a set of 2D points.
  3337. The function calculates the ellipse that fits (in a least-squares sense) a set of 2D points best of
  3338. all. It returns the rotated rectangle in which the ellipse is inscribed. The first algorithm described by @cite Fitzgibbon95
  3339. is used. Developer should keep in mind that it is possible that the returned
  3340. ellipse/rotatedRect data contains negative indices, due to the data points being close to the
  3341. border of the containing Mat element.
  3342. @param points Input 2D point set, stored in std::vector\<\> or Mat
  3343. */
  3344. CV_EXPORTS_W RotatedRect fitEllipse( InputArray points );
  3345. /** @brief Fits an ellipse around a set of 2D points.
  3346. The function calculates the ellipse that fits a set of 2D points.
  3347. It returns the rotated rectangle in which the ellipse is inscribed.
  3348. The Approximate Mean Square (AMS) proposed by @cite Taubin1991 is used.
  3349. For an ellipse, this basis set is \f$ \chi= \left(x^2, x y, y^2, x, y, 1\right) \f$,
  3350. which is a set of six free coefficients \f$ A^T=\left\{A_{\text{xx}},A_{\text{xy}},A_{\text{yy}},A_x,A_y,A_0\right\} \f$.
  3351. However, to specify an ellipse, all that is needed is five numbers; the major and minor axes lengths \f$ (a,b) \f$,
  3352. the position \f$ (x_0,y_0) \f$, and the orientation \f$ \theta \f$. This is because the basis set includes lines,
  3353. quadratics, parabolic and hyperbolic functions as well as elliptical functions as possible fits.
  3354. If the fit is found to be a parabolic or hyperbolic function then the standard #fitEllipse method is used.
  3355. The AMS method restricts the fit to parabolic, hyperbolic and elliptical curves
  3356. by imposing the condition that \f$ A^T ( D_x^T D_x + D_y^T D_y) A = 1 \f$ where
  3357. the matrices \f$ Dx \f$ and \f$ Dy \f$ are the partial derivatives of the design matrix \f$ D \f$ with
  3358. respect to x and y. The matrices are formed row by row applying the following to
  3359. each of the points in the set:
  3360. \f{align*}{
  3361. D(i,:)&=\left\{x_i^2, x_i y_i, y_i^2, x_i, y_i, 1\right\} &
  3362. D_x(i,:)&=\left\{2 x_i,y_i,0,1,0,0\right\} &
  3363. D_y(i,:)&=\left\{0,x_i,2 y_i,0,1,0\right\}
  3364. \f}
  3365. The AMS method minimizes the cost function
  3366. \f{equation*}{
  3367. \epsilon ^2=\frac{ A^T D^T D A }{ A^T (D_x^T D_x + D_y^T D_y) A^T }
  3368. \f}
  3369. The minimum cost is found by solving the generalized eigenvalue problem.
  3370. \f{equation*}{
  3371. D^T D A = \lambda \left( D_x^T D_x + D_y^T D_y\right) A
  3372. \f}
  3373. @param points Input 2D point set, stored in std::vector\<\> or Mat
  3374. */
  3375. CV_EXPORTS_W RotatedRect fitEllipseAMS( InputArray points );
  3376. /** @brief Fits an ellipse around a set of 2D points.
  3377. The function calculates the ellipse that fits a set of 2D points.
  3378. It returns the rotated rectangle in which the ellipse is inscribed.
  3379. The Direct least square (Direct) method by @cite Fitzgibbon1999 is used.
  3380. For an ellipse, this basis set is \f$ \chi= \left(x^2, x y, y^2, x, y, 1\right) \f$,
  3381. which is a set of six free coefficients \f$ A^T=\left\{A_{\text{xx}},A_{\text{xy}},A_{\text{yy}},A_x,A_y,A_0\right\} \f$.
  3382. However, to specify an ellipse, all that is needed is five numbers; the major and minor axes lengths \f$ (a,b) \f$,
  3383. the position \f$ (x_0,y_0) \f$, and the orientation \f$ \theta \f$. This is because the basis set includes lines,
  3384. quadratics, parabolic and hyperbolic functions as well as elliptical functions as possible fits.
  3385. The Direct method confines the fit to ellipses by ensuring that \f$ 4 A_{xx} A_{yy}- A_{xy}^2 > 0 \f$.
  3386. The condition imposed is that \f$ 4 A_{xx} A_{yy}- A_{xy}^2=1 \f$ which satisfies the inequality
  3387. and as the coefficients can be arbitrarily scaled is not overly restrictive.
  3388. \f{equation*}{
  3389. \epsilon ^2= A^T D^T D A \quad \text{with} \quad A^T C A =1 \quad \text{and} \quad C=\left(\begin{matrix}
  3390. 0 & 0 & 2 & 0 & 0 & 0 \\
  3391. 0 & -1 & 0 & 0 & 0 & 0 \\
  3392. 2 & 0 & 0 & 0 & 0 & 0 \\
  3393. 0 & 0 & 0 & 0 & 0 & 0 \\
  3394. 0 & 0 & 0 & 0 & 0 & 0 \\
  3395. 0 & 0 & 0 & 0 & 0 & 0
  3396. \end{matrix} \right)
  3397. \f}
  3398. The minimum cost is found by solving the generalized eigenvalue problem.
  3399. \f{equation*}{
  3400. D^T D A = \lambda \left( C\right) A
  3401. \f}
  3402. The system produces only one positive eigenvalue \f$ \lambda\f$ which is chosen as the solution
  3403. with its eigenvector \f$\mathbf{u}\f$. These are used to find the coefficients
  3404. \f{equation*}{
  3405. A = \sqrt{\frac{1}{\mathbf{u}^T C \mathbf{u}}} \mathbf{u}
  3406. \f}
  3407. The scaling factor guarantees that \f$A^T C A =1\f$.
  3408. @param points Input 2D point set, stored in std::vector\<\> or Mat
  3409. */
  3410. CV_EXPORTS_W RotatedRect fitEllipseDirect( InputArray points );
  3411. /** @brief Fits a line to a 2D or 3D point set.
  3412. The function fitLine fits a line to a 2D or 3D point set by minimizing \f$\sum_i \rho(r_i)\f$ where
  3413. \f$r_i\f$ is a distance between the \f$i^{th}\f$ point, the line and \f$\rho(r)\f$ is a distance function, one
  3414. of the following:
  3415. - DIST_L2
  3416. \f[\rho (r) = r^2/2 \quad \text{(the simplest and the fastest least-squares method)}\f]
  3417. - DIST_L1
  3418. \f[\rho (r) = r\f]
  3419. - DIST_L12
  3420. \f[\rho (r) = 2 \cdot ( \sqrt{1 + \frac{r^2}{2}} - 1)\f]
  3421. - DIST_FAIR
  3422. \f[\rho \left (r \right ) = C^2 \cdot \left ( \frac{r}{C} - \log{\left(1 + \frac{r}{C}\right)} \right ) \quad \text{where} \quad C=1.3998\f]
  3423. - DIST_WELSCH
  3424. \f[\rho \left (r \right ) = \frac{C^2}{2} \cdot \left ( 1 - \exp{\left(-\left(\frac{r}{C}\right)^2\right)} \right ) \quad \text{where} \quad C=2.9846\f]
  3425. - DIST_HUBER
  3426. \f[\rho (r) = \fork{r^2/2}{if \(r < C\)}{C \cdot (r-C/2)}{otherwise} \quad \text{where} \quad C=1.345\f]
  3427. The algorithm is based on the M-estimator ( <http://en.wikipedia.org/wiki/M-estimator> ) technique
  3428. that iteratively fits the line using the weighted least-squares algorithm. After each iteration the
  3429. weights \f$w_i\f$ are adjusted to be inversely proportional to \f$\rho(r_i)\f$ .
  3430. @param points Input vector of 2D or 3D points, stored in std::vector\<\> or Mat.
  3431. @param line Output line parameters. In case of 2D fitting, it should be a vector of 4 elements
  3432. (like Vec4f) - (vx, vy, x0, y0), where (vx, vy) is a normalized vector collinear to the line and
  3433. (x0, y0) is a point on the line. In case of 3D fitting, it should be a vector of 6 elements (like
  3434. Vec6f) - (vx, vy, vz, x0, y0, z0), where (vx, vy, vz) is a normalized vector collinear to the line
  3435. and (x0, y0, z0) is a point on the line.
  3436. @param distType Distance used by the M-estimator, see #DistanceTypes
  3437. @param param Numerical parameter ( C ) for some types of distances. If it is 0, an optimal value
  3438. is chosen.
  3439. @param reps Sufficient accuracy for the radius (distance between the coordinate origin and the line).
  3440. @param aeps Sufficient accuracy for the angle. 0.01 would be a good default value for reps and aeps.
  3441. */
  3442. CV_EXPORTS_W void fitLine( InputArray points, OutputArray line, int distType,
  3443. double param, double reps, double aeps );
  3444. /** @brief Performs a point-in-contour test.
  3445. The function determines whether the point is inside a contour, outside, or lies on an edge (or
  3446. coincides with a vertex). It returns positive (inside), negative (outside), or zero (on an edge)
  3447. value, correspondingly. When measureDist=false , the return value is +1, -1, and 0, respectively.
  3448. Otherwise, the return value is a signed distance between the point and the nearest contour edge.
  3449. See below a sample output of the function where each image pixel is tested against the contour:
  3450. ![sample output](pics/pointpolygon.png)
  3451. @param contour Input contour.
  3452. @param pt Point tested against the contour.
  3453. @param measureDist If true, the function estimates the signed distance from the point to the
  3454. nearest contour edge. Otherwise, the function only checks if the point is inside a contour or not.
  3455. */
  3456. CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measureDist );
  3457. /** @brief Finds out if there is any intersection between two rotated rectangles.
  3458. If there is then the vertices of the intersecting region are returned as well.
  3459. Below are some examples of intersection configurations. The hatched pattern indicates the
  3460. intersecting region and the red vertices are returned by the function.
  3461. ![intersection examples](pics/intersection.png)
  3462. @param rect1 First rectangle
  3463. @param rect2 Second rectangle
  3464. @param intersectingRegion The output array of the vertices of the intersecting region. It returns
  3465. at most 8 vertices. Stored as std::vector\<cv::Point2f\> or cv::Mat as Mx1 of type CV_32FC2.
  3466. @returns One of #RectanglesIntersectTypes
  3467. */
  3468. CV_EXPORTS_W int rotatedRectangleIntersection( const RotatedRect& rect1, const RotatedRect& rect2, OutputArray intersectingRegion );
  3469. /** @brief Creates a smart pointer to a cv::GeneralizedHoughBallard class and initializes it.
  3470. */
  3471. CV_EXPORTS_W Ptr<GeneralizedHoughBallard> createGeneralizedHoughBallard();
  3472. /** @brief Creates a smart pointer to a cv::GeneralizedHoughGuil class and initializes it.
  3473. */
  3474. CV_EXPORTS_W Ptr<GeneralizedHoughGuil> createGeneralizedHoughGuil();
  3475. //! @} imgproc_shape
  3476. //! @addtogroup imgproc_colormap
  3477. //! @{
  3478. //! GNU Octave/MATLAB equivalent colormaps
  3479. enum ColormapTypes
  3480. {
  3481. COLORMAP_AUTUMN = 0, //!< ![autumn](pics/colormaps/colorscale_autumn.jpg)
  3482. COLORMAP_BONE = 1, //!< ![bone](pics/colormaps/colorscale_bone.jpg)
  3483. COLORMAP_JET = 2, //!< ![jet](pics/colormaps/colorscale_jet.jpg)
  3484. COLORMAP_WINTER = 3, //!< ![winter](pics/colormaps/colorscale_winter.jpg)
  3485. COLORMAP_RAINBOW = 4, //!< ![rainbow](pics/colormaps/colorscale_rainbow.jpg)
  3486. COLORMAP_OCEAN = 5, //!< ![ocean](pics/colormaps/colorscale_ocean.jpg)
  3487. COLORMAP_SUMMER = 6, //!< ![summer](pics/colormaps/colorscale_summer.jpg)
  3488. COLORMAP_SPRING = 7, //!< ![spring](pics/colormaps/colorscale_spring.jpg)
  3489. COLORMAP_COOL = 8, //!< ![cool](pics/colormaps/colorscale_cool.jpg)
  3490. COLORMAP_HSV = 9, //!< ![HSV](pics/colormaps/colorscale_hsv.jpg)
  3491. COLORMAP_PINK = 10, //!< ![pink](pics/colormaps/colorscale_pink.jpg)
  3492. COLORMAP_HOT = 11, //!< ![hot](pics/colormaps/colorscale_hot.jpg)
  3493. COLORMAP_PARULA = 12, //!< ![parula](pics/colormaps/colorscale_parula.jpg)
  3494. COLORMAP_MAGMA = 13, //!< ![magma](pics/colormaps/colorscale_magma.jpg)
  3495. COLORMAP_INFERNO = 14, //!< ![inferno](pics/colormaps/colorscale_inferno.jpg)
  3496. COLORMAP_PLASMA = 15, //!< ![plasma](pics/colormaps/colorscale_plasma.jpg)
  3497. COLORMAP_VIRIDIS = 16, //!< ![viridis](pics/colormaps/colorscale_viridis.jpg)
  3498. COLORMAP_CIVIDIS = 17, //!< ![cividis](pics/colormaps/colorscale_cividis.jpg)
  3499. COLORMAP_TWILIGHT = 18, //!< ![twilight](pics/colormaps/colorscale_twilight.jpg)
  3500. COLORMAP_TWILIGHT_SHIFTED = 19, //!< ![twilight shifted](pics/colormaps/colorscale_twilight_shifted.jpg)
  3501. COLORMAP_TURBO = 20, //!< ![turbo](pics/colormaps/colorscale_turbo.jpg)
  3502. COLORMAP_DEEPGREEN = 21 //!< ![deepgreen](pics/colormaps/colorscale_deepgreen.jpg)
  3503. };
  3504. /** @example samples/cpp/falsecolor.cpp
  3505. An example using applyColorMap function
  3506. */
  3507. /** @brief Applies a GNU Octave/MATLAB equivalent colormap on a given image.
  3508. @param src The source image, grayscale or colored of type CV_8UC1 or CV_8UC3.
  3509. @param dst The result is the colormapped source image. Note: Mat::create is called on dst.
  3510. @param colormap The colormap to apply, see #ColormapTypes
  3511. */
  3512. CV_EXPORTS_W void applyColorMap(InputArray src, OutputArray dst, int colormap);
  3513. /** @brief Applies a user colormap on a given image.
  3514. @param src The source image, grayscale or colored of type CV_8UC1 or CV_8UC3.
  3515. @param dst The result is the colormapped source image. Note: Mat::create is called on dst.
  3516. @param userColor The colormap to apply of type CV_8UC1 or CV_8UC3 and size 256
  3517. */
  3518. CV_EXPORTS_W void applyColorMap(InputArray src, OutputArray dst, InputArray userColor);
  3519. //! @} imgproc_colormap
  3520. //! @addtogroup imgproc_draw
  3521. //! @{
  3522. /** OpenCV color channel order is BGR[A] */
  3523. #define CV_RGB(r, g, b) cv::Scalar((b), (g), (r), 0)
  3524. /** @brief Draws a line segment connecting two points.
  3525. The function line draws the line segment between pt1 and pt2 points in the image. The line is
  3526. clipped by the image boundaries. For non-antialiased lines with integer coordinates, the 8-connected
  3527. or 4-connected Bresenham algorithm is used. Thick lines are drawn with rounding endings. Antialiased
  3528. lines are drawn using Gaussian filtering.
  3529. @param img Image.
  3530. @param pt1 First point of the line segment.
  3531. @param pt2 Second point of the line segment.
  3532. @param color Line color.
  3533. @param thickness Line thickness.
  3534. @param lineType Type of the line. See #LineTypes.
  3535. @param shift Number of fractional bits in the point coordinates.
  3536. */
  3537. CV_EXPORTS_W void line(InputOutputArray img, Point pt1, Point pt2, const Scalar& color,
  3538. int thickness = 1, int lineType = LINE_8, int shift = 0);
  3539. /** @brief Draws a arrow segment pointing from the first point to the second one.
  3540. The function cv::arrowedLine draws an arrow between pt1 and pt2 points in the image. See also #line.
  3541. @param img Image.
  3542. @param pt1 The point the arrow starts from.
  3543. @param pt2 The point the arrow points to.
  3544. @param color Line color.
  3545. @param thickness Line thickness.
  3546. @param line_type Type of the line. See #LineTypes
  3547. @param shift Number of fractional bits in the point coordinates.
  3548. @param tipLength The length of the arrow tip in relation to the arrow length
  3549. */
  3550. CV_EXPORTS_W void arrowedLine(InputOutputArray img, Point pt1, Point pt2, const Scalar& color,
  3551. int thickness=1, int line_type=8, int shift=0, double tipLength=0.1);
  3552. /** @brief Draws a simple, thick, or filled up-right rectangle.
  3553. The function cv::rectangle draws a rectangle outline or a filled rectangle whose two opposite corners
  3554. are pt1 and pt2.
  3555. @param img Image.
  3556. @param pt1 Vertex of the rectangle.
  3557. @param pt2 Vertex of the rectangle opposite to pt1 .
  3558. @param color Rectangle color or brightness (grayscale image).
  3559. @param thickness Thickness of lines that make up the rectangle. Negative values, like #FILLED,
  3560. mean that the function has to draw a filled rectangle.
  3561. @param lineType Type of the line. See #LineTypes
  3562. @param shift Number of fractional bits in the point coordinates.
  3563. */
  3564. CV_EXPORTS_W void rectangle(InputOutputArray img, Point pt1, Point pt2,
  3565. const Scalar& color, int thickness = 1,
  3566. int lineType = LINE_8, int shift = 0);
  3567. /** @overload
  3568. use `rec` parameter as alternative specification of the drawn rectangle: `r.tl() and
  3569. r.br()-Point(1,1)` are opposite corners
  3570. */
  3571. CV_EXPORTS void rectangle(CV_IN_OUT Mat& img, Rect rec,
  3572. const Scalar& color, int thickness = 1,
  3573. int lineType = LINE_8, int shift = 0);
  3574. /** @example samples/cpp/tutorial_code/ImgProc/basic_drawing/Drawing_2.cpp
  3575. An example using drawing functions
  3576. */
  3577. /** @brief Draws a circle.
  3578. The function cv::circle draws a simple or filled circle with a given center and radius.
  3579. @param img Image where the circle is drawn.
  3580. @param center Center of the circle.
  3581. @param radius Radius of the circle.
  3582. @param color Circle color.
  3583. @param thickness Thickness of the circle outline, if positive. Negative values, like #FILLED,
  3584. mean that a filled circle is to be drawn.
  3585. @param lineType Type of the circle boundary. See #LineTypes
  3586. @param shift Number of fractional bits in the coordinates of the center and in the radius value.
  3587. */
  3588. CV_EXPORTS_W void circle(InputOutputArray img, Point center, int radius,
  3589. const Scalar& color, int thickness = 1,
  3590. int lineType = LINE_8, int shift = 0);
  3591. /** @brief Draws a simple or thick elliptic arc or fills an ellipse sector.
  3592. The function cv::ellipse with more parameters draws an ellipse outline, a filled ellipse, an elliptic
  3593. arc, or a filled ellipse sector. The drawing code uses general parametric form.
  3594. A piecewise-linear curve is used to approximate the elliptic arc
  3595. boundary. If you need more control of the ellipse rendering, you can retrieve the curve using
  3596. #ellipse2Poly and then render it with #polylines or fill it with #fillPoly. If you use the first
  3597. variant of the function and want to draw the whole ellipse, not an arc, pass `startAngle=0` and
  3598. `endAngle=360`. If `startAngle` is greater than `endAngle`, they are swapped. The figure below explains
  3599. the meaning of the parameters to draw the blue arc.
  3600. ![Parameters of Elliptic Arc](pics/ellipse.svg)
  3601. @param img Image.
  3602. @param center Center of the ellipse.
  3603. @param axes Half of the size of the ellipse main axes.
  3604. @param angle Ellipse rotation angle in degrees.
  3605. @param startAngle Starting angle of the elliptic arc in degrees.
  3606. @param endAngle Ending angle of the elliptic arc in degrees.
  3607. @param color Ellipse color.
  3608. @param thickness Thickness of the ellipse arc outline, if positive. Otherwise, this indicates that
  3609. a filled ellipse sector is to be drawn.
  3610. @param lineType Type of the ellipse boundary. See #LineTypes
  3611. @param shift Number of fractional bits in the coordinates of the center and values of axes.
  3612. */
  3613. CV_EXPORTS_W void ellipse(InputOutputArray img, Point center, Size axes,
  3614. double angle, double startAngle, double endAngle,
  3615. const Scalar& color, int thickness = 1,
  3616. int lineType = LINE_8, int shift = 0);
  3617. /** @overload
  3618. @param img Image.
  3619. @param box Alternative ellipse representation via RotatedRect. This means that the function draws
  3620. an ellipse inscribed in the rotated rectangle.
  3621. @param color Ellipse color.
  3622. @param thickness Thickness of the ellipse arc outline, if positive. Otherwise, this indicates that
  3623. a filled ellipse sector is to be drawn.
  3624. @param lineType Type of the ellipse boundary. See #LineTypes
  3625. */
  3626. CV_EXPORTS_W void ellipse(InputOutputArray img, const RotatedRect& box, const Scalar& color,
  3627. int thickness = 1, int lineType = LINE_8);
  3628. /* ----------------------------------------------------------------------------------------- */
  3629. /* ADDING A SET OF PREDEFINED MARKERS WHICH COULD BE USED TO HIGHLIGHT POSITIONS IN AN IMAGE */
  3630. /* ----------------------------------------------------------------------------------------- */
  3631. //! Possible set of marker types used for the cv::drawMarker function
  3632. enum MarkerTypes
  3633. {
  3634. MARKER_CROSS = 0, //!< A crosshair marker shape
  3635. MARKER_TILTED_CROSS = 1, //!< A 45 degree tilted crosshair marker shape
  3636. MARKER_STAR = 2, //!< A star marker shape, combination of cross and tilted cross
  3637. MARKER_DIAMOND = 3, //!< A diamond marker shape
  3638. MARKER_SQUARE = 4, //!< A square marker shape
  3639. MARKER_TRIANGLE_UP = 5, //!< An upwards pointing triangle marker shape
  3640. MARKER_TRIANGLE_DOWN = 6 //!< A downwards pointing triangle marker shape
  3641. };
  3642. /** @brief Draws a marker on a predefined position in an image.
  3643. The function cv::drawMarker draws a marker on a given position in the image. For the moment several
  3644. marker types are supported, see #MarkerTypes for more information.
  3645. @param img Image.
  3646. @param position The point where the crosshair is positioned.
  3647. @param color Line color.
  3648. @param markerType The specific type of marker you want to use, see #MarkerTypes
  3649. @param thickness Line thickness.
  3650. @param line_type Type of the line, See #LineTypes
  3651. @param markerSize The length of the marker axis [default = 20 pixels]
  3652. */
  3653. CV_EXPORTS_W void drawMarker(CV_IN_OUT Mat& img, Point position, const Scalar& color,
  3654. int markerType = MARKER_CROSS, int markerSize=20, int thickness=1,
  3655. int line_type=8);
  3656. /* ----------------------------------------------------------------------------------------- */
  3657. /* END OF MARKER SECTION */
  3658. /* ----------------------------------------------------------------------------------------- */
  3659. /** @overload */
  3660. CV_EXPORTS void fillConvexPoly(Mat& img, const Point* pts, int npts,
  3661. const Scalar& color, int lineType = LINE_8,
  3662. int shift = 0);
  3663. /** @brief Fills a convex polygon.
  3664. The function cv::fillConvexPoly draws a filled convex polygon. This function is much faster than the
  3665. function #fillPoly . It can fill not only convex polygons but any monotonic polygon without
  3666. self-intersections, that is, a polygon whose contour intersects every horizontal line (scan line)
  3667. twice at the most (though, its top-most and/or the bottom edge could be horizontal).
  3668. @param img Image.
  3669. @param points Polygon vertices.
  3670. @param color Polygon color.
  3671. @param lineType Type of the polygon boundaries. See #LineTypes
  3672. @param shift Number of fractional bits in the vertex coordinates.
  3673. */
  3674. CV_EXPORTS_W void fillConvexPoly(InputOutputArray img, InputArray points,
  3675. const Scalar& color, int lineType = LINE_8,
  3676. int shift = 0);
  3677. /** @overload */
  3678. CV_EXPORTS void fillPoly(Mat& img, const Point** pts,
  3679. const int* npts, int ncontours,
  3680. const Scalar& color, int lineType = LINE_8, int shift = 0,
  3681. Point offset = Point() );
  3682. /** @example samples/cpp/tutorial_code/ImgProc/basic_drawing/Drawing_1.cpp
  3683. An example using drawing functions
  3684. Check @ref tutorial_random_generator_and_text "the corresponding tutorial" for more details
  3685. */
  3686. /** @brief Fills the area bounded by one or more polygons.
  3687. The function cv::fillPoly fills an area bounded by several polygonal contours. The function can fill
  3688. complex areas, for example, areas with holes, contours with self-intersections (some of their
  3689. parts), and so forth.
  3690. @param img Image.
  3691. @param pts Array of polygons where each polygon is represented as an array of points.
  3692. @param color Polygon color.
  3693. @param lineType Type of the polygon boundaries. See #LineTypes
  3694. @param shift Number of fractional bits in the vertex coordinates.
  3695. @param offset Optional offset of all points of the contours.
  3696. */
  3697. CV_EXPORTS_W void fillPoly(InputOutputArray img, InputArrayOfArrays pts,
  3698. const Scalar& color, int lineType = LINE_8, int shift = 0,
  3699. Point offset = Point() );
  3700. /** @overload */
  3701. CV_EXPORTS void polylines(Mat& img, const Point* const* pts, const int* npts,
  3702. int ncontours, bool isClosed, const Scalar& color,
  3703. int thickness = 1, int lineType = LINE_8, int shift = 0 );
  3704. /** @brief Draws several polygonal curves.
  3705. @param img Image.
  3706. @param pts Array of polygonal curves.
  3707. @param isClosed Flag indicating whether the drawn polylines are closed or not. If they are closed,
  3708. the function draws a line from the last vertex of each curve to its first vertex.
  3709. @param color Polyline color.
  3710. @param thickness Thickness of the polyline edges.
  3711. @param lineType Type of the line segments. See #LineTypes
  3712. @param shift Number of fractional bits in the vertex coordinates.
  3713. The function cv::polylines draws one or more polygonal curves.
  3714. */
  3715. CV_EXPORTS_W void polylines(InputOutputArray img, InputArrayOfArrays pts,
  3716. bool isClosed, const Scalar& color,
  3717. int thickness = 1, int lineType = LINE_8, int shift = 0 );
  3718. /** @example samples/cpp/contours2.cpp
  3719. An example program illustrates the use of cv::findContours and cv::drawContours
  3720. \image html WindowsQtContoursOutput.png "Screenshot of the program"
  3721. */
  3722. /** @example samples/cpp/segment_objects.cpp
  3723. An example using drawContours to clean up a background segmentation result
  3724. */
  3725. /** @brief Draws contours outlines or filled contours.
  3726. The function draws contour outlines in the image if \f$\texttt{thickness} \ge 0\f$ or fills the area
  3727. bounded by the contours if \f$\texttt{thickness}<0\f$ . The example below shows how to retrieve
  3728. connected components from the binary image and label them: :
  3729. @include snippets/imgproc_drawContours.cpp
  3730. @param image Destination image.
  3731. @param contours All the input contours. Each contour is stored as a point vector.
  3732. @param contourIdx Parameter indicating a contour to draw. If it is negative, all the contours are drawn.
  3733. @param color Color of the contours.
  3734. @param thickness Thickness of lines the contours are drawn with. If it is negative (for example,
  3735. thickness=#FILLED ), the contour interiors are drawn.
  3736. @param lineType Line connectivity. See #LineTypes
  3737. @param hierarchy Optional information about hierarchy. It is only needed if you want to draw only
  3738. some of the contours (see maxLevel ).
  3739. @param maxLevel Maximal level for drawn contours. If it is 0, only the specified contour is drawn.
  3740. If it is 1, the function draws the contour(s) and all the nested contours. If it is 2, the function
  3741. draws the contours, all the nested contours, all the nested-to-nested contours, and so on. This
  3742. parameter is only taken into account when there is hierarchy available.
  3743. @param offset Optional contour shift parameter. Shift all the drawn contours by the specified
  3744. \f$\texttt{offset}=(dx,dy)\f$ .
  3745. @note When thickness=#FILLED, the function is designed to handle connected components with holes correctly
  3746. even when no hierarchy date is provided. This is done by analyzing all the outlines together
  3747. using even-odd rule. This may give incorrect results if you have a joint collection of separately retrieved
  3748. contours. In order to solve this problem, you need to call #drawContours separately for each sub-group
  3749. of contours, or iterate over the collection using contourIdx parameter.
  3750. */
  3751. CV_EXPORTS_W void drawContours( InputOutputArray image, InputArrayOfArrays contours,
  3752. int contourIdx, const Scalar& color,
  3753. int thickness = 1, int lineType = LINE_8,
  3754. InputArray hierarchy = noArray(),
  3755. int maxLevel = INT_MAX, Point offset = Point() );
  3756. /** @brief Clips the line against the image rectangle.
  3757. The function cv::clipLine calculates a part of the line segment that is entirely within the specified
  3758. rectangle. it returns false if the line segment is completely outside the rectangle. Otherwise,
  3759. it returns true .
  3760. @param imgSize Image size. The image rectangle is Rect(0, 0, imgSize.width, imgSize.height) .
  3761. @param pt1 First line point.
  3762. @param pt2 Second line point.
  3763. */
  3764. CV_EXPORTS bool clipLine(Size imgSize, CV_IN_OUT Point& pt1, CV_IN_OUT Point& pt2);
  3765. /** @overload
  3766. @param imgSize Image size. The image rectangle is Rect(0, 0, imgSize.width, imgSize.height) .
  3767. @param pt1 First line point.
  3768. @param pt2 Second line point.
  3769. */
  3770. CV_EXPORTS bool clipLine(Size2l imgSize, CV_IN_OUT Point2l& pt1, CV_IN_OUT Point2l& pt2);
  3771. /** @overload
  3772. @param imgRect Image rectangle.
  3773. @param pt1 First line point.
  3774. @param pt2 Second line point.
  3775. */
  3776. CV_EXPORTS_W bool clipLine(Rect imgRect, CV_OUT CV_IN_OUT Point& pt1, CV_OUT CV_IN_OUT Point& pt2);
  3777. /** @brief Approximates an elliptic arc with a polyline.
  3778. The function ellipse2Poly computes the vertices of a polyline that approximates the specified
  3779. elliptic arc. It is used by #ellipse. If `arcStart` is greater than `arcEnd`, they are swapped.
  3780. @param center Center of the arc.
  3781. @param axes Half of the size of the ellipse main axes. See #ellipse for details.
  3782. @param angle Rotation angle of the ellipse in degrees. See #ellipse for details.
  3783. @param arcStart Starting angle of the elliptic arc in degrees.
  3784. @param arcEnd Ending angle of the elliptic arc in degrees.
  3785. @param delta Angle between the subsequent polyline vertices. It defines the approximation
  3786. accuracy.
  3787. @param pts Output vector of polyline vertices.
  3788. */
  3789. CV_EXPORTS_W void ellipse2Poly( Point center, Size axes, int angle,
  3790. int arcStart, int arcEnd, int delta,
  3791. CV_OUT std::vector<Point>& pts );
  3792. /** @overload
  3793. @param center Center of the arc.
  3794. @param axes Half of the size of the ellipse main axes. See #ellipse for details.
  3795. @param angle Rotation angle of the ellipse in degrees. See #ellipse for details.
  3796. @param arcStart Starting angle of the elliptic arc in degrees.
  3797. @param arcEnd Ending angle of the elliptic arc in degrees.
  3798. @param delta Angle between the subsequent polyline vertices. It defines the approximation accuracy.
  3799. @param pts Output vector of polyline vertices.
  3800. */
  3801. CV_EXPORTS void ellipse2Poly(Point2d center, Size2d axes, int angle,
  3802. int arcStart, int arcEnd, int delta,
  3803. CV_OUT std::vector<Point2d>& pts);
  3804. /** @brief Draws a text string.
  3805. The function cv::putText renders the specified text string in the image. Symbols that cannot be rendered
  3806. using the specified font are replaced by question marks. See #getTextSize for a text rendering code
  3807. example.
  3808. @param img Image.
  3809. @param text Text string to be drawn.
  3810. @param org Bottom-left corner of the text string in the image.
  3811. @param fontFace Font type, see #HersheyFonts.
  3812. @param fontScale Font scale factor that is multiplied by the font-specific base size.
  3813. @param color Text color.
  3814. @param thickness Thickness of the lines used to draw a text.
  3815. @param lineType Line type. See #LineTypes
  3816. @param bottomLeftOrigin When true, the image data origin is at the bottom-left corner. Otherwise,
  3817. it is at the top-left corner.
  3818. */
  3819. CV_EXPORTS_W void putText( InputOutputArray img, const String& text, Point org,
  3820. int fontFace, double fontScale, Scalar color,
  3821. int thickness = 1, int lineType = LINE_8,
  3822. bool bottomLeftOrigin = false );
  3823. /** @brief Calculates the width and height of a text string.
  3824. The function cv::getTextSize calculates and returns the size of a box that contains the specified text.
  3825. That is, the following code renders some text, the tight box surrounding it, and the baseline: :
  3826. @code
  3827. String text = "Funny text inside the box";
  3828. int fontFace = FONT_HERSHEY_SCRIPT_SIMPLEX;
  3829. double fontScale = 2;
  3830. int thickness = 3;
  3831. Mat img(600, 800, CV_8UC3, Scalar::all(0));
  3832. int baseline=0;
  3833. Size textSize = getTextSize(text, fontFace,
  3834. fontScale, thickness, &baseline);
  3835. baseline += thickness;
  3836. // center the text
  3837. Point textOrg((img.cols - textSize.width)/2,
  3838. (img.rows + textSize.height)/2);
  3839. // draw the box
  3840. rectangle(img, textOrg + Point(0, baseline),
  3841. textOrg + Point(textSize.width, -textSize.height),
  3842. Scalar(0,0,255));
  3843. // ... and the baseline first
  3844. line(img, textOrg + Point(0, thickness),
  3845. textOrg + Point(textSize.width, thickness),
  3846. Scalar(0, 0, 255));
  3847. // then put the text itself
  3848. putText(img, text, textOrg, fontFace, fontScale,
  3849. Scalar::all(255), thickness, 8);
  3850. @endcode
  3851. @param text Input text string.
  3852. @param fontFace Font to use, see #HersheyFonts.
  3853. @param fontScale Font scale factor that is multiplied by the font-specific base size.
  3854. @param thickness Thickness of lines used to render the text. See #putText for details.
  3855. @param[out] baseLine y-coordinate of the baseline relative to the bottom-most text
  3856. point.
  3857. @return The size of a box that contains the specified text.
  3858. @see putText
  3859. */
  3860. CV_EXPORTS_W Size getTextSize(const String& text, int fontFace,
  3861. double fontScale, int thickness,
  3862. CV_OUT int* baseLine);
  3863. /** @brief Calculates the font-specific size to use to achieve a given height in pixels.
  3864. @param fontFace Font to use, see cv::HersheyFonts.
  3865. @param pixelHeight Pixel height to compute the fontScale for
  3866. @param thickness Thickness of lines used to render the text.See putText for details.
  3867. @return The fontSize to use for cv::putText
  3868. @see cv::putText
  3869. */
  3870. CV_EXPORTS_W double getFontScaleFromHeight(const int fontFace,
  3871. const int pixelHeight,
  3872. const int thickness = 1);
  3873. /** @brief Line iterator
  3874. The class is used to iterate over all the pixels on the raster line
  3875. segment connecting two specified points.
  3876. The class LineIterator is used to get each pixel of a raster line. It
  3877. can be treated as versatile implementation of the Bresenham algorithm
  3878. where you can stop at each pixel and do some extra processing, for
  3879. example, grab pixel values along the line or draw a line with an effect
  3880. (for example, with XOR operation).
  3881. The number of pixels along the line is stored in LineIterator::count.
  3882. The method LineIterator::pos returns the current position in the image:
  3883. @code{.cpp}
  3884. // grabs pixels along the line (pt1, pt2)
  3885. // from 8-bit 3-channel image to the buffer
  3886. LineIterator it(img, pt1, pt2, 8);
  3887. LineIterator it2 = it;
  3888. vector<Vec3b> buf(it.count);
  3889. for(int i = 0; i < it.count; i++, ++it)
  3890. buf[i] = *(const Vec3b*)*it;
  3891. // alternative way of iterating through the line
  3892. for(int i = 0; i < it2.count; i++, ++it2)
  3893. {
  3894. Vec3b val = img.at<Vec3b>(it2.pos());
  3895. CV_Assert(buf[i] == val);
  3896. }
  3897. @endcode
  3898. */
  3899. class CV_EXPORTS LineIterator
  3900. {
  3901. public:
  3902. /** @brief initializes the iterator
  3903. creates iterators for the line connecting pt1 and pt2
  3904. the line will be clipped on the image boundaries
  3905. the line is 8-connected or 4-connected
  3906. If leftToRight=true, then the iteration is always done
  3907. from the left-most point to the right most,
  3908. not to depend on the ordering of pt1 and pt2 parameters
  3909. */
  3910. LineIterator( const Mat& img, Point pt1, Point pt2,
  3911. int connectivity = 8, bool leftToRight = false );
  3912. /** @brief returns pointer to the current pixel
  3913. */
  3914. uchar* operator *();
  3915. /** @brief prefix increment operator (++it). shifts iterator to the next pixel
  3916. */
  3917. LineIterator& operator ++();
  3918. /** @brief postfix increment operator (it++). shifts iterator to the next pixel
  3919. */
  3920. LineIterator operator ++(int);
  3921. /** @brief returns coordinates of the current pixel
  3922. */
  3923. Point pos() const;
  3924. uchar* ptr;
  3925. const uchar* ptr0;
  3926. int step, elemSize;
  3927. int err, count;
  3928. int minusDelta, plusDelta;
  3929. int minusStep, plusStep;
  3930. };
  3931. //! @cond IGNORED
  3932. // === LineIterator implementation ===
  3933. inline
  3934. uchar* LineIterator::operator *()
  3935. {
  3936. return ptr;
  3937. }
  3938. inline
  3939. LineIterator& LineIterator::operator ++()
  3940. {
  3941. int mask = err < 0 ? -1 : 0;
  3942. err += minusDelta + (plusDelta & mask);
  3943. ptr += minusStep + (plusStep & mask);
  3944. return *this;
  3945. }
  3946. inline
  3947. LineIterator LineIterator::operator ++(int)
  3948. {
  3949. LineIterator it = *this;
  3950. ++(*this);
  3951. return it;
  3952. }
  3953. inline
  3954. Point LineIterator::pos() const
  3955. {
  3956. Point p;
  3957. p.y = (int)((ptr - ptr0)/step);
  3958. p.x = (int)(((ptr - ptr0) - p.y*step)/elemSize);
  3959. return p;
  3960. }
  3961. //! @endcond
  3962. //! @} imgproc_draw
  3963. //! @} imgproc
  3964. } // cv
  3965. #ifndef DISABLE_OPENCV_24_COMPATIBILITY
  3966. #include "opencv2/imgproc/imgproc_c.h"
  3967. #endif
  3968. #endif