CountColor.. if the # of colours of the object found is bigger than the max colours of the little trees then it's the big tree, so remove it from the TPA.
OR
Use RaASTPA to leave one point for every object found.. once that done, just iterate through each point and check the uptext, if it doesn't say trap or whatever, then it's not the right one.. if it says the right uptext, do whatever.
Code:
Function FindTrees: boolean;
begin
FindColorsSpiralTolerance(......);
if Length(TPA) < 1 then exit;
RAaSTPAEx(TPA, W, H); //width and height of the trap trees.
for I:= 0 To High(TPA) do
begin
MMouse(TPA[I].X, TPA[I].Y, 0, 0);
if waitUptext('whatever', 600) then
ClickMouse2(MOUSE_LEFT);
end;
end;
Meh.. can do the same with CountColors.. if the colours > around 100? then it's the big tree.. so ignore it.
Or use those Minimap points.. yes the three light brown points. Do mmtoms with them, make a polygon shape with the MS points and search within that.