Renjith V Ravi
Followers: 0 Following: 0
Statistics
19 Questions
0 Answers
RANK
38,561
of 295,486
REPUTATION
1
CONTRIBUTIONS
19 Questions
0 Answers
ANSWER ACCEPTANCE
47.37%
VOTES RECEIVED
1
RANK
of 20,236
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,950
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
How to Write file names of multiple images to a csv file.?
From the code below,I got the file names of multiple images from a folder. clear all close all clc Directory = 'Im...
7 years ago | 1 answer | 0
1
answerQuestion
How to read all types images from the folder regardless of file extension ?
The below is my code clear all close all clc Directory = 'Images_folder\'; % Read images from Images folder ...
7 years ago | 4 answers | 0
4
answersQuestion
Which parameters ore metrics can be used to differentiate two simple speach signals recorded using the following code?
I have used the following code to record and write speech signals clc clear all close all % Record the voice passw...
7 years ago | 0 answers | 0
0
answersQuestion
Which of the following method is correct for finding the image compression ratio in matlab
I am using Huffman coding for image compression.Here I have mentioned three methods for finding the compression ratio. ...
7 years ago | 1 answer | 0
1
answerQuestion
Fasten the huffman coding
Is there any possibility to fasten the below code clear all clc %Read the input image Ao=imread('Lena.bmp'); Ao...
7 years ago | 0 answers | 0
0
answersQuestion
Finding the compression ratio
I am using the code for SPIHT image compression shown in the link <https://in.mathworks.com/matlabcentral/fileexchange/4808-spih...
7 years ago | 1 answer | 0
1
answerQuestion
Kindly help me to understand the following steps
Please help me to understand, what processing is happening for the variable ' *encoded_img* ' in the following code pos...
7 years ago | 0 answers | 0
0
answersQuestion
bitmap size and file size
When I run the code shown in the link <http://in.mathworks.com/matlabcentral/fileexchange/13584-compression-ratio>, i got the ou...
7 years ago | 1 answer | 0
1
answerQuestion
which one is the correct procedure for summation
I want to implement the following equation <</matlabcentral/answers/uploaded_files/69763/hd.PNG>> Kindly tell me,which met...
8 years ago | 1 answer | 0
1
answerQuestion
Histogram deviation or MDMF
I am trying to calculate the histogram deviation(H.D) or Maximum Deviation Measuring Factor(M.D.M.F) as mentioned in <http://...
8 years ago | 0 answers | 0
0
answersQuestion
Calculate Histogram deviation or MDMF
I am trying to calculate the histogram deviation(H.D) or Maximum Deviation Measuring Factor(M.D.M.F) as mentioned in <http:...
8 years ago | 1 answer | 0
1
answerQuestion
Calculating difference between histograms
Can I use the command Z = imabsdiff(X,Y) for calculating the difference between histograms of two images.
8 years ago | 1 answer | 0
1
answerQuestion
Pixel Shuffling and inverse shuffling
I have tried to shuffle the image using tinkerbell map and Henon Map and obtained the output.But I cant do the inverse shuffling...
8 years ago | 2 answers | 0
2
answersQuestion
Pixel Shuffling using Chaotic Tinkerbell map(https://en.wikipedia.org/wiki/Tinkerbell_map) and Henon Map(https://en.wikipedia.org/wiki/H%C3%A9non_map)
I have tried to do double shuffling of pixels in an image using Tinkerbell mal and Henon Map.The code is shown below. It is show...
8 years ago | 1 answer | 1
1
answerQuestion
How to implement the following equations in image encryption
Upto finding D(i,j),I have found below clear all close all clc im1 = imread('lena.bmp');% Read the input image ...
8 years ago | 1 answer | 0
1
answerQuestion
Creation of matrix from loop
The following is a code for creation of matrix using for loop for r = 1:256; for c=1:256; m(r,c) = (r+c)^2; end; e...
8 years ago | 1 answer | 0
1
answerQuestion
NIST Statistical Test suite SP 800-22
The 15 randomness tests by NIST coded in C language from the link http://csrc.nist.gov/groups/ST/toolkit/rng/documentation_so...
8 years ago | 0 answers | 0
0
answersQuestion
I am trying to shuffle the pixels of an image using chaotic standard map.But I got an error "Subscript indices must either be real positive integers or logicals."
I am trying to shuffle the pixels of an image using chaotic standard map by modifying the code in the link https://in.mathworks....
8 years ago | 1 answer | 0
1
answerQuestion
Is it possible to implement the 16 Randomness Tests in Matlab
Mentioned in Chapter 2 of http://csrc.nist.gov/groups/ST/toolkit/rng/documents/SP800-22rev1a.pdf
8 years ago | 1 answer | 0