-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmy_lbp2.m
17 lines (15 loc) · 811 Bytes
/
my_lbp2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
A = imread('F:\Offline Signature Identification\my_sig1.jpg'); % Reading image file
I = rgb2gray(A); %Converting to grayscale image
%% Extracting LBP features
features = extractLBPFeatures(I,'NumNeighbors',16); % using all default values
%% Computing the number of features
cellsize = size(I); %(Cellsize decreases --> No of features increases)
numCells = prod(floor(size(I)./cellsize)); % Total number of cells
P = 16; % Number of Neighbours (P increases --> No of features increases)
Bins = (P*(P-1)+3); % Number of bins in each cell histogram
N = numCells*Bins; % Number of features
%% Writting features in text file
fileID = fopen('F:\Offline Signature Identification\my_lbp2.txt','a');
fprintf(fileID,'\t%s\r\n\r\n','LBP Features');
fprintf(fileID,'\t%f\r\n',features);
fclose(fileID);