Answered
how can i calculate MSE and PSNR of RGB color image
clc; [filename1,pathname]=uigetfile('*.*','Select the original image'); image1=imread(num2str(filename1...

9 years ago | 0

| accepted

Answered
How do i convert my .m code into a simulink?
Look at this Link <http://www.mathworks.es/es/help/simulink/ug/creating-an-example-model-that-uses-a-matlab-function-block.h...

9 years ago | 0

Question


How to play Audio File
A= testing; B= [ten; twenty; fifty; hundered; fivehundered; thousand]; G...

9 years ago | 1 answer | 0

1

answer

Answered
Please I need help, i am running a code but i am receiving an error message: Attempted to access Px(1.18059); index must be positive integer or logical
Its a floating point error down at the 5th significant figure. If you simply round "Px", it'll MAY work

9 years ago | 0

Answered
2 M file interaction
function f1=im() im=imread('cameraman.tif'); f=im(3,3); b=1; delta=20; wi=1; %insertion ...

9 years ago | 0

| accepted

Answered
how to use matlab project (matlab code) with C#
<http://in.mathworks.com/matlabcentral/answers/uploaded_files/5510/MATLAB%2520-%2520C# interfacing.pdf> I think this is what ...

9 years ago | 0

| accepted

Question


how to use this symbol in matlab?? ±
I have a if loop where i need to check the condition.The loop is something like this: if(tht(1)==thf(1)) S='O...

9 years ago | 1 answer | 0

1

answer

Question


Detection of orginal and Fake???
I have a set of original images and fake images of Indian Currency Notes.I wanted to know how to extract the features of those a...

9 years ago | 1 answer | 0

1

answer

Answered
link .dll files with matlab
It looks like you are using a MEX-function which used to have a .dll extension in very old releases of MATLAB. They now have ext...

9 years ago | 1

Answered
How to seperate LL subband in dwt
[LL,LH,HL,HH] = dwt2(X,'db1'); % x is input image figure;imshow(LL); % shows LL subband

9 years ago | 0

Answered
how to make a function that take an integer as input and return ture if this prime otherwise false
function result = isprime2(number) number=5; result=true; %% check if number is a nonnegative integer if floor...

9 years ago | 0

Answered
To accept two numbers from the user; Display all prime numbers between these two numbers.
This is for perfect numbers where u can change the values of m and n where they are the two input numbers n=100; m=10; ...

9 years ago | 0

Answered
To accept two numbers from the user; Display all prime numbers between these two numbers.
Try this for Armstrong number: clear, clc % Let i take two numbers say 100 to 999 for i = 100 : 999 %...

9 years ago | 0

Answered
To accept two numbers from the user; Display all prime numbers between these two numbers.
clc num1 =input('Enter num1 value '); num2 =input('Enter num2 value '); n = num1 : num2; p = isprime(n); n(p) ...

9 years ago | 0

| accepted

Answered
How to eliminate uneven illumination from an imgae with respect to another image?
Image=imread('aswathy_33_crop.jpg'); Image_rgb =Image; Image_rgb = imresize(Image_rgb, [400 400]); Image_rgb = ...

9 years ago | 1

Answered
how to write code for finding KL transform in Matlab
Well here is the code clc; close all; clear all; I=imread('cameraman.tif'); I=im2double(I); m=1; for i=1:...

9 years ago | 0

Answered
How to display all prime numbers between two number input by user?
clc num1 =input('Enter num1 value '); num2 =input('Enter num2 value '); n = num1 : num2 ; p = isprime(n); n(p) ...

9 years ago | 2

Question


Unable to determine the codec required.
I am using 2013a version of matlab and windows xp.When i run the code of videoreader i get this error.So what type of codec need...

9 years ago | 2 answers | 1

2

answers

Question


Attempted to access Y(2,3009); index out of bounds because size(Y)=[64,576].
Y = sort(cell2mat(transpose(C))); a=zeros(64,1); col1=1; col2=64; for z=1:47 for i=1:64 ...

9 years ago | 1 answer | 0

1

answer

Question


Has anyone implemented moravec corner detector in matlab??
This is what i have tried.But with very less accurate. clear all close all clc tic I=imread('panorama...

9 years ago | 2 answers | 0

2

answers

Answered
Can u help me!!! Pls. Thx u much
threshold=25; for f=1:frames I=read(obj,f); figure(1);imshow(I);title('Input Video Sequence'); ...

9 years ago | 0

Answered
how to train ocr database in matlab....
I think asking for a coding is not relevant. Anyhow u can go through this link http://in.mathworks.com/matlabcentral/fileexchang...

9 years ago | 1

Answered
Matlab script for excel file.
for i=1:rows if temp(i,1:2)==var disp=var(i,1:2) else i=i+1; end end

9 years ago | 0

Question


MWArray assembly failed to be initialized in C#
I have developed a project of"Automatic Number Plate Reader" in matlab and I want to call this project in C# windows application...

9 years ago | 1 answer | 0

1

answer

Question


how to count number of Corner Detected in matlab
I have implemented certain number of algorithms to detect corners in matlab like harris corner ,moravec corner ect.. Now my ques...

9 years ago | 1 answer | 0

1

answer

Question


How to integrate a matlab project in C# windows application.
I have developed a project of"Automatic Number Plate Reader" in matlab and I want to call this project in C# windows application...

9 years ago | 1 answer | 0

1

answer