Vectorization, check if points coordinate is exist in an image or no

1 Ansicht (letzte 30 Tage)
Can anyone help me to vectorize this for loop. It is basically ckecking if the x and y coordinate of is one in N matrix or not. Thank you
for i = 1:length(coordinates)
DD = coordinates(i,:);
DDD = N(DD(1),DD(2));
if DDD ==1
%%%if the dicom point is inside the mask
signVector(i) = -1;
else
%%%if the dicom point is outside the mask
signVector(i) = +1;
end
end

Akzeptierte Antwort

Teja Muppirala
Teja Muppirala am 10 Okt. 2017
signVector = ones(size(coordinates,1),1);
inds = sub2ind(size(N),coordinates(:,1),coordinates(:,2)); % Convert to linear indices
signVector( N(inds)==1 ) = -1;

Weitere Antworten (2)

Andrei Bobrov
Andrei Bobrov am 9 Okt. 2017
Bearbeitet: Andrei Bobrov am 9 Okt. 2017
ii = coordinates;
d3 = N(ii(:,1),ii(:,2));
signVector = -ones(numel(d3),1);
signVector(d3 ~= 1) = 1;
  2 Kommentare
Mahsa
Mahsa am 9 Okt. 2017
Thank you. but it did not work d3 should be a vector not a matrix
Image Analyst
Image Analyst am 10 Okt. 2017
Give us code, or a .mat file, to generate coordinates so we can see what you're seeing.

Melden Sie sich an, um zu kommentieren.


Image Analyst
Image Analyst am 9 Okt. 2017
Be careful. If coordinates is an array of (x,y) and N is an array, then you'll need to check N(y, x), not N(x,y) as you have perhaps done. Remember (row, column) is (y, x) NOT (x,y).

Kategorien

Mehr zu Geometric Transformation and Image Registration 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