Discussion:
[ITK-users] Conical or Solid Angle Iterator
Sarthak P
2017-03-13 17:53:48 UTC
Permalink
Hello,

I am looking for a conical or solid angle iterator. I found something
similar to what I wanted in an older thread (see below). Does anyone know
of something that could help?

Thanks in advance,
Sarthak
Hi
It is already called in itkSetMacro(),
so if you change the filter parameters
using
e.g. SetMacro( Sigma, float );
The code generated by this macro
will set the new value and call
Modified().
Luis
Thanks, Will,
We want to store an indeterminant number of image feature objects such
as core atoms in a given block of physical space 10-20 voxels on a side for
analysis and spatial clustering. The blocks are in a regular isotropic
lattice, and we want clever
iterators that can sample ellipsoids, solid angles, etc. We have all
this stuff written in my VIA package, but not yet in ITK standards. We
don't want to duplicate what's available already in ITK.
George
Hi George-
Yes, but since I don't know what you're trying to do, I can't say
that this is the best way given what's there. Could you enlighten me?
Will
Dear Will,
Is there anything that would prevent us from making an itkImage whose
pixel type is a linked list? Damion Shelton (at Pitt) and I are working on
putting "core atoms" into the itk format, and this would be a very cool
approach to doing that.
Thanks,
George
_______________________________________________
Insight-developers mailing list
Insight-developers at public.kitware.com
http://public.kitware.com/mailman/listinfo/insight-developers
Dženan Zukić
2017-03-13 18:19:31 UTC
Permalink
Hi Sarthak,

the closest thing to a solid angle iterator is line iterator
<https://itk.org/Doxygen/html/classitk_1_1LineIterator.html>. You could
start from that and create a solid angle iterator. If you do so, it would
be good if you submitted <https://itk.org/Wiki/ITK/Git/Develop> the patch
to add it to ITK.

Regards,
DÅŸenan
Post by Sarthak P
Hello,
I am looking for a conical or solid angle iterator. I found something
similar to what I wanted in an older thread (see below). Does anyone know
of something that could help?
Thanks in advance,
Sarthak
Hi
It is already called in itkSetMacro(),
so if you change the filter parameters
using
e.g. SetMacro( Sigma, float );
The code generated by this macro
will set the new value and call
Modified().
Luis
Thanks, Will,
We want to store an indeterminant number of image feature objects
such as core atoms in a given block of physical space 10-20 voxels on a
side for analysis and spatial clustering. The blocks are in a regular
isotropic lattice, and we want clever
iterators that can sample ellipsoids, solid angles, etc. We have all
this stuff written in my VIA package, but not yet in ITK standards. We
don't want to duplicate what's available already in ITK.
George
Hi George-
Yes, but since I don't know what you're trying to do, I can't say
that this is the best way given what's there. Could you enlighten me?
Will
Dear Will,
Is there anything that would prevent us from making an itkImage whose
pixel type is a linked list? Damion Shelton (at Pitt) and I are working on
putting "core atoms" into the itk format, and this would be a very cool
approach to doing that.
Thanks,
George
_______________________________________________
Insight-developers mailing list
Insight-developers at public.kitware.com
http://public.kitware.com/mailman/listinfo/insight-developers
_____________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
http://www.kitware.com/products/protraining.php
http://www.itk.org/Wiki/ITK_FAQ
http://public.kitware.com/mailman/listinfo/insight-users
Sarthak P
2017-03-13 19:44:56 UTC
Permalink
Hi Dzenan,

Thanks for the input. I will try to get this implemented and will submit it
if I am successful.

Cheers,
S
Post by Dženan Zukić
Hi Sarthak,
the closest thing to a solid angle iterator is line iterator
<https://itk.org/Doxygen/html/classitk_1_1LineIterator.html>. You could
start from that and create a solid angle iterator. If you do so, it would
be good if you submitted <https://itk.org/Wiki/ITK/Git/Develop> the patch
to add it to ITK.
Regards,
DÅŸenan
Post by Sarthak P
Hello,
I am looking for a conical or solid angle iterator. I found something
similar to what I wanted in an older thread (see below). Does anyone know
of something that could help?
Thanks in advance,
Sarthak
Hi
It is already called in itkSetMacro(),
so if you change the filter parameters
using
e.g. SetMacro( Sigma, float );
The code generated by this macro
will set the new value and call
Modified().
Luis
Thanks, Will,
We want to store an indeterminant number of image feature objects
such as core atoms in a given block of physical space 10-20 voxels on a
side for analysis and spatial clustering. The blocks are in a regular
isotropic lattice, and we want clever
iterators that can sample ellipsoids, solid angles, etc. We have
all this stuff written in my VIA package, but not yet in ITK standards. We
don't want to duplicate what's available already in ITK.
George
Hi George-
Yes, but since I don't know what you're trying to do, I can't say
that this is the best way given what's there. Could you enlighten me?
Will
Dear Will,
Is there anything that would prevent us from making an itkImage whose
pixel type is a linked list? Damion Shelton (at Pitt) and I are working on
putting "core atoms" into the itk format, and this would be a very cool
approach to doing that.
Thanks,
George
_______________________________________________
Insight-developers mailing list
Insight-developers at public.kitware.com
http://public.kitware.com/mailman/listinfo/insight-developers
_____________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
http://www.kitware.com/products/protraining.php
http://www.itk.org/Wiki/ITK_FAQ
http://public.kitware.com/mailman/listinfo/insight-users
Loading...