iqrammm

Results 9 comments of iqrammm

somehow it run,sorry for the trouble caused.

While training with tensorflow I got this error assertion failed: [maximum box coordinate value is larger than 1.100000: ] [1.12048197] oxford hand dataset After reading up,its a problem with the...

Have you solved this issue? I am stucked here too but only when using webcam as input. Normal video files are fine(ie; mp4)

Also I believe the colours are generated randomly,is there a way to classify based on classes?

@PraveenNellihela I have been getting an error of IndexError: list index out of range Below I attached the codings,maybe I missed one of your points,Do kindly assist. ![error](https://user-images.githubusercontent.com/48657762/60751312-d6b4a180-9fe5-11e9-9f42-5112ce5523d5.jpg) ![Uploading error.png…]()...

@PraveenNellihela Thank you for the suggestion,it worked flawlessly. Best of luck in life.

try: coordinates = vis_util.return_coordinates( frame, np.squeeze(boxes), np.squeeze(classes).astype(np.int32), np.squeeze(scores), category_index, use_normalized_coordinates=True, line_thickness=10, min_score_thresh=0.85) ymin=int(coordinates[0]) ymax=int(coordinates[1]) xmin=int(coordinates[2]) xmax=int(coordinates[3]) except: pass On Mon, Jul 8, 2019 at 1:47 PM KwonJoo wrote: > @iqrammm...

Sure but I may not be able to answer as I am also pretty new to tensorflow and dnn On Tue, Jul 9, 2019 at 8:36 AM KwonJoo wrote: >...

@PraveenNellihela Do you by any chance know how to return the percentage scores as well? I added to return scores but cant seem to get it to work.