I am trying to use the function imfill() but it does not run and the following message is displayed: Undefined function or variable 'eml_assert_all_constant'. I can't find such fuction in MATLAB documentation.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Henrique Sergio Gutierrez da Costa
am 16 Dez. 2015
Beantwortet: Kenneth Eaton
am 28 Aug. 2017
Error message:
------------------
Undefined function or variable 'eml_assert_all_constant'.
Error in iptcheckconn (line 8)
eml_assert_all_constant(varargin{:});
Error in imreconstruct>parseInputs (line 136)
iptcheckconn(varargin{3},mfilename,'CONN',3);
Error in imreconstruct (line 74)
[marker,mask,conn] = parseInputs(varargin{:});
Error in imfill (line 141)
I2 = imreconstruct(marker, mask, conn);
Error in calcQUALMETRICS_funV2 (line 33)
nimg=imfill(tmp1,'holes');
2 Kommentare
Ryan Livingston
am 5 Jan. 2016
It looks like something may be wrong with the MATLAB path. Are you trying to use MATLAB Coder?
- What is the output of: which imreconstruct?
- What is the output of: which iptcheckconn?
Antworten (2)
Kenneth Eaton
am 28 Aug. 2017
which iptcheckconn -all
You will probably see two paths show up:
C:\Program Files\MATLAB\(Your_version)\toolbox\images\images\eml
C:\Program Files\MATLAB\(Your_version)\toolbox\images\iptutils
Your problem is likely that you have some subfolders in the Image Processing Toolbox that have been added to your MATLAB path even though they normally shouldn't be. The eml folder does not appear on my MATLAB path, and I don't think it's normally supposed to. I've seen issues like this sometimes appear during installation.
The version of iptcheckconn in the first folder is shadowing the version you really want to use in the second folder. You'll want to remove the first folder from the path so MATLAB uses the correct one. Alternatively, you could also leave that folder on the path but just move it down on the path list so it shows up after the second folder. From the documentation:
When files with the same name appear in multiple folders on the search path, MATLAB uses the one found in the folder nearest to the top of the search path.
0 Kommentare
Henrique Sergio Gutierrez da Costa
am 18 Dez. 2015
Bearbeitet: Walter Roberson
am 18 Dez. 2015
1 Kommentar
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!