Borrar filtros
Borrar filtros

why it is showing Undefined function 'MyEntropy' for input arguments of type 'uint8'.? please say whatt is the error ?

1 visualización (últimos 30 días)
clc;
clear all
close all
b=imread('Cameraman.bmp');
MyEntropy(b);
hold on
title('Relative count of pixel for cameraman')
hold off

Respuestas (1)

Walter Roberson
Walter Roberson el 26 de En. de 2016
There is no Mathworks-provided routine named "MyEntropy", and there is no routine by that name in the File Exchange either. The closest is that there is a routine "myEntropy" at the bottom of http://www.mathworks.com/matlabcentral/fileexchange/32428-globalmit-toolbox/content/GlobalMIT_1.0_Release/globalMIT.m but it uses different arguments than your call provides.
You will need to create a file named MyEntropy.m to implement the routine yourself, and that MyEntropy.m will need to be somewhere on your MATLAB path. If you have already written such a routine, use pathtool() to ensure the appropriate directory is on your path.
It is possible that you wrote a MyEntropy function but that it is inside a different .m file. It is not normally possible to call a function inside a different .m file unless the .m file has exactly the same name as what you are trying to call.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by