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 + +. Thanks
1 | initial version |
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 + +. Thanks
2 | No.2 Revision |
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 + +. Thanks
3 | retagged |
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 + +. Thanks
4 | No.4 Revision |
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 + +. 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