Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
c++ x 4
php x 2
Member Avatar for eve_moore

I have an image processing project using c++ language. I have also linked opencv to integrate some optimized algorithms.However, I would like to create a nice GUI using Visual C#. Is it possible to call a certain program in c++ in visual c#. (P.S. I have no idea about dll, …

Member Avatar for eve_moore
0
298
Member Avatar for eve_moore

I have seen this code that draws an outline circle and its center point to the ball detected. [CODE]// draws all detected circle and their center points. for (int i = 0; i < circles->total; i++) { // round the floats to an int float* p = (float*)cvGetSeqElem(circles, i); cv::Point …

Member Avatar for eve_moore
0
265
Member Avatar for eve_moore

i have this form in html: [CODE]<form id="form_269808" class="appnitro" method="post" action=""> <div class="form_description"> <h2>Basic Information</h2> <p>Please fill up your information correctly. All fields are required</p> </div> <ul > <li id="li_1" > <label class="description" for="element_1">First Name </label> <div> <input id="element_1" name="element_1" class="element text medium" type="text" maxlength="255" value=""/> </div><p class="guidelines" id="guide_1"><small>Enter your …

Member Avatar for cwarn23
0
724
Member Avatar for eve_moore

html: <input name="product" type="radio" value="Tarpaulins ">Tarpaulins <input name="product" type="radio" value="stickers"> Vinyl Stickers<br> <input name="product" type="radio" value="PhotoCanvas"> Photo Canvas code: if($product== "Tarpaulins" ){ echo "Tarpaulin rate : {$row['Tarpaulin_rate']}"; }else if($product== "stickers"){ echo "stickers rate : {$row['stickers_rate']}"; }else if($product== "PhotoCanvas"){ echo "Photo Canvas rate : {$row['PhotoCanvas_rate']} "; }

Member Avatar for cereal
0
91