feature extraction using Local Line Binary Patterm
조회 수: 2 (최근 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
채택된 답변
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:
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.
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.
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
댓글 수: 0
Dima Lisin
2015년 12월 12일
extractLBPFeatures function was added to the Computer Vision System Toolbox in R2015b release.
댓글 수: 3
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 Center 및 File Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!