I would like to get the custom objects detected with its frame.
I had checked regarding this, I was getting many as ARKit implementations - using that we can get live object detections(ie using the input stream as the camera stream), but my requirement is to get it from a given/static image.
I found the latest iOS guidelines/samples using the camera as the input stream which provides the classifications or rectangle or face detection etc.
There is my problem is I need to get it from a given image with custom multiple Objects.
For example, I need to identify the clocks in a given image(Image of a wall with multiple clocks with different types), here I can provide the sample clock images. So I need to get the identified clocks with its frame.
I had checked using Vision's VNImageBasedRequest with object classification, in which I can get classifications with custom trained CoreML model, but there is not getting the boundingBox property to get the frames, which is available in VNDetectedObjectObservation.
Thanks in advance for your valuable time & response.