Histogram Calculation for FloatProcessor

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Histogram Calculation for FloatProcessor

Mahesh Kakuturu
Hi All,

I added the functionality to calculate histogram for 32 bit gray scale
FloatProcessor. I did this change in ImageJ version 1.48v which is
integrated with Micro-Manager 1.4 version.
I would like to push these changes for the community. If you are willing to
accept these change, please let me know the steps to commit the code to
your repository.

--
Best Regards,
Mahesh Kakuturu
Sr. Software Engineer
Angstrom Science, Inc.

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Histogram Calculation for FloatProcessor

ctrueden
Hi Mahesh,

See this guide on contributing changes to ImageJ 1.x:

  https://imagej.net/Contributing#ImageJ1

Regards,
Curtis

--
Curtis Rueden
LOCI software architect - https://loci.wisc.edu/software
ImageJ2 lead, Fiji maintainer - https://imagej.net/User:Rueden
Did you know ImageJ has a forum? http://forum.imagej.net/


On Wed, Oct 25, 2017 at 2:21 PM, Mahesh Kakuturu <[hidden email]> wrote:

> Hi All,
>
> I added the functionality to calculate histogram for 32 bit gray scale
> FloatProcessor. I did this change in ImageJ version 1.48v which is
> integrated with Micro-Manager 1.4 version.
> I would like to push these changes for the community. If you are willing to
> accept these change, please let me know the steps to commit the code to
> your repository.
>
> --
> Best Regards,
> Mahesh Kakuturu
> Sr. Software Engineer
> Angstrom Science, Inc.
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Histogram Calculation for FloatProcessor

Wayne Rasband-2
In reply to this post by Mahesh Kakuturu
> On Oct 25, 2017, at 3:21 PM, Mahesh Kakuturu <[hidden email]> wrote:
>
> Hi All,
>
> I added the functionality to calculate histogram for 32 bit gray scale
> FloatProcessor. I did this change in ImageJ version 1.48v which is
> integrated with Micro-Manager 1.4 version.
> I would like to push these changes for the community. If you are willing to
> accept these change, please let me know the steps to commit the code to
> your repository.

The FloatProcessor in the current version of ImageJ (1.51r) includes this method:

   /** Returns a 256 bin histogram of the current ROI or of the entire image if there is no ROI. */
   public int[] getHistogram() {
      return getStatistics().histogram;
   }

-wayne

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html