haar like features for images
play

HAAR-like features for images Images digit images are scanned - PowerPoint PPT Presentation

HAAR-like features for images Images digit images are scanned hand written digits Digit scan dataset 60,000 scans 10 classes : 0,1,2,,9 - roughly uniform distributed each scanned image 28x28 pixels square comes split into


  1. HAAR-like features for images

  2. Images • digit images are scanned hand written digits

  3. Digit scan dataset • 60,000 scans • 10 classes : 0,1,2,…,9 - roughly uniform distributed • each scanned image 28x28 pixels square • comes split into (train, test) - no cross validation • very learnable: most algorithms score 5% or less error • http://yann.lecun.com/exdb/mnist/

  4. Rectangle black level • rectangle ABCD can act like B A an image “mask” : it selects/cuts that rectangle out of an image D C - or of any image

  5. Rectangle black level • a given set S of rectangles cuts S different masks for an image B A D C

  6. Rectangle black level O � • for each rectangle r=ABCD on image X we can compute a “black value” - black r (X) = number of B A black pixels in the mask cut by r in image X D C � • we can compute black r (X) efficiently, if we compute in the right order! - dynamic programing

  7. Vertical, horizontal features for a rectangle � • horizontal feature Δ hr (X) = black r-left () - black r-right (X) M B = black AMCN (X) - black MBND (X) A � � • vertical feature D C N Δ hv (X) = black r-top () - black r-bottom (X) = black ABUV (X) - black UVCD (X) � � • |S| rectangles, 2 features each ⇒ 2|S| B features extracted (from each image) A - if we also store the black r (X) value, thats 3 U V features/rectangle (black r (X), Δ hr (X), Δ hv (X)) for 3|S| features extracted. D C

  8. How to compute black r (X) ¡ e ffj ciently • first compute it for all B O rectangles cornered in O (A=O) fix image corner. - That is compute black r (X) ¡ C D for each pixel D � • then every rectangle Z T O r=ABCD can be computed in constant time from O- X B A cornered rectangles • black(rectangle ABCD) = Y D C black(OTYD) - black(OTXB) - black(OZYC) + black(OZXA)

  9. O - corner rectangles computation • r=OBCD determined by D B O • naively one can compute all black r (X) = black D (X) for all rectangles as C D i,j • for i=1:n � • for j=1:n � - D=Dij pixel � - black Dij (X) = count of black pixels in OBCD � � • total O(n 4 ) running time - n = size of the square image

  10. O - corner rectangles : dynamic programing • r=OBCD determined by D B O • dynamic programing computes a rectangle from the rectangle computed already D i-1,j-1 D i-1,j � C D i,j-1 D i,j • for i=1:n � • for j=1:n � - D=Dij pixel � black_D ij (X) = black_D i,j-1 (X) + black_D i-1,j (X) - black_D i-1,j-1 (X) + black(pixel_D ij , X ) � • total O(n 2 ) running time - much better

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend