From XY array data in pixels to BW image
    4 views (last 30 days)
  
       Show older comments
    
    Alejandro Fernández
 on 18 Nov 2020
  
    
    
    
    
    Commented: Alejandro Fernández
 on 18 Nov 2020
            Hi, I have a XY array matrix called A  , the first column are the X values (column of the image) and the second Y values (rows of the image) and I need to create a BW image in which the points of the A matrix get color white in the image.
, the first column are the X values (column of the image) and the second Y values (rows of the image) and I need to create a BW image in which the points of the A matrix get color white in the image.
 , the first column are the X values (column of the image) and the second Y values (rows of the image) and I need to create a BW image in which the points of the A matrix get color white in the image.
, the first column are the X values (column of the image) and the second Y values (rows of the image) and I need to create a BW image in which the points of the A matrix get color white in the image.As an example, the A data could be:
A = randi(20,[10 2])
And the image size should be  , is that correct?
, is that correct?
 , is that correct?
, is that correct?A = randi(20,[10 2]);
idx = sub2ind([20 20],A(:,2),A(:,1));
BW = false(20,20);
BW(idx) = true;
0 Comments
Accepted Answer
  Ameer Hamza
      
      
 on 18 Nov 2020
        
      Edited: Ameer Hamza
      
      
 on 18 Nov 2020
  
      A little mistake in the calculation of idx 
idx = sub2ind([20 20],A(:,2),A(:,1)); % Last input shoule be A(:,1)
Rest is correct.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
