Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

the application has requested the runtime

Hello,

What does it mean that you display this message "the application has requested the runtime to terminate it in an unusual way" after inserting a correct program in Qt creator C + +. image description Thanks

the application has requested the runtimeruntime to terminate it in an unusual way qt c++

Hello,

What does it mean that you display this message "the application has requested the runtime to terminate it in an unusual way" after inserting a correct program in Qt creator C + +. image description Thanks

click to hide/show revision 3
retagged

updated 2014-03-09 06:48:02 -0600

berak gravatar image

the application has requested the runtime to terminate it in an unusual way qt c++

Hello,

What does it mean that you display this message "the application has requested the runtime to terminate it in an unusual way" after inserting a correct program in Qt creator C + +. image description Thanks

the application has requested the runtime to terminate it in an unusual way qt c++

Hello,

What does it mean that you display this message "the application has requested the runtime to terminate it in an unusual way" after inserting a correct program in Qt creator C + +. image description Thanks

EDIT 1:

I did the translation of contour points (about 300-1000 poitns) ie each point I changed its X and Y coordinates to move the vector XOY center of gravity with this formula:

for(i=1;i<contours.size();i++){ 
   contours_poly[0][i].x = contours_poly[0][i]..x-mc[1].x; 
   contours_poly[0][i].y = contours_poly[0][i]..y-mc[1].y; 
   contours_poly[1][i].x = contours_poly[1][i]x-mc[1].x; 
   contours_poly[1][i].y = contours_poly[1][i].y-mc[1].y; 
} // mc[1].x and mc[1].y are the coordinate of center of gravity

But I do not know if the bug is generated by the modification of a large number of points or what is the formula that is false. thank you