[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Fist 10, second 10 points of an object
From: |
James Sherman Jr. |
Subject: |
Re: Fist 10, second 10 points of an object |
Date: |
Thu, 21 Feb 2013 02:55:43 -0500 |
On Thu, Feb 21, 2013 at 1:59 AM, kankan <address@hidden> wrote:
> I have been using *bwlabel* to identify objects in an image. It gives output
> objects as serial no (1, 2, .....etc).
> I want to find out first 10 points, second 10 points of each object.
> Any help regarding this will be greatly appreciate.
>
> Thanks,
> Kankan
>
>
>
> --
> View this message in context:
> http://octave.1599824.n4.nabble.com/Fist-10-second-10-points-of-an-object-tp4650099.html
> Sent from the Octave - General mailing list archive at Nabble.com.
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://mailman.cae.wisc.edu/listinfo/help-octave
Hi Kankan,
I'm not sure exactly what you mean by "first", but if you want the
indices of all the pixels belonging to one object 5 (for example) you
could use the find command like:
[i, j] = find(labeled_image==5);
Hope this helps,
James Sherman