SIBI SIVA
Followers: 0 Following: 0
Statistik
9 Fragen
0 Antworten
RANG
38.664
of 295.467
REPUTATION
1
BEITRÄGE
9 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
44.44%
ERHALTENE STIMMEN
1
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
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]); ...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
fast 8 Jahre vor | 1 Antwort | 1
1
AntwortFrage
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
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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));...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
etwa 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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);...
etwa 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
etwa 8 Jahre vor | 1 Antwort | 0