feature extraction using Local Line Binary Patterm
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have image with size 156x156, i want block this image to 13x13 block size. can you help me to get it using LLBP??
3 comentarios
oza san
el 6 de Mzo. de 2017
Movida: DGM
el 13 de Feb. de 2023
i know LBP (local binary pattern)can be used for script identification from color images!!!but i want to identify scripts from binary image(i.e with black background and white foreground which contain texts) anyone can tell me that i can use it?!!!
Respuesta aceptada
Anand
el 2 de Ag. de 2013
From what I can tell of the reference you provided, it should be easy enough to use an existing implementation of local binary patterns to get the LLBP.
The file exchange has many implementations of local binary patterns that you can use. A simple search gave these results:
lbpV = efficientLBP(im,[13 1], true);
lbpH = efficientLBP(im,[1 13], true);
llbp = sqrt( lbpH.^2 + lbpV.^2 );
I haven't actually tried this out, so be mindful of that. The diagram on Fig.6 from the reference is very helpful.
1 comentario
Nikolay S.
el 17 de Mzo. de 2015
Hi. I'm sorry but this format will not work. You must first generate appropriate shape filter.
Best regards, Nikolay
Más respuestas (2)
Nikolay S.
el 17 de Mzo. de 2015
Hi. You can try my lineLBP implementation: http://www.mathworks.com/matlabcentral/fileexchange/50058-efficient-llbp--line-local-binary-pattern- Hope this wil do the trick. Best regards, Nikolay
0 comentarios
Dima Lisin
el 12 de Dic. de 2015
extractLBPFeatures function was added to the Computer Vision System Toolbox in R2015b release.
3 comentarios
Image Analyst
el 13 de Feb. de 2017
Call the Mathworks to get a link to the toolbox which you can install. You can get a free 30 day trial if you want.
Ver también
Categorías
Más información sobre Computer Vision Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!