SlideShare uma empresa Scribd logo
1 de 27
Baixar para ler offline
Foreground Detection via Robust Low Rank Matrix
          Decomposition including spatio-temporal Constraint

                          C. Guyon, T. Bouwmans and E. Zahzah

       MIA Laboratory (Mathematics Images & Applications), University of La Rochelle, France
                                             —
                                Workshop BMC, Daejong Korea


                                           November 5, 2012




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         1 Roche
Summary



  1   Introduction and motivations on IRLS

  2   Temporal constraint with an adapted Norm

  3   Diagram flow and Spatial constraint

  4   Experimental Results

  5   Conclusion




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         2 Roche
Introduction and motivations
   Purpose
          Foreground detection : Segmentation of moving objects in video
          sequence acquired by a fixed camera.
          Background modeling : Modelization of all that is not moving
          object.

   Involved applications
          Surveillance camera
          Motion capture

   On the importance
          Crucial Task : Often the first step of a full video surveillance system.

   Strategy used
          Eigenbackground decomposition.
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         3 Roche
Eigenbackgrounds
          Find an « ideal » subspace of the video sequence, which describes the best
          as possible the (dynamic) background.




   Fig.1 The common process of background subtraction via PCA (Principal Component
   Analysis). At final step, an adaptative threshold is used to get a binary image.

   Without a robust framework, the moving object may be absorbed in the model !
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         4 Roche
Data Structure Transformation
   First, we consider a video sequence as a matrix A ∈ Rn×m




          n is the amount of pixels in a frame (∼ 106 )
          m is the number of frames considered (∼ 200)
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         5 Roche
IRLS : Vector version (1)

   The usual IRLS (Iteratively reweighted least squares) scheme for solve
   argmin ||Ax − b||α is given by
       x

                                 D (i) = diag((ε + |b − Ax (i) |)α−2 )
                                                                                                        (1)
                                 x (i+1) = (At D (i) A)−1 At D (i) b

   that a suitable IRLS method is convergent for 1 ≤ α < 3
   Other formulation,

                                    r (i) = b − Ax (i)
                                    D = diag((ε + |r (i) |)α−2 )
                                                                                                        (2)
                                    y (i) = (A DA)−1 A Dr (i)
                                    x (i+1) = x (i) + (1 + λopt )y (i)
   λopt computed in a second inner loop and convergent for 1 ≤ α < +∞

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         6 Roche
IRLS : Vector version (2)


   For Spatio/temporal RPCA, needs to solve the following general problem :

                               argmin ||Ax − b||α + λ||Cx − d ||β                                       (3)
                                   x

   By derivation, the associated IRLS scheme is,
                     r1 = b − Ax (i ) , r2 = d − Cx (i ) , e1 = ε + |r1 |, e2 = ε + |r2 |
                                    α 1                                β 1 −1         β−2
                     D1 = ( e1 ) α −1 diag(e1 ), D2 = λ( e2 ) β diag(e2 )
                                                  α−2
                       (i )                         −1
                                                                                                         (4)
                     y = (A D1 A + C D2 C ) (A D1 r1 + C D2 r2 )
                     x (i +1) = x (i ) + (1 + λopt )y (i )



   Good news : Just few line of matlab code !



C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         7 Roche
Matrix Version

   More generally, we consider the following matrix regression problem with
   two parameters norm (α, β) and a weighted matrix (W ),
                                                                    n       m
                                                                                              α   1
       min ||AX − B||α,β              with ||Mij ||α,β = (              (       Wij |Mij |β ) β ) α     (5)
        X                      W                         W
                                                                  i=1 j=1

  The problem is solved in the same manner on matrices with a reweighted
  regression strategy,
                     Until X   is stable, repeat on each k-columns
                       R       ← B − AX
                        S      ← ε + |R|                                                                 (6)
                                                                 α −1
                                             β−2         β
                       Dk      ← diag(Sik ◦ ( j (Sij ◦ Wij )) β ◦ Wik )k
                       Xik     ← Xik +(1+Λ(max(α, β)))(At Dk A)−1 At Dk Rik




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         8 Roche
Exemple : Geometric median (convex problem)




   Fig.1 Find the x-axis points which minimize the ||.||α distance between the 7 others
   points (black stars). Minimum of Curves is corresponding to this optimal value for α =
   2, 1.66, 1.33 and 1 (blue, green, red, black).




   Fig.1 Same in Two Dimension. By continuously changing the minization problem (i.e.
   varying α) during each iterations, this trick accelerates the convergence of IRLS.

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), University of La / 27
                                                                                 November 5, 2012         9 Roche
Various RPCA formulation (only for α = 1)
          PCA with fixed rank is :               min         ||S||F
                                                   L,S
                                                s.t.        Rank(L) = k                                  (7)
                                                            A=L+S
          R(obust)PCA is (Non convex and NP-hard ) :
                                             min         ||σ(L)||0 + λ||S||0
                                             L,S                                                         (8)
                                             s.t.        A=L+S
          Convex relaxed problem of (2) is RPCA-PCP proposed by Candès et al. [1] :
                                             min         ||σ(L)||1 + λ||S||1
                                             L,S                                                         (9)
                                             s.t.        A=L+S
          Where σ(L) means singular values of L.
          A mix is Stable PCP of Zhou et al. [2] (both entry-wise and sparse noise) :
                                            min          ||σ(L)||1 + λ||S||1
                                             L,S                                                        (10)
                                            s.t.         ||A − L − S||F < δ

          All of them could be solved by Augmented Lagrangian Multipliers (ALM).
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 10 / 27
                                                                                                       La Roche
Video examples




   Some examples, temporal RPCA and ideal RPCA with groundtruth fitting
   and optimal parameters fitting.




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 11 / 27
                                                                                                       La Roche
Summary



  1   Introduction and motivations on IRLS

  2   Temporal constraint with an adapted Norm

  3   Diagram flow and Spatial constraint

  4   Experimental Results

  5   Conclusion




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 12 / 27
                                                                                                       La Roche
Sparse solution
   In RPCA, residual error is sparse.
   Using the RPCA decomposition on a synthetic low-rank random matrix
   plus noise, the error looks like :




   Same principle with video. Sparse noise (or outliers) are the moving objects.
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 13 / 27
                                                                                                       La Roche
Let’s play with norms




   Varying the α, β norm → Different kind of recovering pattern error.

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 14 / 27
                                                                                                       La Roche
Let’s play with norms...(2)




   Some issues
          What is the best specific norm for temporal constrain ?
          Initial assumption is ||.||2,1 . Confirmed experimentally ?




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 15 / 27
                                                                                                       La Roche
Validation
   If ideal eigenbakgrounds are that, best norm must be ...




   Let’s denote Lopt , the ideal low-rank subspace which outliers do not contribute to PCA
C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 16 / 27
                                                                                                       La Roche
Experimental results

                                                         Let’s denote Lα,β , the low-rank
                                                         recovered matrix with a ||.||α,β -PCA.
                                                         The plot show the error between
                                                         ||Lopt − Lα,β ||F for parameters α
                                                         and β chosen freely. The darkest
                                                         value means that the error is the
                                                         smallest here.


          ||S||2,1 is not optimal, but for convenience we use it.
          The benefit of the ad hoc block-sparse hypothesis is confirmed by
          testing its efficiency directly on video dataset.

        Experimentation done on dynamic category of dataset change detection
               workshop 2012 : http://www.changedetection.net/

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 17 / 27
                                                                                                       La Roche
Summary



  1   Introduction and motivations on IRLS

  2   Temporal constraint with an adapted Norm

  3   Diagram flow and Spatial constraint

  4   Experimental Results

  5   Conclusion




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 18 / 27
                                                                                                       La Roche
Overview and addition of the spatial constraint




   Figure: Overview of the learning and evaluation process. Learning process needs
   GT (Groundtruth) for better fits the eigenbackground components.


   Spatial Constrain
          Suppose A = L + S and L and S are computed via some kind of
          RPCA technique with the addtion of Total Variation penalty on S.
          This increase connected (or connexe) shapes.

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 19 / 27
                                                                                                       La Roche
Exemple with a synthetic 1-D signal




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 20 / 27
                                                                                                       La Roche
Summary



  1   Introduction and motivations on IRLS

  2   Temporal constraint with an adapted Norm

  3   Diagram flow and Spatial constraint

  4   Experimental Results

  5   Conclusion




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 21 / 27
                                                                                                       La Roche
Experimental Protocol


          Optimal threshold is chosen for maximizing F-measure criterion
          which is based 2 × 2 histogram of True/false/positive/negative :

                               TP                           TP                     2 DR Prec
                    DR =             ,         Prec =              ,        F =
                             TP + FN                      TP + F P                 DR + Prec


          Good performance is then obtained when the F-measure is closed to 1
          Time consumption is not take into account in the evaluation process.

          RPCA-LBD is compared with the following two Robust methods :
                Robust Subspace Learning (RSL) De La Torre et al. [4]
                Principal Component Pursuit (RPCA-PCP) [1]



C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 22 / 27
                                                                                                       La Roche
Quantitative Results

   Here, we show experimental results on the real dataset of BMC,


     Video        Recall       Precision        F-measure          PSNR              Visual Results
       1          0.9139        0.7170            0.8036           38.2425
       2          0.8785        0.8656            0.8720           26.7721
       3          0.9658        0.8120            0.8822           37.7053
       4          0.9550        0.7187            0.8202           39.3699
       5          0.9102        0.5589            0.6925           30.5876
       6          0.9002        0.7727            0.8316           29.9994
       7          0.9116        0.8401            0.8744           26.8350
       8          0.8651        0.6710            0.7558           30.5040
       9          0.9309        0.8239            0.8741           55.1163

   Table: Quantitative results with common criterions. Last column show the
   original, GT and result of the first four real video sequences.


C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 23 / 27
                                                                                                       La Roche
Other results




   Figure: First eigenBackground of the fifths sequence of Rotary (BMC) with the
   norms ||.||opt , ||.||1,1 and ||.||2,1 . Last row shows the first five eigenBackground on
   real dataset with ||.||2,1

C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 24 / 27
                                                                                                       La Roche
Summary



  1   Introduction and motivations on IRLS

  2   Temporal constraint with an adapted Norm

  3   Diagram flow and Spatial constraint

  4   Experimental Results

  5   Conclusion




C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 25 / 27
                                                                                                       La Roche
Qualitative analysis


   Advantages
          Experiments on video surveillance datasets show that this approach is
          more robust than RSL and RPCA-PCP in presence of dynamic
          backgrounds and illumination changes.
          Well suited for video with spatially spread and temporarily sparse
          outliers.

   Disadvantages
          Not efficient on sequences with outliers always presents.
          For small local variations, like « wind tree » are not (yet) well
          modelized by this kind global PCA. Probably needs more eigen
          components !


C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 26 / 27
                                                                                                       La Roche
Future Works & References


   Future Works
          Lack in computation time : Further research consists in developping an
          incremental version to update the model at every frame and to achieve
          the real-time requirements.

   References
    [1] E. Candes, X. Li, Y. Ma, and J. Wright, Robust principal component
        analysis, International Journal of ACM, vol. 58, no. 3, May 2011.
    [2] Z. Zhou, X. Li, J. Wright, E. Candes, and Y. Ma, Stable principal
        component pursuit,IEEE ISIT Proceedings, pp. 1518-1522, Jun. 2010.
    [3] G. Tang and A. Nehorai, Robust principal component analysis based
        on low-rank and block-sparse matrix decomposition, CISS 2011, 2011.


C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati
                                      (MIA Laboratory (Mathematics Images & Applications), 5, 2012
                                                                               November University of 27 / 27
                                                                                                       La Roche

Mais conteúdo relacionado

Mais procurados

Continuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGDContinuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGDValentin De Bortoli
 
Collision Detection In 3D Environments
Collision Detection In 3D EnvironmentsCollision Detection In 3D Environments
Collision Detection In 3D EnvironmentsUng-Su Lee
 
Robust Image Denoising in RKHS via Orthogonal Matching Pursuit
Robust Image Denoising in RKHS via Orthogonal Matching PursuitRobust Image Denoising in RKHS via Orthogonal Matching Pursuit
Robust Image Denoising in RKHS via Orthogonal Matching PursuitPantelis Bouboulis
 
Matrix Computations in Machine Learning
Matrix Computations in Machine LearningMatrix Computations in Machine Learning
Matrix Computations in Machine Learningbutest
 
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slides
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slidesCVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slides
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slideszukun
 
Metric learning ICML2010 tutorial
Metric learning  ICML2010 tutorialMetric learning  ICML2010 tutorial
Metric learning ICML2010 tutorialzukun
 
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...Yusuf Bhujwalla
 
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)Joo-Haeng Lee
 
Estimating Human Pose from Occluded Images (ACCV 2009)
Estimating Human Pose from Occluded Images (ACCV 2009)Estimating Human Pose from Occluded Images (ACCV 2009)
Estimating Human Pose from Occluded Images (ACCV 2009)Jia-Bin Huang
 
Image Restitution Using Non-Locally Centralized Sparse Representation Model
Image Restitution Using Non-Locally Centralized Sparse Representation ModelImage Restitution Using Non-Locally Centralized Sparse Representation Model
Image Restitution Using Non-Locally Centralized Sparse Representation ModelIJERA Editor
 
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...Corey Clark, Ph.D.
 
Elementary Landscape Decomposition of Combinatorial Optimization Problems
Elementary Landscape Decomposition of Combinatorial Optimization ProblemsElementary Landscape Decomposition of Combinatorial Optimization Problems
Elementary Landscape Decomposition of Combinatorial Optimization Problemsjfrchicanog
 
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)Jia-Bin Huang
 
01 graphical models
01 graphical models01 graphical models
01 graphical modelszukun
 
A Novel Methodology for Designing Linear Phase IIR Filters
A Novel Methodology for Designing Linear Phase IIR FiltersA Novel Methodology for Designing Linear Phase IIR Filters
A Novel Methodology for Designing Linear Phase IIR FiltersIDES Editor
 
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...zukun
 
Kernelization algorithms for graph and other structure modification problems
Kernelization algorithms for graph and other structure modification problemsKernelization algorithms for graph and other structure modification problems
Kernelization algorithms for graph and other structure modification problemsAnthony Perez
 
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...zukun
 

Mais procurados (20)

Continuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGDContinuous and Discrete-Time Analysis of SGD
Continuous and Discrete-Time Analysis of SGD
 
Collision Detection In 3D Environments
Collision Detection In 3D EnvironmentsCollision Detection In 3D Environments
Collision Detection In 3D Environments
 
CSMR11b.ppt
CSMR11b.pptCSMR11b.ppt
CSMR11b.ppt
 
Robust Image Denoising in RKHS via Orthogonal Matching Pursuit
Robust Image Denoising in RKHS via Orthogonal Matching PursuitRobust Image Denoising in RKHS via Orthogonal Matching Pursuit
Robust Image Denoising in RKHS via Orthogonal Matching Pursuit
 
Matrix Computations in Machine Learning
Matrix Computations in Machine LearningMatrix Computations in Machine Learning
Matrix Computations in Machine Learning
 
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slides
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slidesCVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slides
CVPR2010: Advanced ITinCVPR in a Nutshell: part 4: additional slides
 
Metric learning ICML2010 tutorial
Metric learning  ICML2010 tutorialMetric learning  ICML2010 tutorial
Metric learning ICML2010 tutorial
 
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...
The Impact of Smoothness on Model Class Selection in Nonlinear System Identif...
 
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)
Note on Coupled Line Cameras for Rectangle Reconstruction (ACDDE 2012)
 
Estimating Human Pose from Occluded Images (ACCV 2009)
Estimating Human Pose from Occluded Images (ACCV 2009)Estimating Human Pose from Occluded Images (ACCV 2009)
Estimating Human Pose from Occluded Images (ACCV 2009)
 
Image Restitution Using Non-Locally Centralized Sparse Representation Model
Image Restitution Using Non-Locally Centralized Sparse Representation ModelImage Restitution Using Non-Locally Centralized Sparse Representation Model
Image Restitution Using Non-Locally Centralized Sparse Representation Model
 
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...
Distributed Parallel Process Particle Swarm Optimization on Fixed Charge Netw...
 
Elementary Landscape Decomposition of Combinatorial Optimization Problems
Elementary Landscape Decomposition of Combinatorial Optimization ProblemsElementary Landscape Decomposition of Combinatorial Optimization Problems
Elementary Landscape Decomposition of Combinatorial Optimization Problems
 
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)
A Physical Approach to Moving Cast Shadow Detection (ICASSP 2009)
 
Presentation v3.2
Presentation v3.2Presentation v3.2
Presentation v3.2
 
01 graphical models
01 graphical models01 graphical models
01 graphical models
 
A Novel Methodology for Designing Linear Phase IIR Filters
A Novel Methodology for Designing Linear Phase IIR FiltersA Novel Methodology for Designing Linear Phase IIR Filters
A Novel Methodology for Designing Linear Phase IIR Filters
 
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...
cvpr2009 tutorial: kernel methods in computer vision: part II: Statistics and...
 
Kernelization algorithms for graph and other structure modification problems
Kernelization algorithms for graph and other structure modification problemsKernelization algorithms for graph and other structure modification problems
Kernelization algorithms for graph and other structure modification problems
 
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...
CVPR2010: Advanced ITinCVPR in a Nutshell: part 5: Shape, Matching and Diverg...
 

Destaque

(Paper Presentation) ZIGZAG: An Efficient Peer-to-Peer Scheme for Media Strea...
(Paper Presentation)ZIGZAG: An Efficient Peer-to-Peer Scheme forMedia Strea...(Paper Presentation)ZIGZAG: An Efficient Peer-to-Peer Scheme forMedia Strea...
(Paper Presentation) ZIGZAG: An Efficient Peer-to-Peer Scheme for Media Strea...Rajesh Piryani
 
CSTalks - Named Data Networks - 9 Feb
CSTalks - Named Data Networks - 9 FebCSTalks - Named Data Networks - 9 Feb
CSTalks - Named Data Networks - 9 Febcstalks
 
CSTalks - Model Checking - 26 Jan
CSTalks - Model Checking - 26 JanCSTalks - Model Checking - 26 Jan
CSTalks - Model Checking - 26 Jancstalks
 
CSTalks-Natural Language Processing-17Aug
CSTalks-Natural Language Processing-17AugCSTalks-Natural Language Processing-17Aug
CSTalks-Natural Language Processing-17Augcstalks
 
CSTalks-Natural Language Processing-2 Nov
CSTalks-Natural Language Processing-2 NovCSTalks-Natural Language Processing-2 Nov
CSTalks-Natural Language Processing-2 Novcstalks
 
CSTalks - Peer-to-peer - 16 Feb
CSTalks - Peer-to-peer - 16 FebCSTalks - Peer-to-peer - 16 Feb
CSTalks - Peer-to-peer - 16 Febcstalks
 
Presentation Habilitation à Diriger des Recherches
Presentation Habilitation à Diriger des RecherchesPresentation Habilitation à Diriger des Recherches
Presentation Habilitation à Diriger des RecherchesBOUWMANS Thierry
 
CSTalks - GPGPU - 19 Jan
CSTalks  -  GPGPU - 19 JanCSTalks  -  GPGPU - 19 Jan
CSTalks - GPGPU - 19 Jancstalks
 

Destaque (9)

Hdr merlo v4
Hdr merlo v4Hdr merlo v4
Hdr merlo v4
 
(Paper Presentation) ZIGZAG: An Efficient Peer-to-Peer Scheme for Media Strea...
(Paper Presentation)ZIGZAG: An Efficient Peer-to-Peer Scheme forMedia Strea...(Paper Presentation)ZIGZAG: An Efficient Peer-to-Peer Scheme forMedia Strea...
(Paper Presentation) ZIGZAG: An Efficient Peer-to-Peer Scheme for Media Strea...
 
CSTalks - Named Data Networks - 9 Feb
CSTalks - Named Data Networks - 9 FebCSTalks - Named Data Networks - 9 Feb
CSTalks - Named Data Networks - 9 Feb
 
CSTalks - Model Checking - 26 Jan
CSTalks - Model Checking - 26 JanCSTalks - Model Checking - 26 Jan
CSTalks - Model Checking - 26 Jan
 
CSTalks-Natural Language Processing-17Aug
CSTalks-Natural Language Processing-17AugCSTalks-Natural Language Processing-17Aug
CSTalks-Natural Language Processing-17Aug
 
CSTalks-Natural Language Processing-2 Nov
CSTalks-Natural Language Processing-2 NovCSTalks-Natural Language Processing-2 Nov
CSTalks-Natural Language Processing-2 Nov
 
CSTalks - Peer-to-peer - 16 Feb
CSTalks - Peer-to-peer - 16 FebCSTalks - Peer-to-peer - 16 Feb
CSTalks - Peer-to-peer - 16 Feb
 
Presentation Habilitation à Diriger des Recherches
Presentation Habilitation à Diriger des RecherchesPresentation Habilitation à Diriger des Recherches
Presentation Habilitation à Diriger des Recherches
 
CSTalks - GPGPU - 19 Jan
CSTalks  -  GPGPU - 19 JanCSTalks  -  GPGPU - 19 Jan
CSTalks - GPGPU - 19 Jan
 

Semelhante a BMC 2012

Topological Inference via Meshing
Topological Inference via MeshingTopological Inference via Meshing
Topological Inference via MeshingDon Sheehy
 
Maximum likelihood estimation of regularisation parameters in inverse problem...
Maximum likelihood estimation of regularisation parameters in inverse problem...Maximum likelihood estimation of regularisation parameters in inverse problem...
Maximum likelihood estimation of regularisation parameters in inverse problem...Valentin De Bortoli
 
Measures of risk on variability with application in stochastic activity networks
Measures of risk on variability with application in stochastic activity networksMeasures of risk on variability with application in stochastic activity networks
Measures of risk on variability with application in stochastic activity networksAlexander Decker
 
Cluster Analysis
Cluster AnalysisCluster Analysis
Cluster AnalysisSSA KPI
 
Iaetsd vlsi implementation of gabor filter based image edge detection
Iaetsd vlsi implementation of gabor filter based image edge detectionIaetsd vlsi implementation of gabor filter based image edge detection
Iaetsd vlsi implementation of gabor filter based image edge detectionIaetsd Iaetsd
 
Projection methods for stochastic structural dynamics
Projection methods for stochastic structural dynamicsProjection methods for stochastic structural dynamics
Projection methods for stochastic structural dynamicsUniversity of Glasgow
 
Digital image processing short quesstion answers
Digital image processing short quesstion answersDigital image processing short quesstion answers
Digital image processing short quesstion answersAteeq Zada
 
Logistic Regression(SGD)
Logistic Regression(SGD)Logistic Regression(SGD)
Logistic Regression(SGD)Prentice Xu
 
Sequential Extraction of Local ICA Structures
Sequential Extraction of Local ICA StructuresSequential Extraction of Local ICA Structures
Sequential Extraction of Local ICA Structurestopujahin
 
Principal component analysis and matrix factorizations for learning (part 2) ...
Principal component analysis and matrix factorizations for learning (part 2) ...Principal component analysis and matrix factorizations for learning (part 2) ...
Principal component analysis and matrix factorizations for learning (part 2) ...zukun
 
Subspace Indexing on Grassmannian Manifold for Large Scale Visual Identification
Subspace Indexing on Grassmannian Manifold for Large Scale Visual IdentificationSubspace Indexing on Grassmannian Manifold for Large Scale Visual Identification
Subspace Indexing on Grassmannian Manifold for Large Scale Visual IdentificationUnited States Air Force Academy
 
Fast Object Recognition from 3D Depth Data with Extreme Learning Machine
Fast Object Recognition from 3D Depth Data with Extreme Learning MachineFast Object Recognition from 3D Depth Data with Extreme Learning Machine
Fast Object Recognition from 3D Depth Data with Extreme Learning MachineSoma Boubou
 
Poster DDP (BNP 2011 Veracruz)
Poster DDP (BNP 2011 Veracruz)Poster DDP (BNP 2011 Veracruz)
Poster DDP (BNP 2011 Veracruz)Julyan Arbel
 

Semelhante a BMC 2012 (20)

ABC workshop: 17w5025
ABC workshop: 17w5025ABC workshop: 17w5025
ABC workshop: 17w5025
 
Topological Inference via Meshing
Topological Inference via MeshingTopological Inference via Meshing
Topological Inference via Meshing
 
YSC 2013
YSC 2013YSC 2013
YSC 2013
 
Maximum likelihood estimation of regularisation parameters in inverse problem...
Maximum likelihood estimation of regularisation parameters in inverse problem...Maximum likelihood estimation of regularisation parameters in inverse problem...
Maximum likelihood estimation of regularisation parameters in inverse problem...
 
Measures of risk on variability with application in stochastic activity networks
Measures of risk on variability with application in stochastic activity networksMeasures of risk on variability with application in stochastic activity networks
Measures of risk on variability with application in stochastic activity networks
 
Cluster Analysis
Cluster AnalysisCluster Analysis
Cluster Analysis
 
Iaetsd vlsi implementation of gabor filter based image edge detection
Iaetsd vlsi implementation of gabor filter based image edge detectionIaetsd vlsi implementation of gabor filter based image edge detection
Iaetsd vlsi implementation of gabor filter based image edge detection
 
Symmetrical2
Symmetrical2Symmetrical2
Symmetrical2
 
Projection methods for stochastic structural dynamics
Projection methods for stochastic structural dynamicsProjection methods for stochastic structural dynamics
Projection methods for stochastic structural dynamics
 
Digital image processing short quesstion answers
Digital image processing short quesstion answersDigital image processing short quesstion answers
Digital image processing short quesstion answers
 
Foreground Detection : Combining Background Subspace Learning with Object Smo...
Foreground Detection : Combining Background Subspace Learning with Object Smo...Foreground Detection : Combining Background Subspace Learning with Object Smo...
Foreground Detection : Combining Background Subspace Learning with Object Smo...
 
Logistic Regression(SGD)
Logistic Regression(SGD)Logistic Regression(SGD)
Logistic Regression(SGD)
 
cswiercz-general-presentation
cswiercz-general-presentationcswiercz-general-presentation
cswiercz-general-presentation
 
Sequential Extraction of Local ICA Structures
Sequential Extraction of Local ICA StructuresSequential Extraction of Local ICA Structures
Sequential Extraction of Local ICA Structures
 
Principal component analysis and matrix factorizations for learning (part 2) ...
Principal component analysis and matrix factorizations for learning (part 2) ...Principal component analysis and matrix factorizations for learning (part 2) ...
Principal component analysis and matrix factorizations for learning (part 2) ...
 
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof..."Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
"Let us talk about output features! by Florence d’Alché-Buc, LTCI & Full Prof...
 
Lec-3 DIP.pptx
Lec-3 DIP.pptxLec-3 DIP.pptx
Lec-3 DIP.pptx
 
Subspace Indexing on Grassmannian Manifold for Large Scale Visual Identification
Subspace Indexing on Grassmannian Manifold for Large Scale Visual IdentificationSubspace Indexing on Grassmannian Manifold for Large Scale Visual Identification
Subspace Indexing on Grassmannian Manifold for Large Scale Visual Identification
 
Fast Object Recognition from 3D Depth Data with Extreme Learning Machine
Fast Object Recognition from 3D Depth Data with Extreme Learning MachineFast Object Recognition from 3D Depth Data with Extreme Learning Machine
Fast Object Recognition from 3D Depth Data with Extreme Learning Machine
 
Poster DDP (BNP 2011 Veracruz)
Poster DDP (BNP 2011 Veracruz)Poster DDP (BNP 2011 Veracruz)
Poster DDP (BNP 2011 Veracruz)
 

Último

9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 DelhiCall Girls in Delhi
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesDipal Arora
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageMatteo Carbone
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...Any kyc Account
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Neil Kimberley
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfPaul Menig
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsMichael W. Hawkins
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...Aggregage
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...amitlee9823
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Lviv Startup Club
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaShree Krishna Exports
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒anilsa9823
 
Understanding the Pakistan Budgeting Process: Basics and Key Insights
Understanding the Pakistan Budgeting Process: Basics and Key InsightsUnderstanding the Pakistan Budgeting Process: Basics and Key Insights
Understanding the Pakistan Budgeting Process: Basics and Key Insightsseri bangash
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
 
Event mailer assignment progress report .pdf
Event mailer assignment progress report .pdfEvent mailer assignment progress report .pdf
Event mailer assignment progress report .pdftbatkhuu1
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communicationskarancommunications
 

Último (20)

9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
Grateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdfGrateful 7 speech thanking everyone that has helped.pdf
Grateful 7 speech thanking everyone that has helped.pdf
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael Hawkins
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Bang...
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in India
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒VIP Call Girls In Saharaganj ( Lucknow  ) 🔝 8923113531 🔝  Cash Payment (COD) 👒
VIP Call Girls In Saharaganj ( Lucknow ) 🔝 8923113531 🔝 Cash Payment (COD) 👒
 
Understanding the Pakistan Budgeting Process: Basics and Key Insights
Understanding the Pakistan Budgeting Process: Basics and Key InsightsUnderstanding the Pakistan Budgeting Process: Basics and Key Insights
Understanding the Pakistan Budgeting Process: Basics and Key Insights
 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
 
Event mailer assignment progress report .pdf
Event mailer assignment progress report .pdfEvent mailer assignment progress report .pdf
Event mailer assignment progress report .pdf
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communications
 

BMC 2012

  • 1. Foreground Detection via Robust Low Rank Matrix Decomposition including spatio-temporal Constraint C. Guyon, T. Bouwmans and E. Zahzah MIA Laboratory (Mathematics Images & Applications), University of La Rochelle, France — Workshop BMC, Daejong Korea November 5, 2012 C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 1 Roche
  • 2. Summary 1 Introduction and motivations on IRLS 2 Temporal constraint with an adapted Norm 3 Diagram flow and Spatial constraint 4 Experimental Results 5 Conclusion C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 2 Roche
  • 3. Introduction and motivations Purpose Foreground detection : Segmentation of moving objects in video sequence acquired by a fixed camera. Background modeling : Modelization of all that is not moving object. Involved applications Surveillance camera Motion capture On the importance Crucial Task : Often the first step of a full video surveillance system. Strategy used Eigenbackground decomposition. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 3 Roche
  • 4. Eigenbackgrounds Find an « ideal » subspace of the video sequence, which describes the best as possible the (dynamic) background. Fig.1 The common process of background subtraction via PCA (Principal Component Analysis). At final step, an adaptative threshold is used to get a binary image. Without a robust framework, the moving object may be absorbed in the model ! C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 4 Roche
  • 5. Data Structure Transformation First, we consider a video sequence as a matrix A ∈ Rn×m n is the amount of pixels in a frame (∼ 106 ) m is the number of frames considered (∼ 200) C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 5 Roche
  • 6. IRLS : Vector version (1) The usual IRLS (Iteratively reweighted least squares) scheme for solve argmin ||Ax − b||α is given by x D (i) = diag((ε + |b − Ax (i) |)α−2 ) (1) x (i+1) = (At D (i) A)−1 At D (i) b that a suitable IRLS method is convergent for 1 ≤ α < 3 Other formulation, r (i) = b − Ax (i) D = diag((ε + |r (i) |)α−2 ) (2) y (i) = (A DA)−1 A Dr (i) x (i+1) = x (i) + (1 + λopt )y (i) λopt computed in a second inner loop and convergent for 1 ≤ α < +∞ C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 6 Roche
  • 7. IRLS : Vector version (2) For Spatio/temporal RPCA, needs to solve the following general problem : argmin ||Ax − b||α + λ||Cx − d ||β (3) x By derivation, the associated IRLS scheme is, r1 = b − Ax (i ) , r2 = d − Cx (i ) , e1 = ε + |r1 |, e2 = ε + |r2 | α 1 β 1 −1 β−2 D1 = ( e1 ) α −1 diag(e1 ), D2 = λ( e2 ) β diag(e2 ) α−2 (i ) −1 (4) y = (A D1 A + C D2 C ) (A D1 r1 + C D2 r2 ) x (i +1) = x (i ) + (1 + λopt )y (i ) Good news : Just few line of matlab code ! C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 7 Roche
  • 8. Matrix Version More generally, we consider the following matrix regression problem with two parameters norm (α, β) and a weighted matrix (W ), n m α 1 min ||AX − B||α,β with ||Mij ||α,β = ( ( Wij |Mij |β ) β ) α (5) X W W i=1 j=1 The problem is solved in the same manner on matrices with a reweighted regression strategy, Until X is stable, repeat on each k-columns R ← B − AX S ← ε + |R| (6) α −1 β−2 β Dk ← diag(Sik ◦ ( j (Sij ◦ Wij )) β ◦ Wik )k Xik ← Xik +(1+Λ(max(α, β)))(At Dk A)−1 At Dk Rik C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 8 Roche
  • 9. Exemple : Geometric median (convex problem) Fig.1 Find the x-axis points which minimize the ||.||α distance between the 7 others points (black stars). Minimum of Curves is corresponding to this optimal value for α = 2, 1.66, 1.33 and 1 (blue, green, red, black). Fig.1 Same in Two Dimension. By continuously changing the minization problem (i.e. varying α) during each iterations, this trick accelerates the convergence of IRLS. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), University of La / 27 November 5, 2012 9 Roche
  • 10. Various RPCA formulation (only for α = 1) PCA with fixed rank is : min ||S||F L,S s.t. Rank(L) = k (7) A=L+S R(obust)PCA is (Non convex and NP-hard ) : min ||σ(L)||0 + λ||S||0 L,S (8) s.t. A=L+S Convex relaxed problem of (2) is RPCA-PCP proposed by Candès et al. [1] : min ||σ(L)||1 + λ||S||1 L,S (9) s.t. A=L+S Where σ(L) means singular values of L. A mix is Stable PCP of Zhou et al. [2] (both entry-wise and sparse noise) : min ||σ(L)||1 + λ||S||1 L,S (10) s.t. ||A − L − S||F < δ All of them could be solved by Augmented Lagrangian Multipliers (ALM). C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 10 / 27 La Roche
  • 11. Video examples Some examples, temporal RPCA and ideal RPCA with groundtruth fitting and optimal parameters fitting. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 11 / 27 La Roche
  • 12. Summary 1 Introduction and motivations on IRLS 2 Temporal constraint with an adapted Norm 3 Diagram flow and Spatial constraint 4 Experimental Results 5 Conclusion C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 12 / 27 La Roche
  • 13. Sparse solution In RPCA, residual error is sparse. Using the RPCA decomposition on a synthetic low-rank random matrix plus noise, the error looks like : Same principle with video. Sparse noise (or outliers) are the moving objects. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 13 / 27 La Roche
  • 14. Let’s play with norms Varying the α, β norm → Different kind of recovering pattern error. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 14 / 27 La Roche
  • 15. Let’s play with norms...(2) Some issues What is the best specific norm for temporal constrain ? Initial assumption is ||.||2,1 . Confirmed experimentally ? C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 15 / 27 La Roche
  • 16. Validation If ideal eigenbakgrounds are that, best norm must be ... Let’s denote Lopt , the ideal low-rank subspace which outliers do not contribute to PCA C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 16 / 27 La Roche
  • 17. Experimental results Let’s denote Lα,β , the low-rank recovered matrix with a ||.||α,β -PCA. The plot show the error between ||Lopt − Lα,β ||F for parameters α and β chosen freely. The darkest value means that the error is the smallest here. ||S||2,1 is not optimal, but for convenience we use it. The benefit of the ad hoc block-sparse hypothesis is confirmed by testing its efficiency directly on video dataset. Experimentation done on dynamic category of dataset change detection workshop 2012 : http://www.changedetection.net/ C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 17 / 27 La Roche
  • 18. Summary 1 Introduction and motivations on IRLS 2 Temporal constraint with an adapted Norm 3 Diagram flow and Spatial constraint 4 Experimental Results 5 Conclusion C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 18 / 27 La Roche
  • 19. Overview and addition of the spatial constraint Figure: Overview of the learning and evaluation process. Learning process needs GT (Groundtruth) for better fits the eigenbackground components. Spatial Constrain Suppose A = L + S and L and S are computed via some kind of RPCA technique with the addtion of Total Variation penalty on S. This increase connected (or connexe) shapes. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 19 / 27 La Roche
  • 20. Exemple with a synthetic 1-D signal C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 20 / 27 La Roche
  • 21. Summary 1 Introduction and motivations on IRLS 2 Temporal constraint with an adapted Norm 3 Diagram flow and Spatial constraint 4 Experimental Results 5 Conclusion C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 21 / 27 La Roche
  • 22. Experimental Protocol Optimal threshold is chosen for maximizing F-measure criterion which is based 2 × 2 histogram of True/false/positive/negative : TP TP 2 DR Prec DR = , Prec = , F = TP + FN TP + F P DR + Prec Good performance is then obtained when the F-measure is closed to 1 Time consumption is not take into account in the evaluation process. RPCA-LBD is compared with the following two Robust methods : Robust Subspace Learning (RSL) De La Torre et al. [4] Principal Component Pursuit (RPCA-PCP) [1] C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 22 / 27 La Roche
  • 23. Quantitative Results Here, we show experimental results on the real dataset of BMC, Video Recall Precision F-measure PSNR Visual Results 1 0.9139 0.7170 0.8036 38.2425 2 0.8785 0.8656 0.8720 26.7721 3 0.9658 0.8120 0.8822 37.7053 4 0.9550 0.7187 0.8202 39.3699 5 0.9102 0.5589 0.6925 30.5876 6 0.9002 0.7727 0.8316 29.9994 7 0.9116 0.8401 0.8744 26.8350 8 0.8651 0.6710 0.7558 30.5040 9 0.9309 0.8239 0.8741 55.1163 Table: Quantitative results with common criterions. Last column show the original, GT and result of the first four real video sequences. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 23 / 27 La Roche
  • 24. Other results Figure: First eigenBackground of the fifths sequence of Rotary (BMC) with the norms ||.||opt , ||.||1,1 and ||.||2,1 . Last row shows the first five eigenBackground on real dataset with ||.||2,1 C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 24 / 27 La Roche
  • 25. Summary 1 Introduction and motivations on IRLS 2 Temporal constraint with an adapted Norm 3 Diagram flow and Spatial constraint 4 Experimental Results 5 Conclusion C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 25 / 27 La Roche
  • 26. Qualitative analysis Advantages Experiments on video surveillance datasets show that this approach is more robust than RSL and RPCA-PCP in presence of dynamic backgrounds and illumination changes. Well suited for video with spatially spread and temporarily sparse outliers. Disadvantages Not efficient on sequences with outliers always presents. For small local variations, like « wind tree » are not (yet) well modelized by this kind global PCA. Probably needs more eigen components ! C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 26 / 27 La Roche
  • 27. Future Works & References Future Works Lack in computation time : Further research consists in developping an incremental version to update the model at every frame and to achieve the real-time requirements. References [1] E. Candes, X. Li, Y. Ma, and J. Wright, Robust principal component analysis, International Journal of ACM, vol. 58, no. 3, May 2011. [2] Z. Zhou, X. Li, J. Wright, E. Candes, and Y. Ma, Stable principal component pursuit,IEEE ISIT Proceedings, pp. 1518-1522, Jun. 2010. [3] G. Tang and A. Nehorai, Robust principal component analysis based on low-rank and block-sparse matrix decomposition, CISS 2011, 2011. C. Guyon, T. Bouwmans and E. Zahzah Foreground Detection via Robust Low Rank Matrix Decomposition including spati (MIA Laboratory (Mathematics Images & Applications), 5, 2012 November University of 27 / 27 La Roche