Feeds
질문
this is code i downloaded for local binary pattern, i cant able to find what is B1? its not a variable ? pls help to find what it is?
a1 = I2; [m1,n1] = size(a1); for i = 2:m1-1 for j = 2:n1-1 b1 = a1(i-1:i+1,j-1:j+1); B1(i-...
10년 초과 전 | 답변 수: 1 | 0
1
답변질문
here we know that hving three planes red, green and blue in 1,2,3 respectively, but here they used cr in 3 plane and cb in 2 plane. why it is used like that
function [cr, cb] = get_crcb(filename) im= imread(filename); imycc = rgb2ycbcr(im); lpf = 1/9 * ones(3); cr = imycc(:,...
10년 초과 전 | 답변 수: 0 | 0
0
답변질문
can u please tell me that here 'a' is a array or matrix and what it means by max(max(aa))
points = detectSURFFeatures(B); axes(handles.axes1); imshow(B); hold on; plot(points.selectStrongest(10)); ...
10년 초과 전 | 답변 수: 1 | 0
1
답변질문
this code part execute the block separation or standard deviation calculation, please clarify sir
fun = @(block_struct) ... std2(block_struct.data) * ones(size(block_struct.data));
10년 초과 전 | 답변 수: 1 | 0
1
답변질문
can u pls explain it
function imOut = mean_imnorm(im) % O = IMNORM(I)Image normalization % imwrite doesnt seem to do any normalizing, so i do it ...
10년 초과 전 | 답변 수: 2 | 0
