SIBI SIVA
Followers: 0 Following: 0
Statistics
9 Questions
0 Answers
RANK
38.664
of 295.467
REPUTATION
1
CONTRIBUTIONS
9 Questions
0 Answers
ANSWER ACCEPTANCE
44.44%
VOTES RECEIVED
1
RANK
of 20.234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
can anyone explain what does this code do? Thanks in advance
clc; clear all; close all; imag1 = imread('peppers.png'); imag2=rgb2gray(imag1); x= imresize(imag2, [64, 64]); ...
meer dan 7 jaar ago | 1 answer | 0
1
answerQuestion
i get the error when i m trying to generate the hdl code for a matlab program by hdl coder... the error is 'In emlhdlcoder.WorkFlow.Manager/wfa_generateCode (line 627)'... help me to solve this error.. thanks in advance..
clc; clear all; close all; image1=imread('C:\Users\dell pc\Pictures\barbaraa.tif'); imag1=rgb2gray(image1); im1...
bijna 8 jaar ago | 1 answer | 0
1
answerQuestion
while converting my matlab code to hdl code, i got the error' HDL Code generation does not support 2D-matrices as function inputs. Use help codegen for more information on using this command. Error in Manager>wfa_generateCode at 627'
clc; clear all; close all; image1=imread('cameraman.tif'); subplot(2,2,1); figure(1); imshow(image1);title('original image...
bijna 8 jaar ago | 1 answer | 1
1
answerQuestion
how to get binarized and filled standard deviation map for an image of size 256x256?
s(x,y)=standard deviation map condition: if s(x,y)<6.18 s(x,y)=0 else s(x,y)=1 thanks in advance
ongeveer 8 jaar ago | 0 answers | 0
0
answersQuestion
Error using mat2cell (line 89) Number of input vector arguments, 2, does not match the input matrix's number of dimensions, 3
clc; clear all; close all; image1=imread('C:\Users\dell pc\Pictures\mandrilll.jpg'); im1=imresize(image1,[256 256]); im2=im...
ongeveer 8 jaar ago | 1 answer | 0
1
answerQuestion
error 'index exceeds matrix dimensions'
figure for i=1:11 y(:,:,k3)=idwt2(llf(:,:,i),lhf(:,:,i),hlf(:,:,i),hhf(:,:,i),'haar'); s=mat2gray(y(:,:,k3));...
ongeveer 8 jaar ago | 1 answer | 0
1
answerQuestion
matlab code to find the difference in the Histogram of Oriented Gradients(HOG) of two images
how to compute HOG using a single LxL rectangular cell with 9 histogram bins(20 degree per bin) and L2 normalization. thus HOGs ...
ongeveer 8 jaar ago | 0 answers | 0
0
answersQuestion
Error ' index exceeds matrix dimensions'? i had done arnold transform(48 iterations) and took DWT for each iteration. Here i need iterations from 19 to 29 only. but i got the error. what is the problem in my code. Help me resolve the problem. thank u
imag1 = imread('peppers.png');imag2=rgb2gray(imag1); imag3= imresize(imag2, [64, 64]); subplot(1,2,1); imshow(imag3);...
ongeveer 8 jaar ago | 1 answer | 0
1
answerQuestion
how to resolve the error index exceeds matrix dimensions
k1=1; for i=19:29 imag4=imscram(:,:,i); subplot(:,:,i); imshow(imag4); [lllo,lhlo,hllo,hhlo]=dwt2(d...
ongeveer 8 jaar ago | 1 answer | 0