ݺߣ

ݺߣShare a Scribd company logo
MakingPHPSee



   Confoo2011

 MichaelMaclean
 mgdm@php.net
 http://mgdm.net
Youwanttodowhat?




PHPhasmanywaystocreategraphics
 Cairo,ImageMagick,GraphicsMagick,GD...
Youwanttodowhat?




Therearen'tthatmanywaystoprocessgraphics
IntroducingOpenCV



“TheOpenComputerVisionLibraryhas>500
algorithms,documentationandsamplecodefor
         realtimecomputervision.”
IntroducingOpenCV




OriginallydevelopedbyIntel,releasedasopen
         sourceundertheBSDlicence
IntroducingOpenCV




    http://opencv.org
Why?




BecauseICan™
Why?




Iwantedtolearnaboutit,butusealanguageI
          wasmorecomfortablewith
Why?




Ithoughtitmightbeusefultoothers
Applications




  Objectrecognition
Thisincludesfacedetection!
Applications




Gesturetracking(perhapsnotthatusefulin
                  PHP ...)
Applications




        Structurefrommotion
Creating3Dmodelsofobjectsfrom2Dinputs
Applications




     Structurefrommotion
Again,maybenotinPHP,butoneday...
Applications




OthercoolthingsI'venotyetthoughtof
ABriefDisclaimer




It'snotmyaimforthistalktogiveashort
         courseoncomputervision
ABriefDisclaimer




Rather,I'mgivingatourofaninterestingbitof
                    software
ABriefDisclaimer




(I'mcertainlynotthebestqualified,anyway!)
ABriefDisclaimer




Iwillnotexplainthetheorybehindmanythings
       (asImightnotunderstanditmyself)
ABriefDisclaimer




I'mnotreallyamathsgeek,soifthereareany
         inaccuracies,pointthemout
Gettingit




It'swillbeonGithubveryshortly
   http://github.com/mgdm
Gettingit



You'llneedtheOpenCVlibrary,whichisinmost
          Linuxdistributionsthesedays


               YouneedPHP5.3
Gettingit


I'venotdoneaWindowsbuildyet–it'sonthe
                   TODO


             Patchesarewelcome

                     ☺
Installing


It'sthenormalPHPextensionbuildsystem
                   phpize
                ./configure
                    make
                make install
  ●
      Addextension=opencv.sotophp.ini
Basicusage



EverythinginthelibraryisundertheOpenCV
                 namespace
    Ifyou'renotfamiliarwithnamespaces,check
              http://php.net/namespaces
Basicusage




Let'sstartbyloadingatestimage
LoadingandSavingImages

  $image = OpenCVImage::load("test.jpg");
         $image ->save("test2.jpg");

         YounowhaveanImageobject
  Thesameimagehasbeensavedastest2.jpg
Ifthathasworked,thelibraryissetupcorrectly.
               Congratulations☺
BasicsofOpenCV




Ittreatsimagesasbeingfundamentallymatrices
                    ofnumbers
BasicsofOpenCV




So,manyofthesameoperationsyou'dperform
onamatrixcanalsobeperformedonanimage
BasicsofOpenCV




Thisincludesthingsliketransposition,adding,
        multiplying,addingscalars,etc
BasicsofOpenCV



Thereisaverylargelistofthesebasicoperators

            NotallofwhichIunderstand...
ImageProcessing


OpenCV(predictably)hasmany,manyfunctions
      thatdovariousthingstoimages


   Theserangefromthefairlymundanetothevery
                      powerful
Smoothing




Notveryexciting,butagooddemonstration–a
                 Gaussianblur
Smoothing


$dst = $image->smooth(
      OpenCVImage::GAUSSIAN, 31, 0, 0, 0);



   $dstwillnowcontainaslightlyfuzzyversion
                  oftheimage
The input
The result
Smoothing,continued



     Whywouldyouwanttodothat?
Perhapstoremovenoisefromanimagetakeninlow
                       light
Smoothing,continued


●
    Variousmethodsareavailable,accessiblevia
          differentparameterstosmooth()

                      ●
                          Medianblur
                          ●
                              Gaussian
                  ●
                      Bilateralfiltering
ImageMorphology




(Soundscool,doesn'tit?)
ImageMorphology

Theseareaclassofoperatorswhichconvolvean
              imagewithakernel


  Thekernelislikeamask,whichisscanned
       acrosseverypointintheimage

   Ithasananchorpoint,whichrepresentsthepixel
              beingcurrentlytransformed
Kernels

         0          1          0

         1          2          1

         0          1          0
   Forsomeoperations,eachnumber
representstheamountof“influence”that
         pixelhasontheoutput
Dilation


 Akernelconsistingofa3x3square,withan
anchorinthecentre,isscannedovertheimage


 Foreachpointthattheanchorgoesover,the
maximumvaluecoveredbythekernelisfound
Dilation



Thismaximumvaluebecomesthevalueofthe
    pixelatthatpositioninthenewimage


 Theupshotofthisis,brightareasgetlarger
Erosion


 Thisisfundamentallytheoppositeofdilation


Insteadofthemaximumvalueunderthekernel,
            welookfortheminimum


              Brightareasgetsmaller
What'sthepoint?



Brightareasmightbepartofthesameobject,
   butsplitintoseveralpartsintheimage

             (Shadows,obstructions)
What'sthepoint?




Theseoperationswillcausetheseareastojoin
     up,makingthemeasiertoidentify
Edgedetection

OpenCVfeaturesseveralalgorithmsforedge
                detection

 YoumightwellhaveseenthesebeforeinGIMPor
                   Photoshop


Youcanusethemtogetoutlinesofobjects
Sobel


TheSobeloperatorisawaytogetaderivative
                ofanimage

    (Mathsgeeksmaypointoutthisistechnically
        incorrect–justrunwithitfornow)
Sobel




Youendupwithanimagewhichhasbright
   areaswherethereislotsofcontrast
Theresult
Canny


  Amorecomplexalgorithm,whichtakes
          derivativesinxandy


Somemoreprocessingresultsinafarclearer
                  line
Theresult



Andnowforsomething
 completelydifferent
   moreinteresting
Templatematching



YoucanuseOpenCVtotryandlocateanimage
            withinanotherimage
    You'dusuallydothiswithasmallimageofan
          object,andalargersearchimage
Mytestimage




(Itisonly59pixelswide,excusethefuzziness)
Myotherimage




ThankstoMichaelangelovanDamfortheCreativeCommonspicture
     http://www.flickr.com/photos/dragonbe/3411273755/
Theresult
Theresult




It'snotperfect,butit'sastart
Theresult



ThereasonitmatchesmostoftheElePHPantsis
becausethesmallimageis,well,small,andhas
           beenre­savedasaJPEG
Theresult




Thus,thepixelsitissearchingwithareno
     longeridenticaltotheoriginals
Histograms


Histogramsareawayoffittingvaluesintoslots,
        orbins,asOpenCVcallsthem


 Theyarefundamentallythesameasanarray,
withacountofvalues,andcanbegraphedasa
                   barchart
I'mnotgoingtodoanything
       quitethatdull
Histograms




OpenCVuseshistogramstorecordasignature
         offeaturesinanimage
Histograms



Forexample,youcanusethemtorecordthe
      coloursinasectionofanimage


            (Stayawakeattheback)
Backprojection



IfIconvertthisimagetoHSVformat,Icangeta
 versionoftheimagewhichencodesthehueas
                    onechannel
Backprojection


ThenIcanconvertthisintoahistogram,toget
 ahashofsortsoftheproportionofcoloursin
                    theimage


Then,OpenCVwilltakethishistogramandlook
           foritinanotherimage
Anaside...




Thisiswhatanimagelookslikewhenit'sconvertedtoHSVandsaved
                         asifitwasstillRGB
Thecode
<?php
use OpenCVImage as Image;
use OpenCVHistogram as Histogram;

echo "Loading samplen";
$i = Image::load("elephpant_sample.jpg",
   Image::LOAD_IMAGE_COLOR);
$hsv = $i->convertColor(Image::RGB2HSV);
$planes = $hsv->split();
$hist = new Histogram(1, 32,
   Histogram::TYPE_ARRAY);
$hist ->calc($planes[0]);

echo "Loading main imagen";
$i2 = Image::load("dragonbe_elephpants.jpg",
   Image::LOAD_IMAGE_COLOR);
$hsv2 = $i2->convertColor(Image::RGB2HSV);
$planes2 = $hsv2->split();
$result = $planes2[0]->backProject($hist);
$result ->save("bp_output.jpg");
Theresult
Theresult



Asyoucansee,theresultisabinaryimage
 showingtheplaceswherethehistogram
     matchedthecoloursintheimage
Theresult




Youcouldprobablygetabettermatchwitha
               bettersample
Theresult



Youcanthengoonanddootherthingswiththe
  morphologyoperators,tofindtheextentsof
                 eachmatch
Theresult




Oryoucanusethatimageasamaskforother
                 operations
Otherusesforhistograms



 Incombinationwiththeedgedetectionstuff
fromearlier,youcanmakeahistogramofthe
                edgegradients
Otherusesforhistograms



Thismeansthatyoucanthentryandmatch
    particularshapesusingahistogram


   Thisisusedbysomeforgesturerecognition
Machinelearning



Inadditiontotheimageprocessingfunctions,
   OpenCVincludessomemachinelearning
                   capability
Making php see, confoo 2011
Machinelearning




Thealgorithmsaregeneral,andnotreally
       specifictocomputervision
Machinelearning




 Generally,thealgorithmsaretrainedusinga
largedataset,andthentestedagainstanother
Machinelearning


Therearetwomainwaysofimplementingthis

    ●
        Supervisedlearning,inwhichtheinputdatais
                          “labelled”
●
    Unsupervisedlearning,wherethedatahasnolabels
Supervisedlearning



  Inthismethod,thealgorithmknowsthatthe
featureitisbeingtrainedoniseitherpresentor
                    notpresent
Supervisedlearning



Itcanthenlearnthatcertaincharacteristicsare
  distinctiveamongthosewherethefeatureis
                     present
Supervisedlearning



 Forexample,youcanhaveadatasetof10,000
images,inwhich8,000containfacesand2,000
                    donot
Unsupervisedlearning


Thesealgorithmsarereferredtoasclustering
                algorithms


 Theyareusedtomatchupsimilarimages,
   withoutknowledgeofwhatiswithin
Training



OpenCVcomeswithtoolsfortrainingthe
    variousalgorithmsitsupplies


      I'mnotgoingtoexplainthemhere
Haarclassifier




Thisisafairlyspecializedimplementationofa
                learningalgorithm
Haarclassifier



Itisusedtodetect“mostlyrigid”objects


                 Likefaces!
Haarclassifier




OpenCVcomeswithapre­trainedHaarclassifier
 capableofrecognisingfaceswithinanimage
Haarclassifier
<?php
use OpenCVImage as Image;
use OpenCVHistogram as Histogram;

$i = Image::load("sailing.jpg",
  Image::LOAD_IMAGE_COLOR);

$result = $i->haarDetectObjects("
  haarcascade_frontalface_default.xml");
foreach ($result as $r) {
  $i->rectangle($r['x'], $r['y'],
     $r['width'], $r['height']);
}
$i ->save("sailing_detected.jpg");
Theinputimage
Theresult
Otherfeatures



   Thereareotherinterestingfeaturesofthe
librarythatI'venotimplementedyet,butthey
                willbetheresoon
Inpainting

     Repairingdamagetoimages–forexample
                  ●
                      strippingwatermarks
 ●
      fillingintextureaftertheimagehasbeenrotated


Todothisproperly,youhavetocreateamask,
 andI'venotworkedoutareasonableAPIfor
                      that
Contourdetection


OpenCVcanuseitsedgedetectionalgorithmsto
        findthecontoursofanimage


     Thesearestoredinasequence,whichcanbe
                     iteratedover
Imagecapture



OpenCVcangrabimagesfromacamera


   Iwillnowattempttodemothis...
Thanksforlistening
   Pleaseratemytalk!
   http://joind.in/2830


      Getintouch
     mgdm@php.net
    http://mgdm.net
        @mgdm

More Related Content

Similar to Making php see, confoo 2011 (20)

Report face recognition : ArganRecogn
Report face recognition :  ArganRecognReport face recognition :  ArganRecogn
Report face recognition : ArganRecogn
Ilyas CHAOUA
PyGrunn 2019: DEMQ - the face recognition project
PyGrunn 2019: DEMQ - the face recognition projectPyGrunn 2019: DEMQ - the face recognition project
PyGrunn 2019: DEMQ - the face recognition project
Artur Barseghyan
Image Stitching for Panorama View
Image Stitching for Panorama ViewImage Stitching for Panorama View
Image Stitching for Panorama View
Nimai Chand Das Adhikari
War of the Machines: PVS-Studio vs. TensorFlow
War of the Machines: PVS-Studio vs. TensorFlowWar of the Machines: PVS-Studio vs. TensorFlow
War of the Machines: PVS-Studio vs. TensorFlow
PVS-Studio
A local metric for defocus blur detection cnn feature learning screenshots
A local metric for defocus blur detection   cnn feature learning screenshotsA local metric for defocus blur detection   cnn feature learning screenshots
A local metric for defocus blur detection cnn feature learning screenshots
Venkat Projects
Graphics on the Go
Graphics on the GoGraphics on the Go
Graphics on the Go
Gil Irizarry
EuRuKo JRuby Talk 2008
EuRuKo JRuby Talk 2008EuRuKo JRuby Talk 2008
EuRuKo JRuby Talk 2008
geraldbauer
Visibility Optimization for Games
Visibility Optimization for GamesVisibility Optimization for Games
Visibility Optimization for Games
Umbra
Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1
Max De Marzi
N1802038292
N1802038292N1802038292
N1802038292
IOSR Journals
Apache MXNet ODSC West 2018
Apache MXNet ODSC West 2018Apache MXNet ODSC West 2018
Apache MXNet ODSC West 2018
Apache MXNet
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres..."The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
Edge AI and Vision Alliance
16 OpenCV Functions to Start your Computer Vision journey.docx
16 OpenCV Functions to Start your Computer Vision journey.docx16 OpenCV Functions to Start your Computer Vision journey.docx
16 OpenCV Functions to Start your Computer Vision journey.docx
ssuser90e017
Introduction to OpenCV
Introduction to OpenCVIntroduction to OpenCV
Introduction to OpenCV
Amit Mandelbaum
Convolutional Neural Networks for Computer vision Applications
Convolutional Neural Networks for Computer vision ApplicationsConvolutional Neural Networks for Computer vision Applications
Convolutional Neural Networks for Computer vision Applications
Alex Conway
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
StampedeCon
Keras on tensorflow in R & Python
Keras on tensorflow in R & PythonKeras on tensorflow in R & Python
Keras on tensorflow in R & Python
Longhow Lam
Image filters
Image filtersImage filters
Image filters
inplacesapp
OpenCV @ Droidcon 2012
OpenCV @ Droidcon 2012OpenCV @ Droidcon 2012
OpenCV @ Droidcon 2012
Wingston
november29.ppt
november29.pptnovember29.ppt
november29.ppt
CharlesMatu2
Report face recognition : ArganRecogn
Report face recognition :  ArganRecognReport face recognition :  ArganRecogn
Report face recognition : ArganRecogn
Ilyas CHAOUA
PyGrunn 2019: DEMQ - the face recognition project
PyGrunn 2019: DEMQ - the face recognition projectPyGrunn 2019: DEMQ - the face recognition project
PyGrunn 2019: DEMQ - the face recognition project
Artur Barseghyan
War of the Machines: PVS-Studio vs. TensorFlow
War of the Machines: PVS-Studio vs. TensorFlowWar of the Machines: PVS-Studio vs. TensorFlow
War of the Machines: PVS-Studio vs. TensorFlow
PVS-Studio
A local metric for defocus blur detection cnn feature learning screenshots
A local metric for defocus blur detection   cnn feature learning screenshotsA local metric for defocus blur detection   cnn feature learning screenshots
A local metric for defocus blur detection cnn feature learning screenshots
Venkat Projects
EuRuKo JRuby Talk 2008
EuRuKo JRuby Talk 2008EuRuKo JRuby Talk 2008
EuRuKo JRuby Talk 2008
geraldbauer
Visibility Optimization for Games
Visibility Optimization for GamesVisibility Optimization for Games
Visibility Optimization for Games
Umbra
Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1Neo4j Stored Procedure Training Part 1
Neo4j Stored Procedure Training Part 1
Max De Marzi
Apache MXNet ODSC West 2018
Apache MXNet ODSC West 2018Apache MXNet ODSC West 2018
Apache MXNet ODSC West 2018
Apache MXNet
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres..."The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
"The OpenCV Open Source Computer Vision Library: Latest Developments," a Pres...
Edge AI and Vision Alliance
16 OpenCV Functions to Start your Computer Vision journey.docx
16 OpenCV Functions to Start your Computer Vision journey.docx16 OpenCV Functions to Start your Computer Vision journey.docx
16 OpenCV Functions to Start your Computer Vision journey.docx
ssuser90e017
Convolutional Neural Networks for Computer vision Applications
Convolutional Neural Networks for Computer vision ApplicationsConvolutional Neural Networks for Computer vision Applications
Convolutional Neural Networks for Computer vision Applications
Alex Conway
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
The Search for a New Visual Search Beyond Language - StampedeCon AI Summit 2017
StampedeCon
Keras on tensorflow in R & Python
Keras on tensorflow in R & PythonKeras on tensorflow in R & Python
Keras on tensorflow in R & Python
Longhow Lam
OpenCV @ Droidcon 2012
OpenCV @ Droidcon 2012OpenCV @ Droidcon 2012
OpenCV @ Droidcon 2012
Wingston

More from Bachkoutou Toutou (12)

hacking your website with vega, confoo2011
hacking your website with vega, confoo2011hacking your website with vega, confoo2011
hacking your website with vega, confoo2011
Bachkoutou Toutou
Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011
Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011
Bachkoutou Toutou
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Bachkoutou Toutou
Zend Framework 2, What's new, Confoo 2011
Zend Framework 2, What's new, Confoo 2011Zend Framework 2, What's new, Confoo 2011
Zend Framework 2, What's new, Confoo 2011
Bachkoutou Toutou
Connecting web Applications with Desktop, confoo 2011
Connecting web Applications with Desktop, confoo 2011Connecting web Applications with Desktop, confoo 2011
Connecting web Applications with Desktop, confoo 2011
Bachkoutou Toutou
99 problems but the search aint one, confoo 2011, andrei zmievski
99 problems but the search aint one, confoo 2011, andrei zmievski99 problems but the search aint one, confoo 2011, andrei zmievski
99 problems but the search aint one, confoo 2011, andrei zmievski
Bachkoutou Toutou
Php Inside - confoo 2011 - Derick Rethans
Php Inside -  confoo 2011 - Derick RethansPhp Inside -  confoo 2011 - Derick Rethans
Php Inside - confoo 2011 - Derick Rethans
Bachkoutou Toutou
WebShell - confoo 2011 - sean coates
WebShell - confoo 2011 - sean coatesWebShell - confoo 2011 - sean coates
WebShell - confoo 2011 - sean coates
Bachkoutou Toutou
Stress Free Deployment - Confoo 2011
Stress Free Deployment  - Confoo 2011Stress Free Deployment  - Confoo 2011
Stress Free Deployment - Confoo 2011
Bachkoutou Toutou
Apc Memcached Confoo 2011
Apc Memcached Confoo 2011Apc Memcached Confoo 2011
Apc Memcached Confoo 2011
Bachkoutou Toutou
Xdebug confoo11
Xdebug confoo11Xdebug confoo11
Xdebug confoo11
Bachkoutou Toutou
Confoo 2011 - Advanced OO Patterns
Confoo 2011 - Advanced OO PatternsConfoo 2011 - Advanced OO Patterns
Confoo 2011 - Advanced OO Patterns
Bachkoutou Toutou
hacking your website with vega, confoo2011
hacking your website with vega, confoo2011hacking your website with vega, confoo2011
hacking your website with vega, confoo2011
Bachkoutou Toutou
Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011
Premiers pas dans les extensions PHP, Pierrick Charron, Confoo 2011
Bachkoutou Toutou
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Kill bottlenecks with gearman, sphinx, and memcached, Confoo 2011
Bachkoutou Toutou
Zend Framework 2, What's new, Confoo 2011
Zend Framework 2, What's new, Confoo 2011Zend Framework 2, What's new, Confoo 2011
Zend Framework 2, What's new, Confoo 2011
Bachkoutou Toutou
Connecting web Applications with Desktop, confoo 2011
Connecting web Applications with Desktop, confoo 2011Connecting web Applications with Desktop, confoo 2011
Connecting web Applications with Desktop, confoo 2011
Bachkoutou Toutou
99 problems but the search aint one, confoo 2011, andrei zmievski
99 problems but the search aint one, confoo 2011, andrei zmievski99 problems but the search aint one, confoo 2011, andrei zmievski
99 problems but the search aint one, confoo 2011, andrei zmievski
Bachkoutou Toutou
Php Inside - confoo 2011 - Derick Rethans
Php Inside -  confoo 2011 - Derick RethansPhp Inside -  confoo 2011 - Derick Rethans
Php Inside - confoo 2011 - Derick Rethans
Bachkoutou Toutou
WebShell - confoo 2011 - sean coates
WebShell - confoo 2011 - sean coatesWebShell - confoo 2011 - sean coates
WebShell - confoo 2011 - sean coates
Bachkoutou Toutou
Stress Free Deployment - Confoo 2011
Stress Free Deployment  - Confoo 2011Stress Free Deployment  - Confoo 2011
Stress Free Deployment - Confoo 2011
Bachkoutou Toutou
Confoo 2011 - Advanced OO Patterns
Confoo 2011 - Advanced OO PatternsConfoo 2011 - Advanced OO Patterns
Confoo 2011 - Advanced OO Patterns
Bachkoutou Toutou

Making php see, confoo 2011