Advertisement

08.10.2007 at 07:06AM PDT, ID: 22754579
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

general coding question & instruction cycles

Asked by Wanderinglazyeye in C++ Programming Language, C Programming Language

Tags: , ,

Hi folks. Below is my code. It works fine. But I want to know is whether it is coded as efficiently as possible, efficiency as in CPU instruction cycles. It is running in a thread. Should I, for example, declare all those integers elsewhere and extern them? Should I use as few integers as possible and combine calculations in the command without declaring so many before? This is a very general coding question and any thoughts on how to keep the instruction cycles at a minimum would be appreciated. If it is fine as is, not to worry then.




snippet:

i_Maxx=Blob.MaxX();
            i_Minx=Blob.MinX();
            i_Maxy=Blob.MaxY();
            i_Miny=Blob.MinY();
            sb_length=(i_Maxx-i_Minx)/3;
            sb_height=(i_Maxy-i_Miny)/3;
            sb_Maxx=i_Maxx+sb_length;
            sb_Minx=i_Maxx;
            sb_Miny=i_Miny;
            sb_Maxy=i_Maxy;
            sb_line1_y=(sb_Maxy)-(sb_height);
            sb_line2_y=(sb_Maxy)-(2*sb_height);

        //  calc blob center
            i_Meanx=(i_Minx+i_Maxx)/2;
            i_Meany=(i_Miny+i_Maxy)/2;
        // mark center
            cvLine( RGBImage, cvPoint(i_Meanx, i_Meany), cvPoint(i_Meanx, i_Meany), CV_RGB(50, 50 , 50), 4, 8, 0 );
        // mark box around blob
            cvRectangle( RGBImage, cvPoint(i_Minx , i_Miny ), cvPoint ( i_Maxx, i_Maxy ), CV_RGB(150, 150, 150), 1, 8, 0);
        // mark sampling boxes
            cvRectangle( RGBImage, cvPoint(sb_Minx , sb_Miny ), cvPoint ( sb_Maxx, sb_Maxy ), CV_RGB(150, 150, 150), 1, 8, 0);
            cvLine( RGBImage, cvPoint(sb_Minx, sb_line1_y), cvPoint(sb_Maxx, sb_line1_y), CV_RGB(150, 150 , 150), 1, 8, 0 );
            cvLine( RGBImage, cvPoint(sb_Minx, sb_line2_y), cvPoint(sb_Maxx, sb_line2_y), CV_RGB(150, 150 , 150), 1, 8, 0 );
Start Free Trial
 
Loading Advertisement...
 
[+][-]08.10.2007 at 07:27AM PDT, ID: 19670090

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: C++ Programming Language, C Programming Language
Tags: cvpoint, instruction, rgbimage
Sign Up Now!
Solution Provided By: Kdo
Participating Experts: 5
Solution Grade: A
 
 
[+][-]08.10.2007 at 07:58AM PDT, ID: 19670403

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.10.2007 at 08:32AM PDT, ID: 19670768

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.10.2007 at 09:03AM PDT, ID: 19671105

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]08.10.2007 at 09:32AM PDT, ID: 19671372

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628