In the following MATLAB® code, the line_buffer_average function takes working
set as the input and maps it to the line buffer interface in Cadence® Stratus HLS using coder.hdl.interface
pragma.
function out = line_buffer_average(in1)
coder.hdl.interface(in1, "Line Buffer", [20, 20], FillMethod = 'Nearest');
sum = 0;
for i = 1:size(in1,1)
for j = 1:size(in1,2)
sum = sum + in1(i,j);
endend
out = sum / numel(in1);
end
The MATLAB test bench demonstrates the usage of the hdl.WorkingSet
class and getWorkingSet method. It generates the working sets for each
pixel of the input
image.
image = rand(20, 20);
ws = hdl.WorkingSet(image, [3 3], FillMethod='Nearest');
for x = 1:20
for y = 1:20
workingSet = ws.getWorkingSet(x, y);
out = line_buffer_average(workingSet);
end
end
Note
hdl.WorkingSet class and getWorkingSet method must
be used inside the MATLAB test bench.
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window.
Web browsers do not support MATLAB commands.
Website auswählen
Wählen Sie eine Website aus, um übersetzte Inhalte (sofern verfügbar) sowie lokale Veranstaltungen und Angebote anzuzeigen. Auf der Grundlage Ihres Standorts empfehlen wir Ihnen die folgende Auswahl: .
Sie können auch eine Website aus der folgenden Liste auswählen:
So erhalten Sie die bestmögliche Leistung auf der Website
Wählen Sie für die bestmögliche Website-Leistung die Website für China (auf Chinesisch oder Englisch). Andere landesspezifische Websites von MathWorks sind für Besuche von Ihrem Standort aus nicht optimiert.