Filter löschen
Filter löschen

how to resolve error in code generation when syntex is correct?

1 Ansicht (letzte 30 Tage)
Hira Abid
Hira Abid am 20 Jul. 2018
Kommentiert: Walter Roberson am 10 Mai 2023
i'm using matlab coder to convert my code to C. i'm facing problem in converting some built in function of matlab as imfill, regioprops etc. following is the line of code:
outer_blob = imfill(bin,'holes');
and error is:
Expected input number 2, CONN, to be one of these types: double, logical
as, i see in imfill my syntex is correct for code genration. please help me out.
  3 Kommentare
Hira Abid
Hira Abid am 20 Jul. 2018
bin is a binary image... i'm using R2018a
Walter Roberson
Walter Roberson am 20 Jul. 2018
What is class(bin) ? Telling me that it is a binary image does not tell me whether bin is logical, or is double that uses values 0.0 and 1.0, or is uint8 that uses values uint8(0) and uint8(1), or is uint8 that uses values uint8(0) and uint8(255)

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Guillaume
Guillaume am 20 Jul. 2018
Have you tried
outer_blob = imfill(bin, 4, 'holes');
in case this is a bug in matlab? (I don't have coder so can't test)
  3 Kommentare
Guillaume
Guillaume am 20 Jul. 2018
Does the same code work without being compiled?
Hira Abid
Hira Abid am 20 Jul. 2018
yup, it works perfect in matlab environment. the problem arises in conversion

Melden Sie sich an, um zu kommentieren.


jose
jose am 8 Mai 2023
Did you figure out? I have the same issue.
  1 Kommentar
Walter Roberson
Walter Roberson am 10 Mai 2023
Which MATLAB release are you using?
Note that according to the documentation, when you compile,
  • Input argument 'holes' is not supported, if the input is a binary image.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by