Trial software Usage of Step Function in Matlab Coder?

D
Diego · Dec 8, 2020 · 1.9K views
Question
An excerpt of my code shown below:   % Creating the detector for the face detector = vision.CascadeObjectDetector; % Bounding Box for face A = step(detector,I); This basically doesn't work in the MATLAB coder as it says that A is undefined. The exact error is below: "Undefined function or variable 'A'. The first assignment to a local variable determines its class." If I use zeros and preallocate A, step just redefines it. Has anyone gotten around this?
Expert Answer
Profile picture of Neeta Dsouza
Neeta Dsouza PhD Expert
Answered Aug 23, 2026

Replace the assert statements with the following:

 

assert(isa(I, 'uint8'));
assert(size(I, 1) < 100);
assert(size(I, 2) < 100);
assert(size(I, 3) == 3);
This will make your example compile fine.
The catch here is that CascadeObjectDetector requires the input's 3rd dimension to be exactly 3. That is, the input must be NxMx3 array. Therefore the assert that size(I,3) == 3 is required.
 
Also, for code generation, CascadeObjectDetector requires the size of the input to be bounded. There fore the asserts for size(I,1) < 100 and size(I,2) < 100 are required. Of course you can change 100 to some other number, it just has to be some concrete number.
function [rect] = bound(I)
  assert(isa(I, 'uint8'));
  assert(size(I, 1) < 100);
  assert(size(I, 2) < 100);
  assert(size(I, 3) == 3);
  detector = vision.CascadeObjectDetector;
  A = step(detector, I);
  rect = zeros(1,4);
  rect = [A(1,1), A(1,2), A(1,3), A(1,4)];
end
100% Run Guarantee 3-Hour Fast-Track Delivery

Need a Custom Version or Complete Simulation for This Problem?

Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.

Tested on MATLAB R2024b / R2026a
Turnitin 0% Plagiarism Report
Free 7-Day Revisions Guarantee
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!