Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8455055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:11:16+00:00 2026-06-10T12:11:16+00:00

I found a similar question: creating histogram using emgu cv c# and it works

  • 0

I found a similar question: creating histogram using emgu cv c#
and it works well when i passed grayscaled images, but when i use the Matrix, program throws exceptions. my code:

Matrix<double> mat = new Matrix<double>(10, 10);
mat.SetRandUniform(new MCvScalar(0.0), new MCvScalar(20.0));
DenseHistogram histo = new DenseHistogram(5, new RangeF(0.0f, 20.0f));
histo.Calculate(new Matrix<double>[] { mat }, false, null);//<--throws exception here
CvInvoke.cvShowImage("Mat Histogram", histo.GetHistogramImage().Ptr);
CvInvoke.cvWaitKey(0);

and the declaration in emgu doc is:

public void Calculate<TDepth>(
    Matrix<TDepth>[] matrices,
    bool accumulate,
    Matrix<byte> mask
)
where TDepth : new()

i cant figure out what’s wrong 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T12:11:18+00:00Added an answer on June 10, 2026 at 12:11 pm

    The problem you are facing off consist on a limitation in DenseHistogram class that when invoking cvCalcArrHist throws an “Unsupported format or combination of formats”.

    This class compute only on float and not on double.

    Matrix<float> mat = new Matrix<float>(10, 10);
    mat.SetRandUniform(new MCvScalar(0.0), new MCvScalar(20.0));
    DenseHistogram histo = new DenseHistogram(5, new RangeF (0.0f, 20.0f));
    histo.Calculate(new Matrix<float>[] { mat }, false, null); //runs fine :)
    

    A better design should also let the user specify also ranges using generics, Range<double> instead of static RangeF class.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found another similar question: Best way to download images from XML content in
I found this similar question here , but this is really old. Was it
I've found a similar question here , but I'm looking for more general solutions.
I can't resolve this issue, I found a similar question here but: setting the
I know a similar question has been asked but I have not found a
I've looked around on stackoverflow for a similar question, but haven't found exactly what
Sorry if this is a duplicate question...I've searched around and found similar advice but
I found a similar question here, but didn't help me. I basically have apache
I looked for a similar question, but only found similar ones such as Godaddy
I've found the similar question , but it's still be unclear for me. So,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.