feature extraction using Local Line Binary Patterm

1 次查看(过去 30 天)
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 个评论
elfrida
elfrida 2013-8-2
移动:DGM 2023-2-13
i have paper about this methode but i can make the program from the formula has been given... can you help me to make program? http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3251987/
oza san
oza san 2017-3-6
移动:DGM 2023-2-13
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?!!!

请先登录,再进行评论。

采纳的回答

Anand
Anand 2013-8-2
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:
If you were to pick this entry, you could use the following approach to get the LLBP:
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 个评论
Nikolay S.
Nikolay S. 2015-3-17
Hi. I'm sorry but this format will not work. You must first generate appropriate shape filter.
Best regards, Nikolay

请先登录,再进行评论。

更多回答(2 个)

Nikolay S.
Nikolay S. 2015-3-17
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

Dima Lisin
Dima Lisin 2015-12-12
extractLBPFeatures function was added to the Computer Vision System Toolbox in R2015b release.
  3 个评论
Image Analyst
Image Analyst 2017-2-13
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by