Matlab code i need for below problem

3 ビュー (過去 30 日間)
akshatha nayak
akshatha nayak 2019 年 3 月 25 日
コメント済み: akshatha nayak 2019 年 4 月 23 日
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

採用された回答

Walter Roberson
Walter Roberson 2019 年 3 月 25 日
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 件のコメント
akshatha nayak
akshatha nayak 2019 年 3 月 31 日
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 2019 年 3 月 31 日
"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?

サインインしてコメントする。

その他の回答 (3 件)

akshatha nayak
akshatha nayak 2019 年 3 月 25 日
Now we need to comapre tht inage and store the result value

akshatha nayak
akshatha nayak 2019 年 3 月 25 日
Selectibg image is working properly but compating and storing the result in folderis difficult
  1 件のコメント
akshatha nayak
akshatha nayak 2019 年 3 月 25 日
Do u know to make datbase connection in matlab by usibg sql

サインインしてコメントする。


akshatha nayak
akshatha nayak 2019 年 4 月 1 日
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 件のコメント
akshatha nayak
akshatha nayak 2019 年 4 月 23 日
How to take real world image of person eye and store it in mysql database and use that image for comparing with other image ?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by