Statistics
7 Questions
0 Answers
RANK
36,615
of 301,440
REPUTATION
1
CONTRIBUTIONS
7 Questions
0 Answers
ANSWER ACCEPTANCE
71.43%
VOTES RECEIVED
1
RANK
of 21,282
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,580
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
in lz78 what is "??? Error using ==> cell.ismember at 28" and "Error in ==> lz78 at 19"
datain=input('enter the string in single quote with symbol $ as End of string =');%input data lda=length(datain); dictionary=...
10 years ago | 1 answer | 0
1
answerQuestion
write operation is not working and giving error
file=aviinfo('vipmosaicking.avi') frm_cnt=file.NumFrames fileExtension='.bmp'; for i=1:frm_cnt frm(i)=aviread('vipmosaic...
10 years ago | 1 answer | 0
1
answerQuestion
why it is not showing RGB image from hsi image ?
a=imread('C:\Users\Manish\Desktop\hsi.jpg'); b=double(a); [m,n]=size(a); H=b(:,:,1); [m,n]=size(H); S=b(:,:,2); I=b(:,:,3...
10 years ago | 1 answer | 0
1
answerQuestion
why output image is showing blank?
x=imread('cameraman.tif'); subplot(2,1,1); imshow(x); [m,n]=size(x); y=zeros(m+2,n+2); for i=1:m for j=1:n ...
10 years ago | 1 answer | 0
1
answerQuestion
??? Error using ==> cat , Dimension must be a finite integer ; and why orignal image was not displaying?
%Converting RGB to HSI Image a=imread('C:\Users\Manish\Desktop\peppers.png'); a=double(a); [m,n]=size(a); R=a(:,:,1); ...
10 years ago | 2 answers | 0
2
answersQuestion
Why "grey level slicing image with background" is not showing any image in this code?
%grey level slicing with background p=imread('cameraman.tif'); z=double(p); [m,n]=size(p); for i=1:m ...
10 years ago | 3 answers | 1
3
answersQuestion
??? Undefined function or method 'ddft' for input arguments of type 'double'.
x=[0 1 2 1; 1 2 3 2; 2 3 4 3; 1 2 3 2]; [m,n]=size(x); y=zeros(1,m); for i=1:m y(i)=x(1,m); ddft(y(i)); end ...
10 years ago | 2 answers | 0
