python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Adding new line for image id to Crowd Elements Json output result
I'm creating an annotation-tool using the Crowd HTML Elements that let users annotate images with the bounding box format. The form looks like this:https://codepen.io/sagemaker_crowd_html_elements/pen...
styx
Votes: 0
Answers: 1
Creating bounding box for a polygon using Revit API in C#
I am trying to create a bounding box for any given ploygon using Revit API. Can someone help?
namespace Revit_SquarePlacement.Command
{
[Transaction(TransactionMode.Manual)]
class cmd_Training...
Hunter
Votes: 0
Answers: 1
what is mean of x1=w/2, y1=h/2, cx=x+x1, cy=y+y1 to count the value of bounding box?
for cnt in contours:
(x,y,w,h) = cv2.boundingRect(cnt)
if w > 20 and h > 20:
cv2.rectangle(img, (x,y), (x+w,y+h), (0,255,0), 2)
x1=w/2
y1=h/2
cx=x+x1
cy=y+y1
a.app...
Fina Noviantika
Votes: 0
Answers: 0
Find the smallest enclosing shape in python with a given amount of corners
Say you have two polygons (yellow and orange) representing two observations of the same building. It is likely the building has been modified between the observations.
How can I generate the smallest ...
Mystic
Votes: 0
Answers: 0