フィルターのクリア

how to use NMI for images

4 ビュー (過去 30 日間)
talayeh ghodsi
talayeh ghodsi 2020 年 4 月 4 日
コメント済み: talayeh ghodsi 2020 年 4 月 4 日
hi every body. I am trying to use nmi.m which is attached below and downloaded from mathworks to calculate normalized mutual information between to images.
x=rgb2gray(imread('a.jpg'));
y=rgb2gray(imread('b.jpg'));
z = nmi(x, y);
but i have this error:
Error using sparse
Index into matrix must be an integer.
Error in nmi (line 19)
Mx = sparse(idx,x,1,n,k,n);
could anyone solve this error for me?
  6 件のコメント
Walter Roberson
Walter Roberson 2020 年 4 月 4 日
Replace
x = x-l+1;
y = y-l+1;
with
x = double(x-l+1);
y = double(y-l+1);
talayeh ghodsi
talayeh ghodsi 2020 年 4 月 4 日
thanks sir it works well

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by