I am trying to put n dots randomly on a selected ROI in an image using the macro;
Roi.getBounds(x,y,w,h);
count = 0;
while (count < n) {
roiManager( "select", 0 ); // select the first, "big" ROI
x1 = random() * w + x;
y1 = random() * h + y;
if (selectionContains(x1, y1) == true ) { // if coordinates are inside the "big" ROI
makePoint(x1, y1); // generate random point
roiManager("Add");// add the point to the ROI Manager
count++; // ONLY increase count when point is added
}
}
But now, I want a condition that I should not get (x,y) in a (x-1,y-1), (x+1,y+1) neighbourhood. How can I write ths in the code? (no 2 points should be closer by 1 pixel).
I added a function, that calculates the distance between your new point and all of your existing point (it actually calculates the square of the distance, but it doesn't really matter). Function returns
true
if the two points are neighbours andfalse
if they are not.Something in your code doesn't work for me, so I couldn't really test it. But the
is_neighbour
function works. Oh and I defined neighbour as all of the points that are in contact (even diagonally):If you are only interested in the light read ones, just change
distance < 2
.