Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2fff5318 authored by DIB Elian's avatar DIB Elian
Browse files

Small typo

parent 346e524f
No related branches found
No related tags found
No related merge requests found
function [Value,Label,Position,DisparityX,DisparityY] = SetToFields(Set)
function [Value,Label,Position,DisparityX,DisparityY] = SetToFields(SRSet)
%SetToFields Get fields of a super-ray set struct
% Value: RGB or Grayscale pixel values
% Label: Distinct label for each super-ray
......@@ -6,9 +6,9 @@ function [Value,Label,Position,DisparityX,DisparityY] = SetToFields(Set)
% DisparityX: X Representative disparity
% DisparityY: Y Representative disparity
Value = {Set.Value};
Label = {Set.Label};
Position = {Set.Position};
DisparityX = {Set.DisparityX};
DisparityY = {Set.DisparityY};
Value = {SRSet.Value};
Label = {SRSet.Label};
Position = {SRSet.Position};
DisparityX = {SRSet.DisparityX};
DisparityY = {SRSet.DisparityY};
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment