Matlab code i need for below problem

3 vues (au cours des 30 derniers jours)
akshatha nayak
akshatha nayak le 25 Mar 2019
Commenté : akshatha nayak le 23 Avr 2019
I want to check whether the data that is present in sheet 1 of excel is same as sheet 2 of excel of same file name tht is testdata1.xls can any 1 help me to solve this problem

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Mar 2019
filename = 'testdata1.xls';
T1 = readtable(filename, 'sheet', 1);
T2 = readtable(filename, 'sheet', 2);
if isequal(T1, T2)
disp('Sheet 1 is the same as sheet 2')
else
disp('Sheet 1 is not the same as sheet 2')
end
  12 commentaires
akshatha nayak
akshatha nayak le 31 Mar 2019
Image is not taken from folder i need to capture image and then exctarct oly the eyr portion and then we use that eye portion for comparing purposes if u know the code for this pls help us
Walter Roberson
Walter Roberson le 31 Mar 2019
"all taking image from foldrr and then comparing"
so you told us that the images are being taken from a folder, not being captured.
In any case, if you take an eye image of the user, and you need to compare it to stored eye images, then what are you using Excel for?

Connectez-vous pour commenter.

Plus de réponses (3)

akshatha nayak
akshatha nayak le 25 Mar 2019
Now we need to comapre tht inage and store the result value

akshatha nayak
akshatha nayak le 25 Mar 2019
Selectibg image is working properly but compating and storing the result in folderis difficult
  1 commentaire
akshatha nayak
akshatha nayak le 25 Mar 2019
Do u know to make datbase connection in matlab by usibg sql

Connectez-vous pour commenter.


akshatha nayak
akshatha nayak le 1 Avr 2019
That was other projects Now we are doing new project of capturing real world image of person and then comparing it Herr we are using sql database not that excel thing.
  1 commentaire
akshatha nayak
akshatha nayak le 23 Avr 2019
How to take real world image of person eye and store it in mysql database and use that image for comparing with other image ?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by